.discord-button {
    width: 100%;
    padding: 14px;
    background: #5865F2;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    margin-top: 12px;
}

.discord-button:hover {
    background: #4752C4;
    transform: translateY(-1px);
}

.discord-button i {
    font-size: 20px;
}


.rank-icon-wrapper {
    position: relative;
    display: inline-block;
}


.rank-tooltip {
    visibility: hidden;
    position: absolute;
    left: 30%;
    transform: translateX(-50%) translateY(-10px);
    bottom: 100%;
    padding: 8px 12px;
    background: rgba(6, 10, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: white;
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}


.rank-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(6, 10, 20, 0.92) transparent transparent transparent;
}


.rank-icon-wrapper:hover .rank-tooltip {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}


.rank-tooltip.bronze { border-color: rgba(205, 127, 50, 0.3); }
.rank-tooltip.silver { border-color: rgba(192, 192, 192, 0.3); }
.rank-tooltip.gold { border-color: rgba(255, 215, 0, 0.3); }
.rank-tooltip.platinum { border-color: rgba(229, 228, 226, 0.3); }
.rank-tooltip.diamond { border-color: rgba(185, 242, 255, 0.3); }
.rank-tooltip.grandmaster { border-color: rgba(148, 0, 211, 0.3); }
.rank-tooltip.celestial { border-color: rgba(255, 0, 0, 0.3); }
.rank-tooltip.eternity { border-color: rgba(227, 179, 236, 0.3); }
.rank-tooltip.oneaboveall { border-color: rgba(255, 223, 0, 0.3); }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }
body::before {
     content: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bgrb5.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -2;
}
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 1px, rgba(2, 6, 23, 0.1) 1px);
    background-size: 4px 4px;
    z-index: -1;
    pointer-events: none;
}
        body {
            background: linear-gradient(135deg, #030712 0%, #0a0f1e 50%, #070d1e 100%);
            color: #fff;
            min-height: 100vh;
            line-height: 1.5;
        }

        .nav-tabs {
            display: flex;
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
             margin-top: 100px;
        }

        .nav-tab {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            border-radius: 8px;
            color: #fff;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            font-size: 13px;
            font-weight: 500;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
        }

        .nav-tab:hover {
            opacity: 0.85;
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
        }

        .nav-tab.active {
            background: rgba(255, 255, 255, 0.06);
            opacity: 1;
            border-color: rgba(255, 255, 255, 0.1);
        }

        .main-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
     background: #070d1e00;
    padding: 20px;
    
}
.error-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    left: auto;
    transform: translateX(calc(100% + 24px));
    background: rgba(6, 10, 20, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid #ef4444;
    border-radius: 10px;
    padding: 14px 18px;
    width: 340px;
    max-width: calc(100vw - 40px);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 10000;
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.error-popup.show {
    transform: translateX(0);
    opacity: 1;
}

.error-popup h3 {
    color: #f87171;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.01em;
}

.error-popup p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12.5px;
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.4;
}

.error-popup button {
    display: none;
}

.error-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: rgba(239, 68, 68, 0.6);
    transform-origin: left;
    animation: toastCountdown 3s linear forwards;
}

@keyframes toastCountdown {
    from { transform: scaleX(1); }
    to { transform: scaleX(0); }
}
        .rank-sections {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .rank-section {
            background: rgba(6, 10, 20, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
           padding: 20px;
             height: fit-content;
            backdrop-filter: blur(16px) saturate(1.2);
            -webkit-backdrop-filter: blur(16px) saturate(1.2);
        }

        .section-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            padding-bottom: 12px;
        }

        .section-header img {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .section-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
        }

        .section-subtitle {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 20px;
        }

        .rank-icons {
             display: grid;
              grid-template-columns: repeat(auto-fit, minmax(48px, 1fr));
             gap: 8px;
    padding: 12px;
            margin-bottom: 20px;

            background: rgba(6, 10, 20, 0.4);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.04);
            flex-wrap: wrap;
            justify-content: center;
        }

        .rank-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            cursor: pointer;
            opacity: 0.6;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            padding: 4px;
        }

        .rank-icon:hover {
            opacity: 1;
            transform: translateY(-2px);
        }

        .rank-icon.selected {
            opacity: 1;
            background: rgba(255, 255, 255, 0.05);
            transform: scale(1.1);
        }



