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

body {
    font-family: 'Montserrat', sans-serif;
    color: white;
    background-color: #0b0f19;
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
}

.background-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(11,15,25,0.7) 0%, rgba(11,15,25,0.3) 100%);
    z-index: 1;
}

header, main, aside, footer, .bottom-left-btn {
    position: relative;
    z-index: 2;
}

/* Header */
.top-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 20px;
    width: 100%;
}

.sobre-nosotros {
    color: #ccc;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.sobre-nosotros:hover {
    color: #fff;
}

.header-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.star-icon {
    margin-bottom: 5px;
}

.red-line {
    width: 2px;
    height: 30px;
    background-color: #FA5655;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-selector {
    position: relative;
}

.btn-ingresar {
    background-color: #FA5655;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    font-weight: 800;
    font-style: italic;
    letter-spacing: 2px;
    transform: skew(-20deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(250, 86, 85, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-ingresar:hover {
    background-color: #ff3b3a;
    transform: skew(-20deg) scale(1.05);
}

.btn-ingresar span {
    transform: skew(20deg);
    display: inline-block;
}

.btn-idioma {
    background-color: #141414;
    color: #FA5655;
    text-decoration: none;
    padding: 9px 24px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: 2px;
    transform: skew(-20deg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #FA5655;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(250, 86, 85, 0.1);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.btn-idioma:hover {
    background-color: #FA5655;
    color: #000;
    transform: skew(-20deg) scale(1.05);
}

.btn-idioma span.btn-content {
    transform: skew(20deg);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}


.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: #1a1a1a;
    border: 1px solid #FA5655;
    border-radius: 6px;
    padding: 20px 25px;
    display: none;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
    min-width: 140px;
}

.language-menu.show {
    display: flex;
}

.language-menu.bottom-menu {
    top: auto;
    bottom: calc(100% + 10px);
    left: 0;
    right: auto;
}

.lang-option {
    color: #888;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.lang-option:hover {
    color: #fff;
}

.lang-option.active {
    color: #FA5655;
}

/* Sidebar */
.left-sidebar {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sidebar-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    font-size: 0.85rem;
    font-weight: 700;
    gap: 20px;
    margin-bottom: 0;
}

.nav-btn {
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #333;
    width: 35px;
    height: 35px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.nav-btn:hover {
    background: rgba(40, 40, 40, 0.9);
    border-color: #555;
}

.paypal-drawer {
    position: fixed;
    left: 0;
    top: 40%;
    transform: translateY(-50%) translateX(calc(-100% + 30px));
    display: flex;
    align-items: center;
    background-color: #1c1c1c;
    border-radius: 0 10px 10px 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid #FA5655;
    height: 80px;
    z-index: 1000;
}

.paypal-drawer:hover {
    transform: translateY(-50%) translateX(0);
}

.paypal-content-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    text-decoration: none;
    color: white;
    height: 100%;
}

.paypal-logo {
    margin-bottom: 5px;
}

.paypal-content-link span {
    font-size: 0.6rem;
    letter-spacing: 2px;
    font-weight: 800;
    margin-top: 4px;
}

.paypal-drawer-btn {
    width: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #333;
    cursor: pointer;
}

.paypal-drawer-btn svg {
    transition: transform 0.4s ease;
    transform: rotate(180deg);
}

.paypal-drawer:hover .paypal-drawer-btn svg {
    transform: rotate(0deg);
}

.bottom-left-drawer {
    position: fixed;
    left: 0;
    bottom: 30px;
    transform: translateX(calc(-100% + 40px));
    display: flex;
    align-items: center;
    background-color: #141414;
    border: 1px solid #FA5655;
    border-left: none;
    border-radius: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 50px;
    z-index: 1000;
}

.bottom-left-drawer.open {
    transform: translateX(0);
}

.bottom-left-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    text-decoration: none;
    color: white;
    height: 100%;
}

.bottom-left-content span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    font-weight: 800;
}

.bottom-left-drawer-btn {
    width: 40px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #333;
    cursor: pointer;
}

.bottom-left-drawer-btn svg {
    transition: transform 0.4s ease;
}

.bottom-left-drawer.open .bottom-left-drawer-btn svg {
    transform: rotate(180deg);
}

/* Main Content */
.main-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
}

.main-title {
    font-size: 6rem; /* Adjust according to screenshot proportions */
    font-weight: 900;
    font-style: italic;
    letter-spacing: 2px;
    text-shadow: 0px 0px 30px rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.wave-text span {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.3s ease;
}

.wave-text span:hover {
    color: #FA5655;
    transform: translateY(-20px) scale(1.1);
}

.highlight-red {
    color: #FA5655;
}

.subtitle {
    font-size: 1rem;
    letter-spacing: 15px;
    color: #ccc;
    font-weight: 600;
    text-transform: uppercase;
    margin-left: 15px; /* Offset to center the text visually given the letter-spacing */
}



/* Footer */
.bottom-footer {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
}

.bottom-footer p {
    color: #FA5655;
    font-size: 0.75rem;
    letter-spacing: 4px;
    font-weight: 700;
}

/* Mobile Nav - Hidden on Desktop */
.mobile-nav {
    display: none;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Hide desktop elements */
    .sobre-nosotros,
    .left-sidebar,
    .bottom-footer {
        display: none !important;
    }

    /* Adjust Top Header */
    .top-header {
        padding: 0;
        justify-content: center; /* Center the star */
        position: relative;
    }

    .header-center {
        margin-top: 10px;
    }

    .header-right {
        position: absolute;
        top: 0;
        right: -10px; /* Push the skewed button to the edge */
    }

    .btn-ingresar {
        padding: 10px 15px;
        font-size: 0.7rem;
        border-radius: 0;
    }

    /* Adjust drawers for mobile to avoid overlap with nav bar */
    .paypal-drawer {
        top: 30%;
        transform: translateY(-50%) translateX(calc(-100% + 30px));
        height: 60px;
    }
    
    .paypal-drawer:hover {
        transform: translateY(-50%) translateX(0);
    }
    
    .paypal-logo {
        width: 16px;
        height: 16px;
    }

    .paypal-content-link span {
        font-size: 0.5rem;
    }

    .bottom-left-drawer {
        bottom: 100px; /* Push above the mobile nav bar */
    }

    /* Main Content */
    .main-title {
        font-size: 1.8rem;
        letter-spacing: 0px;
        margin-bottom: 10px;
        white-space: nowrap;
        justify-content: center;
    }
    
    .wave-text span {
        margin: 0;
    }

    .subtitle {
        font-size: 0.75rem;
        letter-spacing: 4px;
        margin-left: 4px;
    }

    /* Mobile Navigation Bar */
    .mobile-nav {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 5%;
        width: 90%;
        background-color: transparent;
        border: none;
        justify-content: space-around;
        padding: 15px 0;
        z-index: 100;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        text-decoration: none;
        color: #555;
        font-size: 0.6rem;
        font-weight: 800;
        letter-spacing: 1px;
    }

    .mobile-nav-item.active {
        color: #FA5655;
    }
}

/* HIDE GOOGLE TRANSLATE BANNER */
.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
.goog-te-banner,
#goog-gt-tt,
.goog-te-balloon-frame,
iframe.goog-te-banner-frame,
iframe[id*="translate"],
.goog-tooltip,
.goog-tooltip:hover {
    display: none !important;
}
body {
    top: 0 !important;
    position: static !important;
}
html {
    margin-top: 0 !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}
