/* =========================================================
   ROOT COLORS
========================================================= */

:root {
    --primary: #FF5900;
    --primary-hover: #ff7b33;
    --primary-dark: #cc4700;

    --primary-rgb: 255, 89, 0;

    --text-muted: #b8c0d4;
}

/* =========================================================
   RESET
========================================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: Inter, Arial, sans-serif;
    scroll-behavior: smooth;
    background: #090b10;
    color: #ffffff;
}

body {
    min-height: 100vh;
    overflow-x: hidden;

    background:
        radial-gradient(circle at top left, rgba(var(--primary-rgb), 0.18), transparent 30%),
        radial-gradient(circle at bottom right, rgba(var(--primary-rgb), 0.10), transparent 30%),
        linear-gradient(180deg, #090b10 0%, #0d1118 100%);

    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);

    background-size: 40px 40px;

    pointer-events: none;
    z-index: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

main {
    padding: 0 80px;
    position: relative;
    z-index: 2;
}

/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0d1118;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 999px;
}

/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    width: 100%;
    padding: 28px 80px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    position: sticky;
    top: 0;
    z-index: 999;

    backdrop-filter: blur(18px);
    background: rgba(9,11,16,0.72);

    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: 2px;
}

.nav-logo span {
    display: block;
    font-size: 14px;
    margin-top: 3px;
    color: var(--primary);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    color: #c6cce0;
}

.nav-links a {
    position: relative;
    transition: 0.2s ease;
    font-weight: 500;
}

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

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -7px;
    left: 0;

    width: 0%;
    height: 2px;

    border-radius: 999px;

    background: var(--primary);

    transition: 0.25s ease;
}

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

.nav-actions {
    display: flex;
    gap: 14px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;

    border: none;
    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );

    color: white;

    font-weight: 700;
    cursor: pointer;

    transition: 0.25s ease;

    box-shadow:
        0 10px 30px rgba(var(--primary-rgb), 0.22);
}

.btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 20px 40px rgba(var(--primary-rgb), 0.35);
}

.btn.small {
    padding: 10px 18px;
    font-size: 14px;
}

.big-btn {
    padding: 18px 34px;
    font-size: 18px;
    border-radius: 18px;
}

.secondary-btn {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
}

.secondary-btn:hover {
    background: rgba(255,255,255,0.10);
}

.dark-btn {
    background: #11151d;
}

/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: calc(100vh - 120px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 90px;

    position: relative;
}

.hero::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    top: -250px;
    left: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--primary-rgb), 0.18),
            transparent 70%
        );

    z-index: -1;

    animation: pulseGlow 8s infinite alternate;
}

.hero-content {
    flex: 1;
    max-width: 900px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 18px;

    border-radius: 999px;

    background: rgba(var(--primary-rgb), 0.12);
    border: 1px solid rgba(var(--primary-rgb), 0.25);

    color: #ffd3bd;

    font-size: 14px;
    font-weight: 700;

    margin-bottom: 30px;
}

.hero h1 {
    margin: 0;

    font-size: 92px;
    line-height: 1.02;
    font-weight: 900;

    letter-spacing: -3px;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            #ff9b66
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin-top: 35px;

    max-width: 760px;

    font-size: 22px;
    line-height: 1.8;

    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;

    margin-top: 45px;
}

/* =========================================================
   HERO CARD
========================================================= */

.hero-card {
    width: 420px;

    padding: 40px;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(23,26,35,0.92),
            rgba(16,19,26,0.92)
        );

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(16px);

    box-shadow:
        0 20px 60px rgba(0,0,0,0.35);

    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: "";

    position: absolute;

    width: 240px;
    height: 240px;

    top: -90px;
    right: -90px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--primary-rgb), 0.24),
            transparent 70%
        );
}

.server-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 10px 16px;

    border-radius: 999px;

    background: rgba(71,209,108,0.12);

    color: #47d16c;
    font-weight: 700;
}

.status-dot {
    width: 10px;
    height: 10px;

    border-radius: 50%;

    background: #47d16c;

    box-shadow: 0 0 15px #47d16c;
}

.hero-card h2 {
    font-size: 42px;
    margin: 25px 0 10px;
}