.rank-icon.selected.bronze { 
    box-shadow: 0 0 20px rgba(205, 127, 50, 0.5); 
    background: rgba(205, 127, 50, 0.2);
    border: 1px solid rgba(205, 127, 50, 0.3);
}

.rank-icon.selected.silver { 
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.5);
    background: rgba(192, 192, 192, 0.2);
    border: 1px solid rgba(192, 192, 192, 0.3);
}

.rank-icon.selected.gold { 
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.rank-icon.selected.platinum { 
    box-shadow: 0 0 20px rgba(229, 228, 226, 0.5);
    background: rgba(229, 228, 226, 0.2);
    border: 1px solid rgba(229, 228, 226, 0.3);
}

.rank-icon.selected.diamond { 
    box-shadow: 0 0 20px rgba(23, 136, 215, 0.5);
    background: rgba(185, 242, 255, 0.2);
    border: 1px solid rgba(185, 242, 255, 0.3);
}

.rank-icon.selected.grandmaster { 
  box-shadow: 0 0 20px rgba(148, 0, 211, 0.5);
    background: rgba(148, 0, 211, 0.2);
    border: 1px solid rgba(148, 0, 211, 0.3);
}

.rank-icon.selected.celestial { 
   
     box-shadow: 0 0 20px rgba(255, 0, 0, 0.5);
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.3);
}

.rank-icon.selected.eternity { 
    box-shadow: 0 0 20px rgba(227, 179, 236, 0.5);
    background: rgba(227, 179, 236, 0.2);
    border: 1px solid rgba(227, 179, 236, 0.3);
}

.rank-icon.selected.oneaboveall { 
    box-shadow: 0 0 20px rgba(255, 223, 0, 0.5);
    background: rgba(255, 223, 0, 0.2);
    border: 1px solid rgba(255, 223, 0, 0.3);
}

.rank-icon.disabled {
    transition: all 0.3s ease;
}

