:root {
    --primary: #3B82F6;
    --secondary: #1E40AF;
    --accent: #60A5FA;
    --background: #07080a;
    --card: #0c0d0f;
}

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

/* Mobile menu styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--background);
    transition: right 0.3s ease-in-out;
    z-index: 50;
    padding: 2rem;
    border-left: 1px solid rgba(96, 165, 250, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
}

.mobile-menu.active {
    right: 0;
}

/* Global scrollbar width */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

/* Scrollbar track */
::-webkit-scrollbar-track {
    background: #1e293b;
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
    background-color: #3b82f6;
    border-radius: 8px;
    border: 3px solid #1e293b;
}

/* Thumb hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #2563eb;
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #3b82f6 #1e293b;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
    z-index: 45;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}
html {

  scroll-behavior: smooth;

}
body {
    font-family: 'JetBrains Mono', sans-serif;
    background-color: var(--background);
}

.gradient-text {
    background: linear-gradient(45deg, #60A5FA, #3B82F6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Price Container */
/* Price Display */
.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding: 1rem 0;
}

.price-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    padding: 0.5rem 0;
}

.price-item {
    display: inline-flex;
    align-items: baseline;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    color: #3B82F6;
    letter-spacing: -0.025em;
}

.price-item .currency-symbol {
    font-size: 1.5rem;
    font-weight: 600;
    margin-right: 0.25rem;
    color: #60A5FA;
    opacity: 0.9;
}

.price-period {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

/* Configuration Panel */
.filter-panel {
    background: var(--card);
    border: 1px solid rgba(96, 165, 250, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
}

.filter-panel select {
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.filter-panel select:hover {
    background: rgba(96, 165, 250, 0.2);
    border-color: rgba(96, 165, 250, 0.5);
}

.filter-panel select:focus {
    background: rgba(96, 165, 250, 0.3);
    border-color: rgba(96, 165, 250, 0.7);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
}

.filter-panel select option {
    background: var(--card);
    color: white;
}

.sticky {
    position: sticky;
    top: 120px;
    z-index: 30;
    transition: top 0.3s ease;
}

@media (max-width: 768px) {
    .sticky {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
}

/* Feature Cards */
.feature-card {
    background: var(--card);
    border: 1px solid rgba(96, 165, 250, 0.3);
    position: relative;
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    border-color: var(--accent);
}

.btn-outline.active {
    background: rgba(59, 130, 246, 0.3);
    border-color: var(--accent);
    box-shadow: inset 0 0 5px rgba(59, 130, 246, 0.5);
}

.btn-outline.active:hover {
    background: rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Premium Button */
.btn-premium {
    background: transparent;
    border: 2px solid #60A5FA;
    color: white;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5), 0 0 20px rgba(96, 165, 250, 0.2);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.7), 0 0 30px rgba(96, 165, 250, 0.3);
    background: rgba(96, 165, 250, 0.1);
    border-color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

/* Premium Features Section */
.premium-features {
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.premium-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    pointer-events: none;
}

/* Feature Badges */
.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.1rem 0.6rem;
    border-radius: 1px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
    text-transform: uppercase;
    animation: glow 2s ease-in-out infinite;
}

.badge-ultra {
    background: linear-gradient(45deg, #3B82F6, #60A5FA);
    color: white;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

.badge-priority {
    background: linear-gradient(45deg, #D97706, #B45309);
    color: white;
    box-shadow: 0 0 10px rgba(212, 119, 6, 0.7);
}

/* Premium Feature Items */
.premium-feature-item {
    background: var(--card);
    border: 1px solid rgba(96, 165, 250, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.premium-feature-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 20px rgba(96, 165, 250, 0.1);
}

/* Filter Panel Styles */
.form-checkbox {
    appearance: none;
    width: 1.2em;
    height: 1.2em;
    border: 2px solid #4B5563;
    border-radius: 0.25em;
    background-color: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.form-checkbox:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 0.5em;
    height: 0.5em;
    background-color: white;
    border-radius: 0.1em;
}

.form-checkbox:hover {
    border-color: var(--accent);
}

/* Range Slider */
.range-slider-container {
    position: relative;
    padding: 15px 0;
    margin: 10px 0;
}

.range-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary) 0%, var(--primary) 50%, rgba(96, 165, 250, 0.1) 50%, rgba(96, 165, 250, 0.1) 100%);
    border-radius: 2px;
    outline: none;
}

.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.3),
                inset 0 0 6px rgba(255, 255, 255, 0.2);
    margin-top: -8px;
}

.range-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.3),
                inset 0 0 6px rgba(255, 255, 255, 0.2);
}

.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.5),
                inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.range-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.5),
                inset 0 0 8px rgba(255, 255, 255, 0.3);
}

.range-slider::-webkit-slider-runnable-track {
    height: 4px;
    border-radius: 2px;
}

.range-slider::-moz-range-track {
    height: 4px;
    border-radius: 2px;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Currency Widget */
.currency-widget {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 40;
    background: var(--card);
    border: 1px solid rgba(96, 165, 250, 0.3);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.currency-widget select {
    background: var(--primary);
    border: 1px solid rgba(96, 165, 250, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    outline: none;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.3s ease;
}

.currency-widget select:hover {
    background: var(--primary);
    border-color: rgba(96, 165, 250, 0.5);
}

.currency-widget select:focus {
    background: var(--primary);
    border-color: rgba(96, 165, 250, 0.7);
    box-shadow: 0 0 15px rgba(96, 165, 250, 0.3);
}

.currency-widget select option {
    background: var(--card);
    color: white;
}

.currency-widget .label {
    color: #94a3b8;
    font-size: 0.875rem;
}

/* Discord Float Button */
.discord-float {
    position: fixed;
    z-index: 40;
    background: #5865F2;
    color: white;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.discord-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(88, 101, 242, 0.6);
}

/* Animations */
@keyframes glow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.scale-up {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scale-up.visible {
    opacity: 1;
    transform: scale(1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-text {
        padding-top: 6rem;
        font-size: 3rem !important;
        line-height: 1.2;
    }
   
    .section-padding {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .mobile-button-group {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .mobile-button-group a {
        width: 100%;
    }

    .currency-widget {
        bottom: 24px;
        right: 24px;
    }

    .discord-float {
        bottom: 24px;
        left: 24px;
    }
}

/* Desktop Positions */
@media (min-width: 768px) {
    .discord-float {
        bottom: 32px;
        left: 32px;
    }
}
