.gradient-text {
    background: linear-gradient(90deg, #f0a23a, #ffc06b);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.network-bar {
    background: linear-gradient(90deg, #f0a23a, #ffc06b);
    height: 100%;
    border-radius: 9999px;
    transition: width 0.5s ease;
}

.promo-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 162, 58, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(240, 162, 58, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(240, 162, 58, 0);
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(240, 162, 58, 0.3);
}

.service-card:hover img {
    transform: scale(1.05);
}

.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(240, 162, 58, 0.3);
}

.category-btn {
    transition: all 0.3s ease;
}

.category-btn.active {
    background: linear-gradient(90deg, #f0a23a, #ffc06b);
    color: white;
}

.rocket-animation {
    animation: rocket-bounce 2s ease-in-out infinite;
}

@keyframes rocket-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.privacy-section {
    background: linear-gradient(135deg, rgba(240, 162, 58, 0.1), rgba(255, 192, 107, 0.1));
}

.register-pulse {
    animation: register-pulse 2s infinite;
}

@keyframes register-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 162, 58, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(240, 162, 58, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(240, 162, 58, 0);
    }
}

.register-pulse:hover {
    animation: none;
    box-shadow: 0 0 0 0 rgba(240, 162, 58, 0);
}

.mobile-menu-enter {
    animation: slideDown 0.3s ease-out;
}

.mobile-menu-exit {
    animation: slideUp 0.3s ease-in;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
} 

.burger-icon {
    width: 24px;
    height: 18px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-button.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-button.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.mobile-menu.open {
    max-height: 100vh;
}

.help-submenu, .lang-submenu, .user-submenu {
    transition: all 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.help-submenu.open, .lang-submenu.open, .user-submenu.open {
    max-height: 200px;
}

body { font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; }

.btn-accent {
    background: linear-gradient(120deg, #f0a23a, #d9861f);
    transition: filter .2s ease;
}
.btn-accent:hover { filter: brightness(1.12); }

.card {
    background: #15181f;
    border: 1px solid #262b34;
    transition: border-color .2s ease, transform .2s ease;
}
.card:hover { border-color: #363c47; transform: translateY(-3px); }

.label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; }
.bullet { width: 5px; height: 5px; border-radius: 9999px; flex-shrink: 0; }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: #0e1016; }
::-webkit-scrollbar-thumb { background: #262b34; border-radius: 9999px; }

.slider::-webkit-slider-thumb {
    appearance: none;
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #f0a23a;
    cursor: pointer;
    border: 2px solid #eef0f4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.slider::-moz-range-thumb {
    height: 18px;
    width: 18px;
    border-radius: 50%;
    background: #f0a23a;
    cursor: pointer;
    border: 2px solid #eef0f4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.slider::-webkit-slider-track {
    height: 8px;
    border-radius: 4px;
    background: linear-gradient(to right, #f0a23a 0%, #f0a23a var(--value, 20%), #262b34 var(--value, 20%), #262b34 100%);
}

.slider::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    background: #262b34;
}