.disabled {
    opacity: 0.3;
    cursor: not-allowed !important;
    pointer-events: none;
}

        .division-selector {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
            justify-content: center;
        }

        .division-btn {
            width: 36px;
            height: 36px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(6, 10, 20, 0.4);
            color: #fff;
            border-radius: 8px;
            cursor: pointer;
            font-size: 13px;
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .division-btn:hover {
            border-color: rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.04);
        }

        .division-btn.selected {
            background: rgba(59, 130, 246, 0.12);
            border-color: rgba(59, 130, 246, 0.25);
            box-shadow: 0 0 12px rgba(59, 130, 246, 0.15);
        }

        .options-row {
            display: flex;
            gap: 12px;
        }

        .select-container {
            flex: 1;
        }

        .select-label {
            display: block;
            font-size: 11px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.5);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        select {
            width: 100%;
            padding: 12px 16px;
            background: rgba(6, 10, 20, 0.7);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 8px;
            color: #fff;
            font-family: 'Outfit', sans-serif;
            font-size: 13px;
            font-weight: 400;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.35)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: calc(100% - 12px) center;
            padding-right: 40px;
        }

        select:hover {
            border-color: rgba(255, 255, 255, 0.12);
            background: rgba(6, 10, 20, 0.8);
        }

        select:focus {
            outline: none;
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
        }

  
        .checkout-section {
            background: rgba(6, 10, 20, 0.65);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 18px;
            position: sticky;
            top: 20px;
            height: auto;
            backdrop-filter: blur(20px) saturate(1.2);
            -webkit-backdrop-filter: blur(20px) saturate(1.2);
            align-self: start;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.03);
        }

        .checkout-header {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: #fff;
        }

        .checkout-subtitle {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 14px;
        }

        .rank-display {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
             margin-bottom: 16px;
            padding: 12px;
            background: rgba(6, 10, 20, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }

        .rank-icon-small {
            width: 32px;
            height: 32px;
        }

        .rank-arrow {
            color: rgba(255, 255, 255, 0.6);
        }

        .boost-options {
            display: flex;
            flex-direction: column;
            gap: 8px;
            margin-bottom: 12px;
        }

        .boost-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
             padding: 10px 12px;
            background: rgba(6, 10, 20, 0.35);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        }

        .boost-option:hover {
            background: rgba(6, 10, 20, 0.5);
            border-color: rgba(255, 255, 255, 0.08);
        }

        .option-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .option-badge {
            padding: 2px 8px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
            font-size: 11px;
            font-weight: 500;
        }

        .promo-badge {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 12px;
            background: rgba(59, 130, 246, 0.06);
            border: 1px solid rgba(59, 130, 246, 0.15);
            border-radius: 8px;
           margin-bottom: 16px;
            font-size: 13px;
        }

        .promo-badge svg {
            width: 16px;
            height: 16px;
        }

        .total-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 12px;
            padding: 12px;
            background: rgba(6, 10, 20, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
        }

        .price-display {
            text-align: right;
        }

        .original-price {
            font-size: 14px;
            color: #ef4444 !important;
    opacity: 0.8;
            text-decoration: line-through;
        }

        .final-price {
            font-size: 20px;
            font-weight: 600;
            color: #fff;
        }

        .stripe-button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
            border: none;
            border-radius: 8px;
            color: #000;
            font-family: 'Outfit', sans-serif;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 12px;
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.2);
            position: relative;
            overflow: hidden;
        }

        .stripe-button:hover {
            background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(245, 158, 11, 0.3);
        }

        .stripe-button svg {
            width: 20px;
            height: 20px;
        }

        .switch {
            position: relative;
            display: inline-block;
            width: 44px;
            height: 24px;
        }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }
.contact-us {
    font-size: 18px;
    font-weight: 600;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
        .slider {
            position: absolute;
            cursor: pointer;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(6, 10, 20, 0.6);
            border: 1px solid rgba(255, 255, 255, 0.08);
            transition: .4s cubic-bezier(0.16, 1, 0.3, 1);
            border-radius: 24px;
        }

        .slider:before {
            position: absolute;
            content: "";
            height: 18px;
            width: 18px;
            left: 3px;
            bottom: 2px;
            background-color: white;
            transition: .4s;
            border-radius: 50%;
        }

        input:checked + .slider {
            background: #2563eb;
        }

        input:checked + .slider:before {
            transform: translateX(20px);
        }

        #paypal-button-container {
            margin-top: 12px;
        }
 
.wins-slider-container {
    background: rgba(6, 10, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    margin: 20px 0;
}

.wins-slider {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    outline: none;
    -webkit-appearance: none;
}

.wins-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.25);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wins-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 0 16px rgba(59, 130, 246, 0.35);
}

.wins-display {
    text-align: center;
    margin-top: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.wins-amount {
    color: #60a5fa;
    margin-right: 8px;
}

.estimated-time {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 12px;
}

.estimated-time i {
    margin-right: 8px;
    color: rgba(59, 130, 246, 0.7);
}

.nav-tab {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-tab i {
    font-size: 16px;
}


.rank-sections {
    transition: opacity 0.3s ease-in-out;
}

.rank-sections.fade-out {
    opacity: 0;
}

.rank-sections.fade-in {
    opacity: 1;
}

   
.coupon-section {
    margin-bottom: 16px;
}

.coupon-button {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

.coupon-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.coupon-input-container {
    margin-top: 12px;
    display: flex;
    gap: 8px;
}

.coupon-input-container input {
    flex: 1;
    padding: 8px 12px;
    background: rgba(6, 10, 20, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    transition: border-color 0.3s ease;
}

.coupon-input-container input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.4);
}

.coupon-input-container button {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.coupon-input-container button:hover {
    background: rgba(59, 130, 246, 0.25);
}

#couponMessage {
    margin-top: 8px;
    font-size: 14px;
}

  @import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

.premium-showcase {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    font-family: 'Outfit', sans-serif;
    background: #060a14;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    margin-top: 60px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 72px;
}

.header-accent {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: rgba(96, 165, 250, 0.8);
    font-weight: 600;
    display: block;
    margin-bottom: 20px;
}

.header-title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.1;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: grad-shift 6s ease-in-out infinite;
    position: relative;
}

@keyframes grad-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 40px;
}

