* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #121212;
    color: #f5f5f5;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    margin-bottom: 2rem;
    text-align: center;
    color: #1CAAD9;
    font-size: 2.5rem;
    text-shadow: 0 0 10px rgba(28, 170, 217, 0.3);
}

.model-container {
    width: 100%;
    aspect-ratio: 16/9;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(28, 170, 217, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.second-model {
    margin-top: 2rem;
}

.sketchfab-embed-wrapper {
    width: 100%;
    height: 100%;
}

iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.credits {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: center;
}

.credits a {
    color: #1CAAD9;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.credits a:hover {
    color: #15889e;
    text-decoration: underline;
}

.controls {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
    gap: 1rem;
}

button {
    background-color: #1CAAD9;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

button:hover {
    background-color: #15889e;
    transform: translateY(-2px);
}

button:active {
    transform: translateY(0);
}

.audio-btn {
    background-color: #9c27b0;
}

.audio-btn:hover {
    background-color: #7b1fa2;
}

.audio-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 250px;
    height: 100px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid #0f0;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.3);
    z-index: 1000;
    overflow: hidden;
}

.audio-container iframe {
    width: 100%;
    height: 100%;
    border-radius: 3px;
    margin-bottom: 0;
}

.soundcloud-attribution {
    display: none;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .model-container {
        aspect-ratio: 4/3;
    }
    
    .audio-container {
        top: 10px;
        right: 10px;
        width: 150px;
        height: 80px;
        padding: 3px;
    }
}