.hero-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================================
   CARDS
========================================================= */

.stat-card,
.feature-card,
.rule-card,
.team-card,
.store-card,
.application-card,
.news-card,
.staff-compact-card {
    position: relative;
    overflow: hidden;

    padding: 30px;

    border-radius: 26px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);

    transition: 0.25s ease;
}

.stat-card:hover,
.feature-card:hover,
.rule-card:hover,
.team-card:hover,
.store-card:hover,
.application-card:hover,
.news-card:hover,
.staff-compact-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(var(--primary-rgb), 0.40);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.35);
}

.stat-card h3 {
    margin: 0;

    font-size: 52px;
    font-weight: 900;

    color: var(--primary);
}

.stat-card p,
.feature-card p,
.rule-card p,
.team-card p,
.store-card p,
.application-card p,
.news-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    margin: 80px;
    padding: 50px 0;

    border-top:
        1px solid rgba(255,255,255,0.06);

    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer p {
    max-width: 650px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;

    color: #c6cce0;
}

.footer-links a:hover {
    color: white;
}

/* =========================================================
   EFFECTS
========================================================= */

.reveal {
    opacity: 0;
    transform: translateY(40px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.cursor-glow {
    position: fixed;

    width: 420px;
    height: 420px;

    pointer-events: none;

    transform: translate(-50%, -50%);

    z-index: 0;

    background:
        radial-gradient(
            circle,
            rgba(var(--primary-rgb), 0.18) 0%,
            rgba(var(--primary-rgb), 0.08) 30%,
            transparent 70%
        );
}

@keyframes pulseGlow {

    from {
        transform: scale(1);
        opacity: 0.5;
    }

    to {
        transform: scale(1.2);
        opacity: 1;
    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media screen and (max-width: 1300px) {

    main,
    .navbar {
        padding-left: 30px;
        padding-right: 30px;
    }

    .hero {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
    }

    .hero-card {
        width: 100%;
    }

}

@media screen and (max-width: 1000px) {

    .nav-links {
        display: none;
    }

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

}

@media screen and (max-width: 768px) {

    main,
    .navbar {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

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

    .hero p {
        font-size: 17px;
    }

    .footer {
        margin: 30px 20px;
        flex-direction: column;
    }

}
/* =========================================================
   GRIDS
========================================================= */

.stats-grid,
.feature-grid,
.rules-grid,
.team-grid,
.store-grid,
.application-grid,
.staff-grid-compact,
.showcase-grid {
    display: grid;
    gap: 24px;
}

.stats-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 100px;
}

.feature-grid,
.rules-grid,
.team-grid,
.store-grid,
.application-grid {
    grid-template-columns: repeat(3, 1fr);
}

.staff-grid-compact {
    grid-template-columns: repeat(2, 1fr);
}

.showcase-grid {
    grid-template-columns: 2fr 1fr;
}

/* =========================================================
   HERO MINI STATS
========================================================= */

.hero-mini-stats {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.hero-mini-card {
    min-width: 150px;

    padding: 18px 20px;

    border-radius: 22px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(12px);
}

.hero-mini-card strong {
    display: block;

    font-size: 28px;
    font-weight: 900;

    color: var(--primary);
}

.hero-mini-card span {
    display: block;

    margin-top: 8px;

    color: var(--text-muted);

    font-size: 14px;
}

/* =========================================================
   HERO SERVER BOX
========================================================= */

.hero-server-box {
    display: grid;
    gap: 14px;

    margin-top: 28px;
    margin-bottom: 30px;
}

.hero-server-item {
    padding: 18px 20px;

    border-radius: 18px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);
}

.hero-server-item span {
    display: block;

    color: #9da6bd;

    font-size: 13px;

    margin-bottom: 8px;
}

.hero-server-item strong {
    font-size: 18px;
}

/* =========================================================
   SHOWCASE
========================================================= */

.showcase-card {
    position: relative;

    min-height: 260px;

    overflow: hidden;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(var(--primary-rgb), 0.10),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.06);

    padding: 35px;

    display: flex;
    align-items: flex-end;

    transition: 0.25s ease;
}

.showcase-card:hover {
    transform: translateY(-6px);
}

.showcase-card.large {
    min-height: 560px;
}

.showcase-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(0,0,0,0.45)
        );
}

.showcase-content {
    position: relative;
    z-index: 2;
}

.showcase-content span {
    display: inline-flex;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(var(--primary-rgb), 0.16);

    color: #ffd3bd;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 20px;
}

.showcase-content h3 {
    margin: 0 0 16px;

    font-size: 42px;
}

.showcase-content p {
    color: var(--text-muted);

    line-height: 1.8;
}

/* =========================================================
   STAFF
========================================================= */

.staff-compact-card {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 24px;
}

.staff-compact-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.staff-compact-avatar {
    width: 78px;
    height: 78px;

    border-radius: 50%;
    object-fit: cover;

    border: 3px solid rgba(var(--primary-rgb), 0.35);

    box-shadow:
        0 10px 25px rgba(var(--primary-rgb), 0.18);
}

.staff-compact-info h3 {
    margin: 0;
    font-size: 24px;
}

.staff-main-role {
    display: inline-block;

    margin-top: 10px;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(var(--primary-rgb), 0.14);

    color: #ffd3bd;

    font-size: 13px;
    font-weight: 700;
}

.staff-extra-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;

    margin-top: 12px;
}

