* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Aileron", "Inter", sans-serif;
}
:root {
    --neon-start: #0cefcc;
    --neon-end: #05bdaa;
    --glass-bg: rgba(15, 15, 15, 0.65);
    --glass-border: rgba(255, 255, 255, 0.15);
    --blur: 12px;
}
html {
    scroll-behavior: smooth;
}
body {
    background-color: #050505;
    color: #fff;
}
.glass-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 15px 0;
}
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.logo-area {
    display: flex;
    align-items: center;
    position: relative;
}
.logo-img {
    width: 45px;
    height: auto;
    z-index: 2;
    position: relative;
}
.site-title {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: 1.5rem;
    text-transform: uppercase;
    background: linear-gradient(90deg, var(--neon-start), var(--neon-end));
    -webkit-background-clip: text;
    background-clip: text;
    color: #fff0;
    position: absolute;
    left: 10px;
    opacity: 0;
    z-index: 1;
    white-space: nowrap;
    animation: slideOutText 0.5s ease-out forwards;
    animation-delay: 0.5s;
}
@keyframes slideOutText {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    100% {
        transform: translateX(50px);
        opacity: 1;
    }
}
@keyframes slideOutTextDesktop {
    0% {
        transform: translateX(0);
        opacity: 0;
    }
    100% {
        transform: translateX(60px);
        opacity: 1;
    }
}
.desktop-nav {
    display: none;
}
.desktop-nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}
.desktop-nav a:hover {
    color: var(--neon-start);
    text-shadow: 0 0 10px rgb(12 239 204 / 0.5);
}
.menu-btn {
    background: none;
    border: none;
    width: 32px;
    cursor: pointer;
    display: block;
}
.mobile-dropdown {
    display: none;
    flex-direction: column;
    background: rgb(10 10 10 / 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--neon-start);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgb(0 0 0 / 0.5);
}
.mobile-dropdown.active {
    display: flex;
    animation: fadeInDown 0.3s ease;
}
.dropdown-link {
    color: #fff;
    text-decoration: none;
    padding: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgb(255 255 255 / 0.05);
}
.dropdown-link:last-child {
    border-bottom: none;
}
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.compact-footer {
    width: 100%;
    background-color: #050505;
    padding: 20px;
    border-top: 1px solid rgb(255 255 255 / 0.05);
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-brand {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    line-height: 1.1;
    font-size: 1.1rem;
    background: linear-gradient(90deg, var(--neon-start), var(--neon-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: #fff0;
    display: inline-block;
}
.footer-nav {
    display: flex;
    gap: 20px;
}
.footer-nav a {
    font-family: "Aileron", sans-serif;
    color: #666;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s;
}
.footer-nav a:hover {
    color: #fff;
}
.footer-copy {
    font-family: "Aileron", sans-serif;
    font-size: 0.75rem;
    color: #444;
}
.user-link {
    color: #888;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}
.user-link:hover {
    color: var(--neon-start);
}
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }
}
@media (min-width: 768px) {
    .menu-btn {
        display: none;
    }
    .mobile-dropdown {
        display: none !important;
    }
    .desktop-nav {
        display: block;
    }
    .site-title {
        font-size: 1.8rem;
        animation-name: slideOutTextDesktop;
    }
}
.hero-section1 {
    width: 100%;
    min-height: 800px;
    background-image: linear-gradient(to bottom, #050505 0%, transparent 15%, transparent 85%, #050505 100%),
        url(bg/bg-cha-desktop.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5%;
}
.hero-section2 {
    width: 100%;
    min-height: 800px;
    background-image: linear-gradient(to bottom, #050505 0%, transparent 15%, transparent 85%, #050505 100%),
        url(bg/bg-caps-desktop.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5%;
}
.hero-section3 {
    width: 100%;
    min-height: 800px;
    background-image: linear-gradient(to bottom, #050505 0%, transparent 15%, transparent 85%, #050505 100%),
        url(bg/bg-gummy-desktop.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5%;
}
.hero-section4 {
    width: 100%;
    min-height: 800px;
    background-image: linear-gradient(to bottom, #050505 0%, transparent 15%, transparent 85%, #050505 100%),
        url(bg/bg-long-desktop.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 5%;
}
.content-card {
    max-width: 500px;
    color: #fff;
    text-align: left;
}
.content-card h2 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 1px;
}
.content-card p:not(.button-label) {
    font-family: "Aileron", sans-serif;
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
    font-weight: 300;
}
.button-label {
    font-family: "Aileron", sans-serif;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    margin-bottom: 8px !important;
    width: 100%;
    font-weight: 400;
}
.button-label span {
    font-weight: 800;
}
.buttons-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}
.btn-action {
    color: #fff;
    font-family: "Aileron", sans-serif;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: block;
    width: 100%;
    text-align: center;
    border: 1px solid #fff0;
}
.btn-action:hover {
    background-color: #014d48;
    border-color: #f1f1f1;
}
.btn-green {
    background-color: #02736c;
    border-color: #f1f1f1;
}
.btn-green:hover {
    background-color: #014d48;
    border-color: #f1f1f1;
}
.btn-rosa {
    background-color: #dc2392;
    border-color: #f1f1f1;
}
.btn-rosa:hover {
    background-color: #a91d71;
    border-color: #f1f1f1;
}
.btn-red {
    background-color: #ec3943;
    border-color: #f1f1f1;
}
.btn-red:hover {
    background-color: #b3252c;
    border-color: #f1f1f1;
}
@media (max-width: 768px) {
    .hero-section1 {
        background-image: linear-gradient(to bottom, #050505 0%, transparent 30%, transparent 70%, #050505 100%),
            url(bg/bg-cha-mobile.webp);
        background-position: top center;
        min-height: 100vh;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 40px;
    }
    .hero-section2 {
        background-image: linear-gradient(to bottom, #050505 0%, transparent 30%, transparent 70%, #050505 100%),
            url(bg/bg-caps-mobile.webp);
        background-position: top center;
        min-height: 100vh;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 40px;
    }
    .hero-section3 {
        background-image: linear-gradient(to bottom, #050505 0%, transparent 30%, transparent 70%, #050505 100%),
            url(bg/bg-gummy-mobile.webp);
        background-position: top center;
        min-height: 100vh;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 40px;
    }
    .hero-section4 {
        background-image: linear-gradient(to bottom, #050505 0%, transparent 30%, transparent 70%, #050505 100%),
            url(bg/bg-long-mobile.webp);
        background-position: top center;
        min-height: 100vh;
        align-items: flex-end;
        justify-content: center;
        padding-bottom: 40px;
    }
    .content-card {
        max-width: 95%;
        text-align: center;
        margin-top: 450px;
        padding: 30px 20px;
        background: var(--glass-bg);
        backdrop-filter: blur(var(--blur));
        -webkit-backdrop-filter: blur(var(--blur));
        border: 1px solid var(--glass-border);
        border-radius: 20px;
    }
    .content-card h2 {
        font-size: 2.5rem;
    }
    .buttons-wrapper {
        justify-content: center;
        flex-direction: column;
    }
    .btn-action {
        width: 100%;
        text-align: center;
    }
}