.step-display {
    flex: 1;
    position: relative;
    height: 400px;
    perspective: 2000px;
    overflow: hidden;
}

.step-card {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%) rotateY(-20deg);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(6, 10, 20, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
}

.step-card.active {
    position: absolute;
    opacity: 1;
    visibility: visible;
    transform: translateX(0) rotateY(0);
}

.card-content {
    width: 100%;
    height: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
@keyframes slideIn {
    from {
        transform: translateX(100%) rotateY(-20deg);
        opacity: 0;
    }
    to {
        transform: translateX(0) rotateY(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0) rotateY(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%) rotateY(20deg);
        opacity: 0;
    }
}


@media (max-width: 1024px) {
    .step-info {
        max-width: 100%;
        text-align: left;
    }

    .step-illustration {
        position: relative;
        top: 0;
        right: 0;
        transform: none;
        margin: 20px auto;
    }
}
.step-info {
    flex: 1;
    max-width: 50%;
    z-index: 2;
}
.step-badge {
    width: 56px;
    height: 56px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    position: relative;
 z-index: 2;
    font-weight: 700;
    color: #60a5fa;
   margin-bottom: 30px;
}
.step-illustration {
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    width: 400px; 
    height: 400px; 
   
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
   
    z-index: 1;
}
@keyframes float {
    0%, 100% { transform: translateY(-50%) translateZ(0); }
    50% { transform: translateY(-45%) translateZ(0); }
}
.step-illustration img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    margin-left: 89px;
    filter: drop-shadow(0 0 16px rgba(59, 130, 246, 0.15));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.step-card:hover .step-illustration img {
    transform: scale(1.1) rotate(5deg);
}



@media (max-width: 1024px) {
    .step-illustration {
        width: 200px;
        height: 200px;
        right: 3%;
    }
    
    .step-illustration img {
        width: 120px;
        height: 120px;
    }
    
    .step-info {
        max-width: calc(100% - 240px);
    }
}

@media (max-width: 768px) {
    .step-illustration {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 20px auto;
        width: 180px;
        height: 180px;
    }
    
    .step-illustration img {
        width: 100px;
        height: 100px;
    }
    
    .step-info {
        max-width: 100%;
        text-align: center;
    }
    
    .step-badge {
        margin: 0 auto 20px;
    }
}
.step-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: calc(100% - 300px);
    justify-content: center;
}

.step-info h3 {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.step-info p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
    max-width: 600px;
    font-weight: 400;
}

.nav-btn {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-2px);
}

.progress-container {
    max-width: 300px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.progress-track {
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 1px;
    margin-bottom: 20px;
    position: relative;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 1px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}

.progress-numbers {
    display: flex;
    justify-content: space-between;
}

.progress-number {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.progress-number.active {
    color: #60a5fa;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .showcase-container {
        padding: 0 20px;
    }
    
    .nav-btn {
        display: none;
    }
    
    .header-title {
        font-size: 36px;
    }
    
    .step-info h3 {
        font-size: 24px;
    }
}


.premium-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(6, 10, 20, 0.75);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
}

.main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('bgrb5.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: -2;
}
.main-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 1px, rgba(2, 6, 23, 0.1) 1px);
    background-size: 4px 4px;
    z-index: -1;
    pointer-events: none;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
  height: 48px;
  width: auto;
  transition: all 0.3s ease;
}