.staff-extra-roles span {
    padding: 6px 10px;

    border-radius: 999px;

    background: rgba(255,255,255,0.05);

    border: 1px solid rgba(255,255,255,0.06);

    color: #c4cad8;

    font-size: 12px;
}

.staff-online-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    white-space: nowrap;

    padding: 10px 14px;

    border-radius: 999px;

    background: rgba(71,209,108,0.12);

    color: #47d16c;

    font-weight: 700;
}

/* =========================================================
   CTA
========================================================= */

.cta-section {
    margin-bottom: 100px;

    padding: 55px;

    border-radius: 36px;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--primary-hover)
        );

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    box-shadow:
        0 25px 60px rgba(var(--primary-rgb), 0.25);
}

.cta-section h2 {
    margin: 0 0 12px;
    font-size: 48px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,0.90);
}

.cta-buttons {
    display: flex;
    gap: 18px;
}

/* =========================================================
   APPLICATIONS
========================================================= */

.application-card.enhanced {
    position: relative;
    overflow: hidden;
}

.application-card.enhanced:hover {
    transform:
        translateY(-8px)
        scale(1.01);

    border-color:
        rgba(var(--primary-rgb), 0.40);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.35),
        0 0 50px rgba(var(--primary-rgb), 0.10);
}

.application-icon {
    font-size: 58px;
}

.application-status.open {
    background: rgba(71,209,108,0.12);
    color: #47d16c;
}

.application-status.limited {
    background: rgba(255,193,7,0.12);
    color: #ffc107;
}

.application-status.closed {
    background: rgba(255,70,70,0.12);
    color: #ff4646;
}

/* =========================================================
   RESPONSIVE EXTRA
========================================================= */

@media screen and (max-width: 1200px) {

    .showcase-grid {
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width: 768px) {

    .stats-grid,
    .feature-grid,
    .rules-grid,
    .team-grid,
    .store-grid,
    .application-grid,
    .staff-grid-compact,
    .showcase-grid {
        grid-template-columns: 1fr;
    }

    .staff-compact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .staff-online-status {
        width: 100%;
        justify-content: center;
    }

    .cta-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px;
    }

}

/* =========================================================
   APV PAGE
========================================================= */

.apv-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.apv-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

    padding: 24px 28px;

    border-radius: 24px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);
}

.apv-topbar-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.apv-topbar h2 {
    margin: 0;
    font-size: 32px;
}

.apv-topbar p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.7;
}

.apv-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* =========================================================
   APV CONTAINER
========================================================= */

.apv-container {
    position: relative;

    width: 100%;
    height: calc(100vh - 240px);

    overflow: hidden;

    border-radius: 32px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.35);
}

.apv-container::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    top: -160px;
    right: -160px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--primary-rgb), 0.20),
            transparent 70%
        );

    pointer-events: none;

    z-index: 1;
}

