:root
        {
            --honey-yellow: #facc15;
            --honey-orange: #f59e0b;
            --dark-bg: #0f1115;
            --card-bg: #1a1d23;
            --text-main: #f8fafc;
            --text-muted: #94a3b8;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-main);
            overflow-x: hidden;
        }

        .pixel-font {
            font-family: 'Press Start 2P', cursive;
        }

        /* Navbar Styling */
        .navbar {
            background: rgba(26, 29, 35, 0.8) !important;
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(250, 204, 21, 0.1);
            padding: 1rem 0;
        }

        .nav-link {
            color: var(--text-main) !important;
            font-weight: 700;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: var(--honey-yellow) !important;
        }

        /* Hero Section */
        .hero {
            position: relative;
            padding: 160px 0 100px;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.85));
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url('../img/bg_bee.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            filter: brightness(0.6) blur(6px);
            z-index: 0;
        }
        .hero > * {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 900;
            line-height: 0.9;
            letter-spacing: -3px;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--honey-yellow), var(--honey-orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Card & Section Styling */
        .glass-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.3s ease;
            height: 100%;
        }

        .glass-card:hover {
            transform: translateY(-10px);
            border-color: rgba(250, 204, 21, 0.3);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        /* Shop Cards Specifics */
        .shop-card {
            border-bottom: 5px solid var(--honey-yellow);
        }

        .shop-card.elite {
            border-bottom: 5px solid #6366f1; /* Indigo accent for top rank */
            background: #8082ff;
            background: linear-gradient(321deg, rgba(128, 130, 255, 1) 0%, rgba(36, 0, 89, 1) 100%);
            transform: scale(1.03);
        }

        /* Staff Section */
        .staff-avatar {
            width: 80px;
            height: 80px;
            background: #2a2e35;
            border-radius: 15px;
            margin-bottom: 1rem;
            border: 2px solid var(--honey-yellow);
            image-rendering: pixelated;
        }

        /* IP Badge */
        .ip-badge {
            background: #000;
            color: var(--honey-yellow);
            border: 1px solid var(--honey-yellow);
            padding: 0.6rem 1.2rem;
            border-radius: 10px;
            font-size: 0.7rem;
            cursor: pointer;
            transition: all 0.2s;
        }

        .ip-badge:hover {
            background: var(--honey-yellow);
            color: #000;
        }

        /* Partner Logos */
        .partner-logo {
            filter: grayscale(1) brightness(0.8);
            opacity: 0.6;
            transition: all 0.3s;
            max-width: 140px;
        }

        .partner-logo:hover {
            filter: grayscale(0) brightness(1);
            opacity: 1;
        }

        .btn-honey {
            background: var(--honey-yellow);
            color: #000;
            font-weight: 900;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 12px;
            transition: all 0.3s;
        }

        .btn-honey:hover {
            background: var(--honey-orange);
            transform: scale(1.05);
        }

        .btn-outline-honey {
            border: 2px solid var(--honey-yellow);
            color: var(--honey-yellow);
            font-weight: 800;
            border-radius: 10px;
            transition: all 0.3s;
        }

        .btn-outline-honey:hover {
            background: var(--honey-yellow);
            color: #000;
        }

        /* Toast Styling */
        #toast {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--honey-yellow);
            color: #000;
            padding: 12px 30px;
            border-radius: 50px;
            font-weight: 800;
            z-index: 9999;
            display: none;
        }

        section {
            scroll-margin-top: 100px;
        }
        .ghast-image {
            /* animation popup when open page , and floating effect infinite */
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
            100% {
                transform: translateY(0);
            }
        }
/* modal buy rank */
 /* Modal Styles */
 .modal-content {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    color: var(--text-main);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 2rem 1rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem 2rem;
}

.form-control, .form-select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 12px;
}

.form-control:focus, .form-select:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--honey-yellow);
    color: white;
    box-shadow: none;
}

.form-control[readonly] {
    background: rgba(0, 0, 0, 0.2);
    border-color: transparent;
    color: var(--honey-yellow);
    font-weight: 800;
}

/* Stepper UI */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    position: relative;
}

.step-indicator::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
    transform: translateY(-50%);
}

.step-dot {
    width: 35px;
    height: 35px;
    background: var(--dark-bg);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    z-index: 2;
    transition: all 0.3s;
}

.step-dot.active {
    background: var(--honey-yellow);
    border-color: var(--honey-yellow);
    color: #000;
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

.step-dot.completed {
    background: var(--honey-orange);
    border-color: var(--honey-orange);
    color: #000;
}

/* ---------- head ----------------- */
        /* Head Display */
        .head-container {
            background: radial-gradient(circle, rgba(250, 204, 21, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            width: 120px;
            height: 120px;
            margin: 0 auto 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .head-img {
            width: 80px;
            image-rendering: pixelated;
            filter: drop-shadow(0 8px 12px rgba(0,0,0,0.5));
            transition: transform 0.3s ease;
        }

        .glass-card:hover .head-img { transform: scale(1.1) rotate(5deg); }

        .item-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--honey-yellow);
            color: #000;
            font-size: 0.65rem;
            font-weight: 900;
            padding: 3px 12px;
            border-radius: 50px;
            text-transform: uppercase;
        }

        /* Buttons */
        .btn-honey {
            background: var(--honey-yellow);
            color: #000;
            font-weight: 900;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 12px;
            transition: 0.3s;
        }
        /* ------------- end head------------ */
/* .card {
    position: relative;
    overflow: hidden;
}

#particles-card {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.card > *:not(#particles-card) {
    position: relative;
    z-index: 2;
} */

.king-rank{
    background: #96531c;
    background: linear-gradient(315deg, rgb(133, 72, 23) 0%, rgb(131, 97, 23) 100%);
}
.ghast-rank{
    width: 75%;
}
/* Small devices (sm) ≥576px */
@media (min-width: 576px) {}

/* Medium devices (md) ≥768px */
@media (min-width: 768px) {
    .ghast-rank{
        width: 100%;
    }
}

/* Large devices (lg) ≥992px */
@media (min-width: 992px) {}

/* Extra large devices (xl) ≥1200px */
@media (min-width: 1200px) {}

/* Extra extra large (xxl) ≥1400px */
@media (min-width: 1400px) {}
