/* Ray-marching Renderer Project - Single Project Matching Style */
.ray-marching-project {
    margin: 50px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1500px;
    margin-left: 0;
}

/* Project Header */
.ray-marching-header {
    text-align: left;
    margin-bottom: 30px;
}

.ray-marching-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    color: #000000;
    margin-bottom: 10px;
}

.ray-marching-header p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #000000;
    opacity: 0.8;
    max-width: 100%;
}

/* Project Content Layout */
.ray-marching-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Video Container */
.ray-marching-video-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 0;
}

.ray-marching-video {
    width: 100%;
    display: block;
    aspect-ratio: 16/9;
    background: #0a0a1a;
    object-fit: cover;
}

/* Description Container */
.ray-marching-description {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.ray-marching-description p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
    margin: 0;
}

/* Technical Details Section */
.technical-details {
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: 10px;
}

.technical-details h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 600;
}

.tech-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.tech-feature {
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 8px;
    border-left: 3px solid #ff4d8d;
}

.tech-feature h5 {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.tech-feature p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #000000;
    opacity: 0.8;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ray-marching-project {
        padding: 25px;
    }
    
    .ray-marching-header h3 {
        font-size: 2.2rem;
    }
    
    .tech-features {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    .ray-marching-project {
        padding: 20px;
    }
    
    .ray-marching-header h3 {
        font-size: 2rem;
    }
    
    .ray-marching-header p {
        font-size: 1rem;
    }
    
    .tech-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .ray-marching-header h3 {
        font-size: 1.8rem;
    }
    
    .technical-details {
        padding: 15px;
    }
    
    .tech-feature {
        padding: 10px;
    }
}