.apv-frame {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    border: none;

    background: #11151d;
}

/* =========================================================
   APV SIDEBAR / QUICK NAV
========================================================= */

.apv-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
}

.apv-sidebar {
    position: sticky;
    top: 120px;

    height: fit-content;

    padding: 28px;

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);
}

.apv-sidebar h3 {
    margin-top: 0;
    margin-bottom: 24px;

    font-size: 24px;
}

.apv-sidebar-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.apv-sidebar-links a {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    border-radius: 16px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.04);

    color: #d7dcef;

    transition: 0.25s ease;
}

.apv-sidebar-links a:hover {
    transform: translateX(6px);

    background:
        rgba(var(--primary-rgb), 0.12);

    border-color:
        rgba(var(--primary-rgb), 0.25);

    color: white;
}

/* =========================================================
   APV CARDS
========================================================= */

.apv-card {
    padding: 35px;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);

    margin-bottom: 24px;
}

.apv-card h3 {
    margin-top: 0;
    margin-bottom: 20px;

    font-size: 32px;
}

.apv-card p {
    color: var(--text-muted);
    line-height: 1.8;
}

.apv-rule-list {
    display: flex;
    flex-direction: column;
    gap: 18px;

    margin-top: 30px;
}

.apv-rule-item {
    padding: 18px 20px;

    border-radius: 18px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.04);
}

.apv-rule-item strong {
    display: block;

    margin-bottom: 8px;

    font-size: 17px;
}

.apv-rule-item span {
    color: var(--text-muted);
    line-height: 1.7;
}

/* =========================================================
   APV STATUS BOXES
========================================================= */

.apv-warning,
.apv-danger,
.apv-success {
    padding: 18px 22px;

    border-radius: 18px;

    margin-top: 24px;

    font-weight: 600;
    line-height: 1.7;
}

.apv-warning {
    background: rgba(255,193,7,0.12);
    border: 1px solid rgba(255,193,7,0.18);
    color: #ffc107;
}

.apv-danger {
    background: rgba(255,70,70,0.12);
    border: 1px solid rgba(255,70,70,0.18);
    color: #ff6868;
}

.apv-success {
    background: rgba(71,209,108,0.12);
    border: 1px solid rgba(71,209,108,0.18);
    color: #47d16c;
}

/* =========================================================
   RESPONSIVE APV
========================================================= */

@media screen and (max-width: 1200px) {

    .apv-layout {
        grid-template-columns: 1fr;
    }

    .apv-sidebar {
        position: relative;
        top: 0;
    }

}

@media screen and (max-width: 768px) {

    .apv-container {
        height: 70vh;
    }

    .apv-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .apv-actions {
        width: 100%;
    }

    .apv-actions .btn {
        width: 100%;
    }

    .apv-card {
        padding: 24px;
    }

    .apv-card h3 {
        font-size: 26px;
    }

}

/* =========================================================
   NEWS SECTION
========================================================= */

.news-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.news-card {
    position: relative;
    overflow: hidden;

    min-height: 260px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    padding: 32px;

    border-radius: 28px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);

    transition: 0.25s ease;
}

.news-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(var(--primary-rgb), 0.30);

    box-shadow:
        0 25px 50px rgba(0,0,0,0.35);
}

.news-card::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: -120px;
    right: -120px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--primary-rgb), 0.18),
            transparent 70%
        );

    pointer-events: none;
}

.news-card span {
    display: inline-flex;
    width: fit-content;

    padding: 8px 14px;

    border-radius: 999px;

    background:
        rgba(var(--primary-rgb), 0.14);

    border:
        1px solid rgba(var(--primary-rgb), 0.24);

    color: #ffd3bd;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 18px;
}

.news-card h3 {
    margin: 0 0 14px;

    font-size: 30px;
    line-height: 1.2;
}

.news-card p {
    margin: 0;

    color: var(--text-muted);

    line-height: 1.8;
}

/* =========================================================
   APPLICATION PAGE
========================================================= */

.application-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.application-card.enhanced {
    position: relative;
    overflow: hidden;

    padding: 34px;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);

    transition: 0.25s ease;
}

