.threejs-showcase-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

#threejs-container {
    height: 60vh;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    margin: 2rem 0;
    position: relative;
}

.threejs-container canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

#stats-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 100;
}

.description {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
}

.content-wrapper h1 {
    margin-bottom: 1rem;
    color: #333;
}

@media (max-width: 768px) {
    .threejs-container {
        height: 400px;
    }
    
    .threejs-showcase-container {
        padding: 1rem;
    }
}