/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Font */
@font-face {
    font-family: 'Dazzle Unicase';
    src: url('./fonts/fonnts.com-Dazzle_Unicase_Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

/* Utility Classes */
.hidden {
    display: none !important;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #cbe2f7;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.container {
    width: 100%;
    text-align: center;
}

/* Desktop Version - 1080px and above */
@media (min-width: 1080px) {
    body {
        padding: 20px;
        align-items: center;
    }

    .container {
        max-width: 1920px;
    }

    header {
        margin-bottom: 80px;
    }

    .brand-logo {
        width: 530px;
        max-width: 530px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .title-wrapper {
        margin-bottom: 60px;
    }

    .title-image {
        max-width: 800px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .buttons-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
        flex-wrap: nowrap;
        flex-direction: row;
    }

    .music-button {
        width: 185px;
        height: 185px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
    }

    /* Language Selection */
    .language-selection {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 80px;
        flex-wrap: nowrap;
        flex-direction: row;
        height: 185px;
    }

    .language-button {
        font-family: 'Dazzle Unicase', sans-serif;
        font-size: 2rem;
        font-weight: 300;
        color: #2d1810;
        background: transparent;
        border: 3px solid #2d1810;
        border-radius: 50px;
        padding: 20px 40px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .language-button:hover {
        background: #2d1810;
        color: #cbe2f7;
        transform: translateY(-5px);
    }

    .language-button:active {
        transform: translateY(-2px);
    }
}

/* Mobile/Tablet Version - Below 1080px */
@media (max-width: 1079px) {
    body {
        padding: 20px;
        align-items: center;
    }

    .container {
        max-width: 480px;
    }

    header {
        margin-bottom: 31px;
    }

    .brand-logo {
        width: 335px;
        max-width: 335px;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .title-wrapper {
        margin-bottom: 40px;
    }

    .title-image {
        max-width: 350px;
        width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    .buttons-container {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 42px;
        flex-direction: column;
    }

    .music-button {
        width: 133px;
        height: 133px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
    }

    /* Language Selection */
    .language-selection {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        flex-direction: column;
        height: 133px;
    }

    .language-button {
        font-family: 'Dazzle Unicase', sans-serif;
        font-size: 1.5rem;
        font-weight: 300;
        color: #2d1810;
        background: transparent;
        border: 2px solid #2d1810;
        border-radius: 50px;
        padding: 15px 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        width: 100%;
        max-width: 335px;
    }

    .language-button:hover {
        background: #2d1810;
        color: #cbe2f7;
        transform: translateY(-3px);
    }

    .language-button:active {
        transform: translateY(-1px);
    }
}

/* Common Button Styles */
.music-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.music-button:hover::before {
    opacity: 1;
}

.music-button:hover {
    transform: translateY(-8px) scale(1.05);
}

.music-button:active {
    transform: translateY(-4px) scale(1.02);
}

.icon-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}