.application-card.enhanced:hover {
    transform:
        translateY(-8px)
        scale(1.01);

    border-color:
        rgba(var(--primary-rgb), 0.40);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.35),
        0 0 50px rgba(var(--primary-rgb), 0.10);
}

.application-glow {
    position: absolute;

    width: 260px;
    height: 260px;

    top: -140px;
    right: -140px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--primary-rgb), 0.16),
            transparent 70%
        );

    pointer-events: none;
}

.application-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 24px;
}

.application-icon {
    font-size: 58px;

    filter:
        drop-shadow(
            0 10px 25px rgba(var(--primary-rgb), 0.25)
        );

    transition: 0.25s ease;
}

.application-card.enhanced:hover .application-icon {
    transform: scale(1.08);
}

.application-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 15px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

.application-status.open {
    background: rgba(71,209,108,0.12);
    color: #47d16c;
    border: 1px solid rgba(71,209,108,0.18);
}

.application-status.limited {
    background: rgba(255,193,7,0.12);
    color: #ffc107;
    border: 1px solid rgba(255,193,7,0.18);
}

.application-status.closed {
    background: rgba(255,70,70,0.12);
    color: #ff6868;
    border: 1px solid rgba(255,70,70,0.18);
}

.application-card.enhanced h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 18px;

    font-size: 34px;
}

.application-card.enhanced p {
    position: relative;
    z-index: 2;

    color: var(--text-muted);

    line-height: 1.8;
}

.application-block {
    position: relative;
    z-index: 2;

    margin: 28px 0;
}

.application-block h4 {
    margin-bottom: 14px;

    font-size: 16px;
    font-weight: 800;

    color: white;
}

.application-block ul {
    margin: 0;
    padding-left: 20px;
}

.application-block li {
    margin-bottom: 10px;

    color: var(--text-muted);

    line-height: 1.7;
}

.application-card.enhanced .btn {
    position: relative;
    z-index: 2;

    width: 100%;
    margin-top: 10px;
}

/* =========================================================
   RESPONSIVE NEWS & APPLICATIONS
========================================================= */

@media screen and (max-width: 1200px) {

    .news-list,
    .application-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 768px) {

    .news-list,
    .application-grid {
        grid-template-columns: 1fr;
    }

    .application-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .application-icon {
        font-size: 48px;
    }

    .application-card.enhanced h3 {
        font-size: 28px;
    }

    .news-card {
        min-height: auto;
    }

}
/* =========================================================
   STORE PAGE
========================================================= */

.store-hero {
    margin-bottom: 80px;
}

.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.store-card {
    position: relative;
    overflow: hidden;

    padding: 34px;

    border-radius: 30px;

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.05),
            rgba(255,255,255,0.025)
        );

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(16px);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.store-card:hover {
    transform:
        translateY(-8px)
        scale(1.015);

    border-color: rgba(255,89,0,0.40);

    box-shadow:
        0 30px 60px rgba(0,0,0,0.35),
        0 0 40px rgba(255,89,0,0.12);
}

.store-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    top: -140px;
    right: -140px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,89,0,0.20),
            transparent 70%
        );

    pointer-events: none;
}

.store-card.featured {
    background:
        linear-gradient(
            180deg,
            rgba(255,89,0,0.16),
            rgba(255,255,255,0.03)
        );

    border-color: rgba(255,89,0,0.35);

    box-shadow:
        0 25px 60px rgba(255,89,0,0.14);
}

.store-card-top {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 26px;
}

.store-icon {
    font-size: 48px;
    filter:
        drop-shadow(
            0 10px 20px rgba(255,89,0,0.22)
        );
}

