﻿.slider-row input[type="range"] {
    background: rgba(255,255,255,.15); /* fallback before JS runs */
}

#ramValue,
#budgetPrice,
#performancePrice {
    font-weight: 700;
    font-size: 20px;
}

.slider-row input[type="range"] {
    --value: 0%;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 999px;
    outline: none;
    background: linear-gradient( to right, #a78bfa 0%, #a78bfa var(--value), rgba(255,255,255,.15) var(--value), rgba(255,255,255,.15) 100% );
}
/* ================= FOOTER ================= */
.site-footer {
    position: relative;
    width: 100vw;
    left: 50%;
    margin-left: -50vw;
    background: radial-gradient( ellipse at center, #1a0033 0%, #0d021f 60%, #05010d 100% );
    padding: 26px 0;
}

    /* TOP DIVIDER LINE */
    .site-footer::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        height: 1px;
        background: linear-gradient( 90deg, transparent, rgba(168,85,247,.45), transparent );
    }

/* INNER */
.footer-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    color: #cbd5f5;
    font-size: 13px;
}

/* LEFT */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #020617;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text strong {
    font-size: 14px;
    color: #e5e7eb;
}

.logo-text span {
    font-size: 12px;
    opacity: 0.7;
}

/* CENTER */
.footer-center {
    text-align: center;
    opacity: 0.6;
    font-size: 12px;
}

/* RIGHT */
.footer-right {
    display: flex;
    justify-content: flex-end;
    gap: 22px;
}

    .footer-right a {
        color: #cbd5f5;
        text-decoration: none;
        font-size: 13px;
        display: flex;
        align-items: center;
        gap: 6px;
        opacity: 0.85;
    }

        .footer-right a:hover {
            opacity: 1;
            color: #a78bfa;
        }

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 14px;
    }

    .footer-right {
        justify-content: center;
    }

    .footer-left {
        justify-content: center;
        display: flex;
    }
}

/* Chrome / Edge thumb */
.slider-row input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #a78bfa;
    box-shadow: 0 0 0 4px rgba(167,139,250,.25);
    cursor: pointer;
    transition: transform .2s ease;
}

    .slider-row input[type="range"]::-webkit-slider-thumb:hover {
        transform: scale(1.15);
    }

/* Firefox thumb */
.slider-row input[type="range"]::-moz-range-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #a78bfa;
    border: none;
}

/* Disabled slider look */
.slider-block.disabled input[type="range"] {
    background: rgba(255,255,255,.1);
}

    .slider-block.disabled input[type="range"]::-webkit-slider-thumb {
        background: #6b7280;
        box-shadow: none;
        cursor: not-allowed;
    }

body {
    margin: 0;
    font-family: 'Rajdhani', sans-serif;
    background: radial-gradient(circle at top, #1a0f3d, #05030f);
    color: #fff;
    letter-spacing: 0.5px;
}


    .plan-calculator h2 {
        text-align: center;
        font-size: 38px;
        font-weight: 800;
    }

        .plan-calculator h2 span {
            color: #a78bfa
        }

.calc-sub {
    text-align: center;
    font-size: 14px;
    opacity: .75;
    margin-bottom: 60px;
}

.calc-left, .calc-right {
    background: linear-gradient(180deg, rgba(124,58,237,.15), rgba(10,5,30,.95));
    border-radius: 20px;
    padding: 30px;
    box-shadow: inset 0 0 0 1px rgba(124,58,237,.25);
}


.preset-header, .plugin-header, .worlds-header, .recommend-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #e9d5ff;
}

/* ================= BUTTONS ================= */
.preset-buttons {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
}

    .preset-buttons button {
        padding: 10px 0;
        border-radius: 12px;
        border: none;
        background: rgba(124,58,237,.35);
        color: #fff;
        font-weight: 600;
        cursor: pointer;
        transition: .25s;
    }

        .preset-buttons button:hover {
            background: rgba(167,139,250,.55);
            transform: translateY(-2px);
        }

/* ================= SELECT ================= */
.select-glass-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 26px;
}

.select-glass {
    background: linear-gradient(180deg, rgba(124,58,237,.22), rgba(20,10,45,.85));
    border-radius: 14px;
    padding: 12px 14px;
    box-shadow: inset 0 0 0 1px rgba(124,58,237,.35);
}

    .select-glass label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 6px;
        color: #e9d5ff;
    }

    .select-glass select {
        width: 100%;
        padding: 10px 14px;
        border-radius: 10px;
        background: rgba(0,0,0,.45);
        border: 1px solid rgba(124,58,237,.45);
        color: #fff;
    }