.logo-container:hover .logo {
  transform: scale(1.05) rotate(2deg);
}

/* Navigation Links */
.nav-links {
    display: flex;
    align-items: center;
    margin-left: 3rem; 
}

.nav-link {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  
  background: rgb(59, 130, 246);
  transition: width 0.3s ease;
}

.nav-link:hover::before {
  width: 80%;
}
.game-icon {
    width: 24px;
    height: 24px;
    margin-right: 12px;
}

.game-info {
    display: flex;
    align-items: center;
    flex: 1;
}

.lock-info {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}
/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
  font-size: 0.95rem;
  font-weight: 500;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 1rem);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 320px;
    background: rgba(6, 10, 20, 0.96);
    backdrop-filter: blur(24px) saturate(1.3);
    -webkit-backdrop-filter: blur(24px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1rem;
    padding: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.dropdown-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.dropdown-item.available:hover {
  background: rgba(255, 255, 255, 0.04);
}

.dropdown-item.locked {
  color: rgba(255, 255, 255, 0.5);
  cursor: not-allowed;
}

.lock-icon {
    color: rgba(255, 255, 255, 0.4);
    margin-left: 8px;
}

.locked-text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 8px;
}

/* Discord Button */
.discord-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1.25rem;
    background: #5865F2;
    border-radius: 0.5rem;
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 2px 5px rgba(88, 101, 242, 0.2);
}


.discord-button:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(88, 101, 242, 0.4);
}
.nav-discord-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    margin-left: auto; /* Push to right */
}
.nav-discord-link:hover {
    color: rgb(88, 101, 242);
}
.nav-threads-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
    margin-left: 1000px; 
}
.nav-threads-link:hover {
    color: #ffc439;
}
.nav-discord-icon {
    width: 20px;
    height: 20px;
}
/* Premium Effects */
.navbar-border {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(59, 130, 246, 0.1) 30%,
    rgba(139, 92, 246, 0.06) 70%,
    transparent 100%
  );
}

.navbar-glow {
  display: none;
}

/* Particle Effects — killed for V3 */
.particles-container {
  display: none !important;
}

.particle {
  display: none !important;
}


/* logo-pulse killed for V3 */

@keyframes float-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px);
    opacity: 0;
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 5px rgba(59, 130, 246, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.6);
  }
}


.particle:nth-child(1) { left: 10%; animation: float-up 4s infinite; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation: float-up 4s infinite; animation-delay: 0.4s; }
.particle:nth-child(3) { left: 30%; animation: float-up 4s infinite; animation-delay: 0.8s; }
.particle:nth-child(4) { left: 40%; animation: float-up 4s infinite; animation-delay: 1.2s; }
.particle:nth-child(5) { left: 50%; animation: float-up 4s infinite; animation-delay: 1.6s; }
.particle:nth-child(6) { left: 60%; animation: float-up 4s infinite; animation-delay: 2.0s; }
.particle:nth-child(7) { left: 70%; animation: float-up 4s infinite; animation-delay: 2.4s; }
.particle:nth-child(8) { left: 80%; animation: float-up 4s infinite; animation-delay: 2.8s; }
.particle:nth-child(9) { left: 90%; animation: float-up 4s infinite; animation-delay: 3.2s; }
.particle:nth-child(10) { left: 95%; animation: float-up 4s infinite; animation-delay: 3.6s; }


.premium-navbar.scrolled {
  background: rgba(6, 10, 20, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(255, 255, 255, 0.03);
}


.dropdown-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.02);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.dropdown-item:hover::after {
  opacity: 1;
}
.game-icon {
    transition: transform 0.2s ease;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.9);
}


@media (max-width: 768px) {
  .navbar-container {
    padding: 0 1rem;
  }
  
  .nav-links {
    gap: 1rem;
  }
  
  .logo {
    height: 40px;
  }
  
  .discord-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}


.promo-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 10, 20, 0.92);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    transform: translateY(100%);
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    height: 48px;
}