.store-badge {
    display: inline-flex;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(255,89,0,0.14);

    border: 1px solid rgba(255,89,0,0.22);

    color: #ffb183;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

.store-card h3 {
    position: relative;
    z-index: 2;

    margin: 0 0 18px;

    font-size: 34px;
    line-height: 1.1;
}

.store-card p {
    position: relative;
    z-index: 2;

    color: #b8c0d4;

    line-height: 1.8;

    margin-bottom: 28px;
}

.store-tags {
    position: relative;
    z-index: 2;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 30px;
}

.store-tags span {
    padding: 8px 12px;

    border-radius: 999px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    color: #c7cfe2;

    font-size: 12px;
    font-weight: 600;
}

.store-card .btn {
    position: relative;
    z-index: 2;

    width: 100%;
}

.store-info-grid {
    margin-top: 90px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.store-info-card {
    padding: 30px;

    border-radius: 28px;

    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(14px);
}

.store-info-card h4 {
    margin-top: 0;
    margin-bottom: 18px;

    font-size: 24px;
}

.store-info-card p {
    color: #b8c0d4;
    line-height: 1.8;
}

.store-feature-list {
    margin-top: 20px;

    display: flex;
    flex-direction: column;
    gap: 14px;
}

.store-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 14px 16px;

    border-radius: 16px;

    background: rgba(255,255,255,0.03);

    border: 1px solid rgba(255,255,255,0.05);

    color: #d9dfec;
}

.store-feature-item::before {
    content: "✓";

    color: #ff5900;
    font-weight: 900;
}

/* =========================================================
   STORE RESPONSIVE
========================================================= */

@media screen and (max-width: 1200px) {

    .store-grid,
    .store-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media screen and (max-width: 768px) {

    .store-grid,
    .store-info-grid {
        grid-template-columns: 1fr;
    }

    .store-card {
        padding: 28px;
    }

    .store-card h3 {
        font-size: 28px;
    }

}

/* =========================================================
   PAGE / SECTION FIXES
========================================================= */

.page {
    padding-top: 70px;
    padding-bottom: 100px;
    min-height: 100vh;
}

.section {
    margin-bottom: 100px;
}

.section-header,
.page-header {
    max-width: 850px;
    margin-bottom: 50px;
}

.section-header h2,
.page-header h1 {
    margin: 0 0 18px;

    font-size: 64px;
    line-height: 1.05;
}

.page-header h1 span,
.section-header h2 span {
    background:
        linear-gradient(
            135deg,
            var(--primary),
            #ffb183
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p,
.page-header p {
    color: var(--text-muted);
    font-size: 20px;
    line-height: 1.8;
}

/* =========================================================
   STORE HERO
========================================================= */

.store-hero {
    position: relative;

    overflow: hidden;

    margin-bottom: 100px;

    padding: 70px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            rgba(255,89,0,0.12),
            rgba(255,255,255,0.02)
        );

    border: 1px solid rgba(255,255,255,0.06);

    backdrop-filter: blur(18px);
}

.store-hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -250px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,89,0,0.25),
            transparent 70%
        );
}

.store-hero-content {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* =========================================================
   PREMIUM SHOWCASE
========================================================= */

.premium-showcase {
    position: relative;

    overflow: hidden;

    padding: 45px;

    border-radius: 34px;

    background:
        linear-gradient(
            180deg,
            rgba(255,89,0,0.18),
            rgba(255,255,255,0.03)
        );

    border: 1px solid rgba(255,89,0,0.25);

    box-shadow:
        0 30px 70px rgba(255,89,0,0.16);
}

.premium-glow {
    position: absolute;

    width: 280px;
    height: 280px;

    top: -140px;
    right: -140px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.28),
            transparent 70%
        );
}

.premium-label {
    position: relative;
    z-index: 2;

    display: inline-flex;

    padding: 10px 16px;

    border-radius: 999px;

    background: rgba(255,255,255,0.16);

    color: white;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 24px;
}

.premium-showcase h2 {
    position: relative;
    z-index: 2;

    margin: 0;

    font-size: 82px;
    line-height: 1;
}

.premium-showcase p {
    position: relative;
    z-index: 2;

    margin-top: 20px;
    margin-bottom: 30px;

    color: rgba(255,255,255,0.90);

    line-height: 1.8;
}

.premium-features {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    gap: 14px;

    margin-bottom: 35px;
}

.premium-feature {
    padding: 14px 18px;

    border-radius: 18px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.10);

    font-weight: 600;
}

/* =========================================================
   STORE IMAGE
========================================================= */

.store-image {
    position: absolute;
    inset: 0;

    opacity: 0.16;

    background-size: cover;
    background-position: center;

    transition: 0.3s ease;
}