/* ================= SLIDERS ================= */
.slider-block {
    margin-bottom: 18px
}

    .slider-block label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 8px;
        color: #e9d5ff;
    }

.slider-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .slider-row span {
        min-width: 40px;
        text-align: center;
        padding: 6px 10px;
        border-radius: 8px;
        background: rgba(124,58,237,.35);
        font-size: 13px;
        font-weight: 700;
    }

    /* RANGE TRACK */
    .slider-row input[type=range] {
        --value: 0%;
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        height: 6px;
        border-radius: 999px;
        outline: none;
        background: linear-gradient(to right,#a78bfa 0%,#a78bfa var(--value),rgba(255,255,255,.15) var(--value),rgba(255,255,255,.15) 100%);
    }

        /* THUMB */
        .slider-row input[type=range]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #a78bfa;
            box-shadow: 0 0 0 4px rgba(167,139,250,.25);
            cursor: pointer;
        }

.slider-block.disabled {
    opacity: .4
}

/* ================= RECOMMENDATION ================= */
.recommend-ram {
    font-size: 13px;
    margin-bottom: 10px
}

.recommend-bar {
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.12);
    overflow: hidden;
    margin-bottom: 8px;
}

.recommend-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg,#22c55e,#4ade80);
    transition: .5s;
}

.recommend-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    opacity: .9;
}

.safe {
    color: #22c55e
}

.low {
    color: #4ade80
}

/* ================= BREAKDOWN ================= */
.calc-breakdown {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px dashed rgba(124,58,237,.35);
}

    .calc-breakdown ul {
        list-style: none;
        padding: 0;
        margin: 0
    }

    .calc-breakdown li {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        padding: 4px 0;
    }

        .calc-breakdown li.total {
            margin-top: 6px;
            padding-top: 6px;
            border-top: 1px solid rgba(255,255,255,.15);
            font-weight: 700;
        }

#breakdownList.collapsed {
    max-height: 0;
    overflow: hidden;
    opacity: 0
}

#breakdownList {
    transition: .4s
}

/* ================= PRICE ================= */
.price-estimate {
    margin-top: 10px;
    font-size: 13px;
    opacity: .9
}

.plan-calculator h2 span {
    font-family: 'Minecraft', sans-serif;
    letter-spacing: 1px;
}

#ramValue,
#budgetPrice,
#performancePrice {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}



/* ================= CTA ================= */
.purchase-cta {
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px dashed rgba(124,58,237,.35);
    text-align: center;
}

.purchase-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    color: #020617;
    background: linear-gradient(90deg,#7c3aed,#22d3ee);
    box-shadow: 0 0 25px rgba(124,58,237,.6),0 0 45px rgba(34,211,238,.35);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px) {
    .calc-grid {
        grid-template-columns: 1fr
    }

    .select-glass-row {
        grid-template-columns: 1fr
    }
}

.navbar {
    position: fixed;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    padding: 18px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.35s cubic-bezier(.4,0,.2,1);
    z-index: 10000;
    padding: 14px 28px;
    background: rgba(10, 15, 30, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 1000;
}

.main-header {
    position: fixed;
    top: 18px; /* gap when pill */
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 9999;
    transition: top .35s ease;
}


.nav-pill {
    width: 96%;
    max-width: 1400px;
    padding: 16px 26px;
    border-radius: 999px; /* 🔵 PILL at top */
    background: linear-gradient(90deg, #2b0d63, #1a0b35);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 12px 40px rgba(0,0,0,.45);
    transition: all .35s cubic-bezier(.4,0,.2,1);
}

.main-header.scrolled {
    top: 0; /* 🔥 removes gap */
}

    .main-header.scrolled .nav-pill {
        width: 100%;
        max-width: 100%;
        border-radius: 0; /* rectangle */
        padding: 14px 40px;
        background: rgba(10, 10, 30, 0.85);
        backdrop-filter: blur(14px);
        box-shadow: 0 8px 30px rgba(0,0,0,.35);
    }



/* Base hidden state */
.nav-item .dropdown-menu,
.panels-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all .25s ease;
    pointer-events: none;
}

/* Show on hover */
.nav-item.dropdown:hover > .dropdown-menu,
.panels-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-item .dropdown-menu,
.panels-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.98);
    pointer-events: none;
    transition: opacity .35s ease, transform .35s cubic-bezier(.22,1,.36,1), visibility 0s linear .45s; /* ⬅ longer delay before hiding */
}

