body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #0b1120;
    color: white;
}

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.95);
    padding: 18px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.nav-links a:hover {
    color: #60a5fa;
}

/* Hero */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 42px;
}

.hero p {
    max-width: 700px;
    margin: auto;
    color: #cbd5e1;
}

/* Buttons */
.hero-buttons button,
.rank-card button {
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: bold;
    margin: 8px;
    transition: 0.3s;
}

.hero-buttons button:hover,
.rank-card button:hover {
    transform: translateY(-3px);
}

/* Headers */
.page-header {
    text-align: center;
    padding: 40px 20px;
}

.page-header p {
    color: #cbd5e1;
}

/* Grid */
.store-grid,
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 30px;
}

/* Cards */
.rank-card,
.feature-card,
.status-card {
    background: #111827;
    width: 260px;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    animation: fadeUp 0.8s ease;
}

.rank-card:hover,
.feature-card:hover,
.status-card:hover {
    transform: translateY(-8px);
}

/* Glow Effects */
.noble {
    box-shadow: 0 0 20px #22c55e;
}

.prime {
    box-shadow: 0 0 20px #3b82f6;
}

.god {
    box-shadow: 0 0 20px #f97316;
}

.deadlist {
    box-shadow: 0 0 20px #ef4444;
}

.legend {
    box-shadow: 0 0 20px #eab308;
}

.coins {
    box-shadow: 0 0 20px #06b6d4;
}

/* Prices */
.price {
    font-size: 32px;
    font-weight: bold;
}

/* Lists */
.rank-card ul {
    text-align: left;
    padding-left: 20px;
}

.rank-card li {
    margin-bottom: 10px;
}

/* Staff */
.staff-name {
    font-size: 24px;
    font-weight: bold;
}

/* Status */
.status-section {
    text-align: center;
    padding: 20px;
}

.status-card {
    margin: auto;
}

/* Footer */
footer {
    background: #111827;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .navbar {
    background: rgba(15, 23, 42, 0.95);
    padding: 15px;
    text-align: center;
}

.logo {
    font-size: 24px;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.nav-links a {
    margin: 0;
    font-size: 14px;
}

    .nav-links a {
        margin: 0 10px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .rank-card,
    .feature-card,
    .status-card {
        width: 90%;
    }
}

.staff-head {
    width: 80px;
    height: 80px;
    image-rendering: pixelated;
    margin: 15px 0 10px;
    border-radius: 12px;
}
/* AppleMC-Style Aurora Background */
body {
    background: #070b14;
    overflow-x: hidden;
    position: relative;
}

/* Aurora Layer 1 */
body::before {
    content: "";
    position: fixed;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background:
        radial-gradient(circle at 20% 30%, rgba(59,130,246,0.25), transparent 35%),
        radial-gradient(circle at 80% 20%, rgba(168,85,247,0.20), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(34,197,94,0.18), transparent 35%);
    filter: blur(80px);
    animation: auroraMove1 18s ease-in-out infinite alternate;
    z-index: -2;
    pointer-events: none;
}

/* Aurora Layer 2 */
body::after {
    content: "";
    position: fixed;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background:
        radial-gradient(circle at 70% 60%, rgba(14,165,233,0.18), transparent 30%),
        radial-gradient(circle at 30% 70%, rgba(99,102,241,0.15), transparent 30%);
    filter: blur(100px);
    animation: auroraMove2 22s ease-in-out infinite alternate;
    z-index: -3;
    pointer-events: none;
}

@keyframes auroraMove1 {
    0% {
        transform: translate(-5%, -5%) rotate(0deg);
    }

    100% {
        transform: translate(5%, 5%) rotate(8deg);
    }
}

@keyframes auroraMove2 {
    0% {
        transform: translate(5%, -3%) rotate(0deg);
    }

    100% {
        transform: translate(-5%, 4%) rotate(-8deg);
    }
}

/* Payment Popup */
.payment-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.payment-box {
    background: #111827;
    padding: 25px;
    border-radius: 18px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    box-shadow: 0 0 25px rgba(59,130,246,0.5);
    position: relative;
}

.payment-qr {
    width: 220px;
    max-width: 100%;
    border-radius: 12px;
    margin: 15px 0;
}

.close-btn {
    position: absolute;
    top: 12px;
    right: 15px;
    cursor: pointer;
    font-size: 22px;
}
.featured-badge {
    background: linear-gradient(45deg, #ff9800, #ff5722);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}
.floating-discord {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #5865F2;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(88,101,242,0.7);
    z-index: 9999;
    animation: discordPulse 2s infinite;
    transition: 0.3s;
}

.floating-discord img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
    animation: discordBounce 2s infinite;
}

.floating-discord:hover {
    transform: scale(1.15);
}

@keyframes discordPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(88,101,242,0.8);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(88,101,242,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(88,101,242,0);
    }
}

@keyframes discordBounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}
.hero {
    text-align: center;
    padding: 50px 20px 40px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.2);
    border: 1px solid orange;
    color: orange;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 42px;
    margin: 10px 0;
    line-height: 1.1;
}

.hero p {
    font-size: 16px;
    color: #cbd5e1;
    margin: 15px auto;
    max-width: 300px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 25px;
}

.hero-buttons button {
    width: 100%;
    max-width: 300px;
    margin: auto;
    padding: 14px;
    font-size: 15px;
    border-radius: 12px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.hero-stats div {
    background: rgba(255,255,255,0.05);
    padding: 15px 10px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-stats h2 {
    font-size: 22px;
    margin: 0;
    color: #60a5fa;
}

.hero-stats span {
    font-size: 12px;
    color: #cbd5e1;
}
.hero-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-nav a {
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.08);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.hero-nav a:hover {
    transform: translateY(-3px);
    background: rgba(96,165,250,0.25);
}
.hero-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 15px 0 25px;
}

.hero-nav a {
    text-decoration: none;
    color: white;
    background: rgba(255,255,255,0.08);
    padding: 10px 18px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-nav a:hover {
    transform: translateY(-3px);
}

/* Current page */
.hero-nav a.active {
    background: #3b82f6;
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(59,130,246,0.5);
}
.page-header {
    text-align: center;
    margin: 40px 20px;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.page-header p {
    color: #cbd5e1;
    font-size: 18px;
}
.floating-discord img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}