.store-card:hover .store-image {
    transform: scale(1.05);
    opacity: 0.22;
}

.store-card-content {
    position: relative;
    z-index: 2;
}

/* =========================================================
   STORE LABEL
========================================================= */

.store-label {
    display: inline-flex;

    padding: 8px 14px;

    border-radius: 999px;

    background: rgba(255,89,0,0.14);

    border: 1px solid rgba(255,89,0,0.24);

    color: #ffb183;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;
}

/* =========================================================
   BACKGROUND IMAGES
========================================================= */

.gold-bg {
    background-image:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.2),
            rgba(0,0,0,0.75)
        ),
        url('../img/store/gold.jpg');
}

.bungalow-bg {
    background-image:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.2),
            rgba(0,0,0,0.75)
        ),
        url('../img/store/bungalow.jpg');
}

.coins-bg {
    background-image:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.2),
            rgba(0,0,0,0.75)
        ),
        url('../img/store/coins.jpg');
}

.vehicles-bg {
    background-image:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.2),
            rgba(0,0,0,0.75)
        ),
        url('../img/store/vehicles.jpg');
}

.giveaway-bg {
    background-image:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.2),
            rgba(0,0,0,0.75)
        ),
        url('../img/store/giveaway.jpg');
}

.premium-bg {
    background-image:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.2),
            rgba(0,0,0,0.75)
        ),
        url('../img/store/premium.jpg');
}

/* =========================================================
   RESPONSIVE STORE FIX
========================================================= */

@media screen and (max-width: 1200px) {

    .store-hero-content {
        grid-template-columns: 1fr;
    }

}

@media screen and (max-width: 768px) {

    .store-hero {
        padding: 35px;
    }

    .premium-showcase {
        padding: 30px;
    }

    .premium-showcase h2 {
        font-size: 58px;
    }

    .section-header h2,
    .page-header h1 {
        font-size: 42px;
    }

}

/* =========================================================
   GLOBAL MOBILE OPTIMIZATION
========================================================= */

