:root {
    --primary-color: #ffffff;
    --accent-color: #c9a45c;
    --bg-overlay: rgba(0, 0, 0, 0.4);
    --modal-bg: rgba(255, 255, 255, 0.1);
    --glass-effect: blur(15px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--primary-color);
    overflow-x: hidden;
    background-color: #000;
    min-height: 100vh;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/img/fondo.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}

/* Dark gradient overlay for better readability */
.background-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0.2) 70%, rgba(0, 0, 0, 0.6) 100%);
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 240px 20px 50px 20px;
    max-width: 500px;
    margin: 0 auto;
}

.logo-container {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.brand-name {
    font-family: 'Playball', cursive;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.brand-tagline {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.9;
}

.button-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.menu-btn {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
    display: flex;
    justify-content: center;
}

.menu-btn img {
    width: 100%;
    max-width: 320px;
    height: auto;
    display: block;
}

.menu-btn:hover {
    transform: scale(1.05);
}

.menu-btn:active {
    transform: scale(0.95);
}

/* Modal Styling - Premium Glassmorphism */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.modal-content {
    background: var(--modal-bg);
    backdrop-filter: var(--glass-effect);
    -webkit-backdrop-filter: var(--glass-effect);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    width: 100%;
    max-width: 350px;
    padding: 40px 20px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    text-align: center;
    animation: zoomIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.3s;
}

.close-btn:hover {
    opacity: 1;
}

.modal-body h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 300;
}

.modal-brand {
    font-family: 'Playball', cursive;
    font-size: 1.5rem;
    opacity: 0.5;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Mobile optimizations */
@media (max-width: 400px) {
    .brand-name {
        font-size: 4rem;
    }

    .button-grid {
        gap: 10px;
    }
}