@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&display=swap');

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

body {
    font-family: 'Cinzel', serif;
    background: linear-gradient(135deg, #2c1810 0%, #1a0e08 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d4af37;
}

.container {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(212, 175, 55, 0.2);
    max-width: 800px;
    width: 100%;
}

.frog-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #d4af37;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #d4af37;
}

.soundboard {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sound-button {
    background: linear-gradient(145deg, #8b4513, #654321);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    font-family: 'Cinzel', serif;
}

.sound-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    background: linear-gradient(145deg, #a0522d, #8b4513);
}

.sound-button:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.6);
}

.button-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.button-subtitle {
    font-size: 0.9rem;
    color: #daa520;
    font-weight: 400;
    opacity: 0.8;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .frog-image {
        width: 80px;
        height: 80px;
        margin-bottom: 0.5rem;
    }
    
    .title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .soundboard {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .sound-button {
        width: 100%;
        max-width: 280px;
        padding: 1.2rem 1.5rem;
        min-width: unset;
    }
    
    .button-text {
        font-size: 1.3rem;
    }
    
    .button-subtitle {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .frog-image {
        width: 60px;
        height: 60px;
    }
    
    .title {
        font-size: 1.5rem;
    }
    
    .sound-button {
        max-width: 240px;
        padding: 1rem;
    }
    
    .button-text {
        font-size: 1.1rem;
    }
}