@media screen and (max-width: 768px) {

    /* =========================
       GLOBAL
    ========================= */

    html,
    body {
        overflow-x: hidden;
    }

    main {
        padding-left: 18px;
        padding-right: 18px;
    }

    .page {
        padding-top: 40px;
        padding-bottom: 70px;
    }

    /* =========================
       NAVBAR
    ========================= */

    .navbar {
        padding: 18px;
        gap: 18px;

        flex-direction: column;
        align-items: flex-start;
    }

    .nav-logo {
        font-size: 28px;
    }

    .nav-logo span {
        font-size: 12px;
    }

    .nav-links {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        gap: 16px;
    }

    .nav-actions {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 12px;
    }

    .nav-actions .btn {
        width: 100%;
    }

    /* =========================
       HERO
    ========================= */

    .hero {
        min-height: auto;

        flex-direction: column;
        align-items: flex-start;

        gap: 40px;

        padding-top: 30px;
    }

    .hero-content,
    .hero-card {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.08;
        letter-spacing: -1px;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.7;
        margin-top: 24px;
    }

    .badge {
        font-size: 12px;
        padding: 10px 14px;
    }

    .hero-buttons {
        width: 100%;

        flex-direction: column;

        gap: 14px;

        margin-top: 30px;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    /* =========================
       HERO MINI STATS
    ========================= */

    .hero-mini-stats {
        width: 100%;

        display: grid;
        grid-template-columns: 1fr 1fr;

        gap: 14px;
    }

    .hero-mini-card {
        min-width: auto;

        padding: 16px;
        border-radius: 18px;
    }

    .hero-mini-card strong {
        font-size: 24px;
    }

    .hero-mini-card span {
        font-size: 13px;
    }

    /* =========================
       HERO CARD
    ========================= */

    .hero-card {
        padding: 28px;
        border-radius: 26px;
    }

    .hero-card h2 {
        font-size: 34px;
    }

    .quick-actions {
        width: 100%;

        display: flex;
        flex-direction: column;

        gap: 12px;
    }

    .quick-actions .btn {
        width: 100%;
    }

    /* =========================
       PAGE HEADERS
    ========================= */

    .section-header,
    .page-header {
        margin-bottom: 35px;
    }

    .section-header h2,
    .page-header h1 {
        font-size: 38px;
        line-height: 1.08;
    }

    .section-header p,
    .page-header p {
        font-size: 16px;
        line-height: 1.7;
    }

    /* =========================
       GRIDS
    ========================= */

    .stats-grid,
    .feature-grid,
    .rules-grid,
    .team-grid,
    .store-grid,
    .application-grid,
    .staff-grid-compact,
    .news-list,
    .showcase-grid,
    .store-info-grid {
        grid-template-columns: 1fr;
    }

    /* =========================
       CARDS
    ========================= */

    .stat-card,
    .feature-card,
    .rule-card,
    .team-card,
    .store-card,
    .application-card,
    .news-card,
    .staff-compact-card,
    .showcase-card,
    .store-info-card {
        padding: 24px;
        border-radius: 24px;
    }

    .stat-card h3 {
        font-size: 40px;
    }

    .feature-card h3,
    .rule-card h3,
    .team-card h3,
    .store-card h3,
    .application-card h3,
    .news-card h3 {
        font-size: 28px;
    }

    /* =========================
       STAFF
    ========================= */

    .staff-compact-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .staff-online-status {
        width: 100%;
        justify-content: center;
    }

    .staff-compact-avatar {
        width: 64px;
        height: 64px;
    }

    /* =========================
       SHOWCASE
    ========================= */

    .showcase-card.large {
        min-height: 320px;
    }

    .showcase-card {
        min-height: 240px;
    }

    .showcase-content h3 {
        font-size: 30px;
    }

    /* =========================
       STORE
    ========================= */

    .store-card {
        padding: 24px;
    }

    .store-card h3 {
        font-size: 28px;
    }

    .store-card-top {
        margin-bottom: 18px;
    }

    .store-icon {
        font-size: 38px;
    }

    /* =========================
       NEWS
    ========================= */

    .news-card {
        min-height: auto;
    }

    .news-card h3 {
        font-size: 26px;
    }

    /* =========================
       APPLICATIONS
    ========================= */

    .application-top {
        flex-direction: row;
        align-items: center;
    }

    .application-icon {
        font-size: 42px;
    }

    .application-card.enhanced h3 {
        font-size: 28px;
    }

    /* =========================
       CTA
    ========================= */

    .cta-section {
        flex-direction: column;
        align-items: flex-start;

        padding: 30px;

        border-radius: 28px;
    }

    .cta-section h2 {
        font-size: 34px;
    }

    .cta-section p {
        font-size: 15px;
    }

    .cta-buttons {
        width: 100%;

        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    /* =========================
       APV
    ========================= */

    .apv-layout {
        grid-template-columns: 1fr;
    }

    .apv-sidebar {
        position: relative;
        top: 0;

        padding: 22px;
    }

    .apv-container {
        height: 70vh;
        border-radius: 24px;
    }

    .apv-card {
        padding: 24px;
    }

    .apv-card h3 {
        font-size: 26px;
    }

    /* =========================
       FOOTER
    ========================= */

    .footer {
        margin: 20px 18px;

        flex-direction: column;

        gap: 24px;
    }

    .footer-links {
        gap: 14px;
    }

}
/* =========================================================
   MOBILE HEADER FIX
========================================================= */

@media screen and (max-width: 768px) {

    .navbar {
        position: sticky;
        top: 0;

        padding: 14px 18px;

        flex-direction: row;
        justify-content: space-between;
        align-items: center;

        gap: 12px;

        background: rgba(9,11,16,0.92);

        backdrop-filter: blur(18px);

        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-logo {
        font-size: 24px;
        line-height: 1;
    }

    .nav-logo span {
        font-size: 10px;
        letter-spacing: 2px;

        margin-top: 4px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        width: auto;

        flex-direction: row;
        align-items: center;

        gap: 10px;
    }

    .nav-actions .btn {
        width: auto;

        padding: 10px 14px;

        font-size: 13px;

        border-radius: 12px;
    }

}