@keyframes textGlow {
    0% { color: rgba(255, 255, 255, 0.7); text-shadow: 0 0 10px rgba(37, 99, 235, 0.2); }
    50% { color: rgba(255, 255, 255, 0.9); text-shadow: 0 0 20px rgba(37, 99, 235, 0.4); }
    100% { color: rgba(255, 255, 255, 0.7); text-shadow: 0 0 10px rgba(37, 99, 235, 0.2); }
}

@keyframes textShift {
    0% { color: rgba(255, 255, 255, 0.8); }
    25% { color: rgba(96, 165, 250, 0.9); }
    50% { color: rgba(37, 99, 235, 0.9); }
    75% { color: rgba(96, 165, 250, 0.9); }
    100% { color: rgba(255, 255, 255, 0.8); }
}
.promo-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 16px;
    height: 100%;
    position: relative;
}
.promo-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}
@keyframes premiumShift {
    0% { 
        background-position: 0% 50%;
        opacity: 0.85;
    }
    50% { 
        background-position: 100% 50%;
        opacity: 1;
    }
    100% { 
        background-position: 0% 50%;
        opacity: 0.85;
    }
}
.promo-badge {
    height: 28px;
    padding: 0 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    color: #fff;
     margin-top : 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 4px;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.promo-message{
    margin-left : 246px;
}
.promo-badge::before,
.promo-badge::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(6, 10, 20, 0.95);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}
.promo-badge::before {
    left: -3px;
    border-right: 1px dashed rgba(255, 255, 255, 0.1);
}
.promo-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.promo-badge::after {
    right: -3px;
    border-left: 1px dashed rgba(255, 255, 255, 0.1);
}
.promo-unlock-text {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 167, 18, 0.9) 50%,
        rgba(255, 255, 255, 0.9) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: premiumShift 8s ease infinite;
}

.promo-badge-icon {
    animation: rotate 5s linear infinite;
}
@media (max-width: 768px) {
    .promo-content {
        padding: 0 1rem;
        gap: 12px;
    }
    
    .promo-unlock-text,
    .promo-message {
        display: none;
    }

    .promo-badge {
        font-size: 0.75rem;
    }

    .promo-discord-btn {
        font-size: 0.75rem;
    }
}


.promo-close {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
    margin-left: 8px;
}
.promo-close:hover {
    color: white;
}


@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .promo-content {
        padding: 0 1rem;
        gap: 12px;
    }
    
    .promo-unlock-text,
    .promo-message {
        display: none;
    }

    .promo-badge {
        font-size: 0.75rem;
        padding: 4px 10px;
    }

    .promo-discord-btn {
        padding: 4px 12px;
        font-size: 0.75rem;
    }
}
@media (max-width: 768px) {
    .promo-content {
        padding: 0.5rem;
        gap: 0.75rem;
    }
    
    .promo-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

.promo-message {
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}
    .promo-unlock-text {
        display: none;
    }
}
.promo-badge-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(6, 10, 20, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.promo-discord-btn {
    height: 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 16px;
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}
.promo-discord-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.04);
    opacity: 0;
    transition: opacity 0.2s ease;
}
@media only screen and (max-width: 768px) {
    .dropdown-menu {
        margin-left: 44px;
    }
}

.promo-discord-btn:hover::before {
    opacity: 1;
}
.promo-discord-btn:hover {
    border-color: rgba(255, 255, 255, 0.12);
    color: #fff;
    transform: translateY(-1px);
}