.nav-item.dropdown:hover > .dropdown-menu,
.panels-dropdown:hover > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    transition: opacity .25s ease, transform .25s cubic-bezier(.22,1,.36,1), visibility 0s;
}

.nav-item.dropdown::after,
.panels-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 22px; /* bigger bridge */
}


.nav-item.dropdown::after,
.panels-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px; /* invisible hover bridge */
}

.dropdown-menu {
    position: absolute;
    top: 44px;
    left: 0;
    min-width: 240px;
    padding: 14px;
    border-radius: 16px;
    background: rgba(20, 10, 45, 0.55);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border: 1px solid rgba(120, 80, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0,0,0,.55), 0 0 25px rgba(124,58,237,.25), inset 0 0 12px rgba(255,255,255,.05);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 3000;
}

    .dropdown-menu a {
        position: relative;
        padding: 10px 12px;
        border-radius: 10px;
        color: #dcdcff;
        text-decoration: none;
        font-size: 14px;
        transition: all .25s ease;
    }

        .dropdown-menu a:hover {
            background: rgba(124,58,237,.15);
            color: #fff;
            box-shadow: 0 0 12px rgba(124,58,237,.35);
            transform: translateX(4px);
        }

    .dropdown-menu::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 16px;
        padding: 1px;
        background: linear-gradient(120deg, #7c3aed, #22d3ee, #7c3aed);
        background-size: 200% 200%;
        animation: borderGlow 6s linear infinite;
        -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        pointer-events: none;
    }

@keyframes borderGlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.nav-item .dropdown-menu,
.panels-dropdown .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(.98);
    pointer-events: none;
    transition: opacity .4s ease, transform .4s cubic-bezier(.22,1,.36,1), visibility 0s linear .7s; /* ⬅ stays "alive" longer */
}

.nav-item.dropdown::after,
.panels-dropdown::after {
    content: "";
    position: absolute;
    left: -20px;
    right: -20px;
    top: 100%;
    height: 36px; /* bigger invisible zone */
}

.dropdown-menu {
    top: 38px; /* bring closer to menu item */
}


/* Right side dropdown (Panels) */
.panels-dropdown .dropdown-menu {
    right: 0;
    left: auto;
}


.panels-dropdown {
    position: relative;
}

    .panels-dropdown .dropdown-menu {
        right: 0;
        left: auto;
        top: 42px;
        display: none;
    }

    .panels-dropdown:hover .dropdown-menu {
        display: flex;
    }

.dropdown-menu a {
    padding: 10px 12px;
    border-radius: 10px;
    color: #dcdcff;
    text-decoration: none;
    font-size: 14px;
    transition: background .2s ease;
}

    .dropdown-menu a:hover {
        background: rgba(255,255,255,.07);
        color: #fff;
    }



.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .logo img {
        height: 36px;
    }

.logo-text strong {
    font-size: 18px;
}