.promo-discord-btn i {
    font-size: 1rem;
}
.promo-badge:hover .promo-badge-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-2px);
}
@media (max-width: 768px) {
    .promo-banner {
        display: none;
    }
}
.promo-message {
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}
.sparkle {
    position: absolute;
    background: white;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

@keyframes sparkle {
    0% { transform: translateY(0) scale(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-20px) scale(1); opacity: 0; }
}
/* Enhanced Animations */
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
@media (max-width: 1024px) {
    .checkout-section {
        min-height: auto;
        height: auto;
    }
}

@media (max-width: 768px) {
    .promo-content {
        padding: 0.5rem 1rem;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .promo-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }

    .promo-message {
        font-size: 0.75rem;
        text-align: center;
    }

    .discord-button {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 1280px) {
    .main-container {
        grid-template-columns: 1fr 300px;
        padding: 1rem;
        gap: 1rem;
    }

    .nav-tabs {
        padding: 1rem;
        margin-top: 80px;
    }

    .rank-section {
        padding: 1rem;
    }

    .checkout-section {
        padding: 1.25rem;
    }
}

@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
    }

    .checkout-section {
        position: relative;
        top: 0;
        margin-top: 1rem;
    }

    .premium-showcase {
        padding: 60px 0;
    }

    .header-title {
        font-size: 36px;
    }

    .showcase-container {
        flex-direction: column;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .nav-tabs {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .rank-icons {
        grid-template-columns: repeat(4, 1fr);
    }

    .options-row {
        flex-direction: column;
        gap: 0.75rem;
    }

    .division-selector {
        justify-content: space-between;
    }

    .boost-option {
        padding: 0.75rem;
    }

    .promo-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }

    .promo-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .rank-display {
        flex-wrap: wrap;
        justify-content: center;
    }

    .premium-navbar .nav-links {
        display: none;
    }

    .premium-navbar .navbar-container {
        justify-content: space-between;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .rank-icons {
        grid-template-columns: repeat(3, 1fr);
    }

    .rank-icon {
        width: 40px;
        height: 40px;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .boost-options {
        gap: 0.5rem;
    }

    .total-section {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .price-display {
        text-align: center;
    }

    .stripe-button, .discord-button {
        padding: 0.75rem;
        font-size: 0.875rem;
    }

    .nav-tab {
        width: 100%;
        justify-content: center;
    }
}


.mobile-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-menu-button {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(6, 10, 20, 0.96);
        backdrop-filter: blur(20px) saturate(1.2);
        -webkit-backdrop-filter: blur(20px) saturate(1.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        padding: 1rem;
        flex-direction: column;
        gap: 0.75rem;
    }

    .nav-links.active {
        display: flex;
    }
}


@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}


/* =============================================
   V3 PREMIUM POLISH ENHANCEMENTS
   ============================================= */

/* Selection color */
::selection {
    background: rgba(59, 130, 246, 0.25);
    color: #fff;
}

/* Focus-visible for keyboard users */
*:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.5);
    outline-offset: 2px;
}

/* Rank section top gradient border */
.rank-section {
    position: relative;
}
.rank-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
    pointer-events: none;
}

/* Checkout sidebar glass depth */
.checkout-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.12), transparent);
    pointer-events: none;
    border-radius: 16px 16px 0 0;
}
.checkout-section {
    position: relative;
}

/* Stripe/Pay button shimmer sweep */
.stripe-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}
.stripe-button:hover::after {
    left: 100%;
}

/* Discord button V3 treatment */
.discord-button {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Section title font */
.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* Checkout header font */
.checkout-header {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: -0.2px;
}

/* Option label font */
.option-label {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

/* Section subtitle */
.section-subtitle {
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    font-size: 13px;
}

/* Final price font */
.final-price {
    font-family: 'JetBrains Mono', 'Outfit', monospace;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Original price font */
.original-price {
    font-family: 'JetBrains Mono', 'Outfit', monospace;
    font-weight: 500;
}

/* Premium showcase step card hover lift */
.step-card.active:hover {
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Wins display mono font */
.wins-display {
    font-family: 'JetBrains Mono', 'Outfit', monospace;
}

/* Coupon message font */
#couponMessage {
    font-family: 'Outfit', sans-serif;
    font-size: 12.5px;
    font-weight: 400;
}

/* Rank icon spring bounce on select */
.rank-icon.selected {
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Promo message font */
.promo-message {
    font-family: 'Outfit', sans-serif;
}

/* Scrollbar refinement */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: rgba(6, 10, 20, 0.5);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.14);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}