.logo-text span {
    font-size: 13px;
    opacity: .7;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu {
    display: flex;
    gap: 22px;
}

.nav-item {
    position: relative;
    color: #dcdcff;
    font-size: 14px;
    cursor: pointer;
}

    .nav-item:hover {
        color: #fff;
    }

.dropdown-menu {
    position: absolute;
    top: 38px;
    left: 0;
    background: linear-gradient(180deg,#0f0622,#1a0836);
    padding: 12px;
    border-radius: 16px;
    min-width: 230px;
    display: none;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

    .dropdown-menu a {
        color: #cfcfff;
        text-decoration: none;
        padding: 8px 10px;
        border-radius: 10px;
        font-size: 14px;
    }

        .dropdown-menu a:hover {
            background: rgba(255,255,255,0.07);
            color: #fff;
        }

.dropdown:hover .dropdown-menu {
    display: flex;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pill-btn {
    padding: 9px 16px;
    border-radius: 999px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.08);
}

    .pill-btn:hover {
        background: rgba(255,255,255,0.16);
    }

    .pill-btn.solid {
        background: linear-gradient(90deg,#7c3aed,#9333ea);
    }

        .pill-btn.solid:hover {
            filter: brightness(1.1);
        }

    .pill-btn.ghost {
        background: transparent;
        border: 1px solid rgba(255,255,255,0.2);
    }

.panels-dropdown {
    position: relative;
}

.right-menu {
    right: 0;
    left: auto;
}

.dropdown.open .dropdown-menu {
    display: flex;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
}

.logo-img {
    height: 32px;
}

.logo-text {
    color: #ffffff;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

    .logo-link:hover {
        opacity: 0.95;
    }


.nav-links a {
    position: relative;
    text-decoration: none;
    color: #cbd5f5;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 2px;
    transition: color 0.25s ease;
}

    .nav-links a:hover {
        color: #ffffff;
    }

    .nav-links a::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -8px;
        width: 0;
        height: 6px;
        background: #22c55e;
        filter: blur(12px);
        opacity: 0;
        transform: translateX(-50%);
        transition: width 0.35s ease, opacity 0.35s ease;
    }

    .nav-links a:hover::before {
        width: 100%;
        opacity: 0.9;
    }

    .nav-links a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #22c55e, #06b6d4);
        border-radius: 999px;
        transform: translateX(-50%);
        opacity: 0;
        transition: width 0.35s ease, opacity 0.35s ease;
        box-shadow: 0 0 8px rgba(34,197,94,1), 0 0 18px rgba(34,197,94,0.9), 0 0 32px rgba(34,197,94,0.7), 0 0 52px rgba(34,197,94,0.5);
    }

    .nav-links a:hover::after {
        width: 100%;
        opacity: 1;
    }

.services-btn-wrapper,
.support-btn-wrapper {
    position: relative;
}

.services-arrow,
.support-arrow {
    font-size: 10px;
    margin-left: 4px;
}

.services-dropdown {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 320px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #0b0f19, #020617);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(124,58,237,0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

.services-btn-wrapper:hover .services-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.service-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 14px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .service-card:hover {
        background: rgba(124,58,237,0.15);
        transform: translateX(6px);
    }

.service-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: rgba(124,58,237,0.25);
}

.service-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.service-text span {
    font-size: 12px;
    opacity: 0.7;
}

.support-dropdown {
    position: absolute;
    top: 48px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 280px;
    padding: 10px;
    border-radius: 14px;
    background: linear-gradient(180deg, #0b0f19, #020617);
    box-shadow: 0 30px 60px rgba(0,0,0,0.8), 0 0 40px rgba(124,58,237,0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 999;
}

.support-btn-wrapper:hover .support-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.support-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .support-card:hover {
        background: rgba(124,58,237,0.15);
        transform: translateX(6px);
    }

.support-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124,58,237,0.25);
    font-size: 16px;
}

.support-text strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.support-text span {
    font-size: 12px;
    opacity: 0.7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Panels */
.panel-btn-wrapper {
    position: relative;
}

.panel-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #e5e7eb;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

    .panel-btn:hover {
        background: rgba(255,255,255,0.14);
        box-shadow: 0 0 12px rgba(34,197,94,0.35), 0 0 28px rgba(34,197,94,0.2);
    }

.panel-arrow {
    font-size: 10px;
}

.dropdown-menu {
    position: absolute;
    top: 48px;
    right: 0;
    min-width: 200px;
    padding: 8px;
    border-radius: 12px;
    background: linear-gradient(180deg, #0f172a, #020617);
    box-shadow: 0 20px 40px rgba(0,0,0,0.7), 0 0 30px rgba(34,197,94,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.25s ease;
    z-index: 999;
}

.panel-btn-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    font-size: 13px;
    color: #e5e7eb;
    text-decoration: none;
    border-radius: 8px;
}

    .dropdown-menu a:hover {
        background: rgba(34,197,94,0.12);
    }

.discord-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 6px;
    background: #5865F2;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(88,101,242,0.45);
}

    .discord-btn:hover {
        background: #4752C4;
    }

    .discord-btn i {
        font-size: 15px;
    }

.services-dropdown,
.support-dropdown,
.dropdown-menu {
    z-index: 2000;
}


.services-btn-wrapper:hover > a::before,
.services-btn-wrapper:hover > a::after,
.support-btn-wrapper:hover > a::before,
.support-btn-wrapper:hover > a::after {
    opacity: 0;
}

.support-nav-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}

    .support-nav-card:hover {
        background: rgba(124,58,237,0.15);
        transform: translateX(6px);
    }

    .support-nav-card .support-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(124,58,237,0.25);
        font-size: 16px;
    }

    .support-nav-card strong {
        display: block;
        font-size: 14px;
        font-weight: 600;
    }

    .support-nav-card span {
        font-size: 12px;
        opacity: 0.7;
    }

.plan-calculator {
    padding: 100px 20px;
    background: radial-gradient(circle at 20% 30%, #0a0f2a, #050816 60%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

    .plan-calculator h2 {
        text-align: center;
        font-size: 36px;
        margin-bottom: 10px;
    }

        .plan-calculator h2 span {
            background: linear-gradient(90deg, #00f0ff, #7b2cff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

.calc-sub {
    text-align: center;
    color: #aaa;
    margin-bottom: 50px;
}

.calc-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 35px;
}

@media (max-width: 900px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
}

.preset-glass,
.select-glass,
.slider-glass,
.plugin-glass,
.worlds-glass,
.recommend-glass,
.calc-breakdown,
.price-estimate,
.tps-graph,
.purchase-cta {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 0 25px rgba(0,255,255,0.05);
    margin-bottom: 20px;
}

.preset-header,
.plugin-header,
.worlds-header,
.recommend-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #00f0ff;
}

.preset-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

    .preset-buttons button {
        padding: 10px;
        border-radius: 8px;
        border: none;
        background: linear-gradient(90deg, #111a3a, #0d1330);
        color: #fff;
        cursor: pointer;
        transition: 0.25s;
    }

        .preset-buttons button:hover {
            background: linear-gradient(90deg, #00f0ff, #7b2cff);
            transform: translateY(-2px);
        }

.select-glass-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.select-glass label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #bbb;
}

select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: none;
    background: #0d1330;
    color: white;
}

.slider-block {
    margin-bottom: 16px;
}

.slider-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .slider-row span {
        min-width: 35px;
        text-align: right;
        font-weight: 600;
        color: #00f0ff;
    }

input[type="range"] {
    flex: 1;
    accent-color: #00f0ff;
    cursor: pointer;
}

.slider-block.disabled {
    opacity: 0.4;
}

.toggle-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #bbb;
}

    .toggle-row input {
        accent-color: #7b2cff;
    }

.recommend-ram {
    font-size: 18px;
    margin-bottom: 10px;
}

.recommend-bar {
    height: 10px;
    background: #111a3a;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.recommend-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, #00f0ff, #7b2cff);
    box-shadow: 0 0 12px #00f0ff;
    transition: width 0.4s ease;
}

.recommend-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #aaa;
}

.safe {
    color: #00ff88;
}

.low {
    color: #00f0ff;
}

.price-estimate {
    font-size: 15px;
    line-height: 1.6;
}

    .price-estimate strong {
        color: #00f0ff;
    }


@keyframes tpsMove {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

.purchase-cta {
    text-align: center;
}

.purchase-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 22px;
    border-radius: 10px;
    background: linear-gradient(90deg, #00f0ff, #7b2cff);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.purchase-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 18px rgba(0,255,255,0.6);
}

.tps-graph {
    height: 60px;
    background: rgba(255,255,255,.05);
    border-radius: 12px;
    padding: 6px;
    margin-top: 14px;
    box-shadow: inset 0 0 12px rgba(0,0,0,.4);
}

.tps-svg {
    width: 100%;
    height: 100%;
}

#tpsPath {
    filter: drop-shadow(0 0 6px rgba(34,197,94,.6));
    transition: 0.4s ease;
}

.tps-graph {
    height: 70px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(20,20,40,.9), rgba(10,10,25,.9));
    padding: 10px;
    box-shadow: inset 0 0 25px rgba(0,0,0,.6);
    margin-top: 14px;
    position: relative;
}

.tps-svg {
    width: 100%;
    height: 100%;
}

#tpsPath {
    filter: drop-shadow(0 0 6px rgba(34,197,94,.5));
    transition: d .4s ease, filter .3s ease;
}

.tps-graph {
    margin-top: 18px;
    height: 90px;
    border-radius: 14px;
    background: linear-gradient(145deg,#0b0f1f,#0f1328);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 10px;
    overflow: hidden;
}

.tps-svg {
    width: 100%;
    height: 100%;
}

.tps-grid line {
    stroke: rgba(255,255,255,0.06);
    stroke-width: 1;
}

#tpsPath {
    filter: drop-shadow(0 0 6px rgba(0,255,150,0.4));
    transition: filter 0.3s ease;
}

.tps-label {
    position: absolute;
    top: 8px;
    right: 14px;
    font-size: 12px;
    font-weight: 700;
    color: #22c55e;
    background: rgba(0,0,0,0.35);
    padding: 4px 10px;
    border-radius: 999px;
    backdrop-filter: blur(6px);
    letter-spacing: .5px;
}
