:root {
    color-scheme: dark;
    --bg: #070b16;
    --surface: rgba(18, 27, 48, 0.96);
    --surface-strong: rgba(15, 22, 40, 0.96);
    --surface-muted: rgba(17, 29, 52, 0.9);
    --text: #f4f7ff;
    --muted: #9ab1d1;
    --accent: #5bb8ff;
    --accent-strong: #7dd2ff;
    --border: rgba(255, 255, 255, 0.08);
    --shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

* {
    box-sizing: border-box;
    cursor: none !important;
}

html, body {
    margin: 0;
    min-height: 100%;
    cursor: none !important;
}

body {
    position: relative;
    overflow-x: hidden;
    cursor: none;
    background: radial-gradient(circle at top left, rgba(91, 184, 255, 0.14), transparent 24%),
                linear-gradient(180deg, #070b16 0%, #051021 100%);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 0;
    background: radial-gradient(circle at 25% 20%, rgba(91, 184, 255, 0.18), transparent 18%),
                radial-gradient(circle at 80% 10%, rgba(126, 69, 255, 0.14), transparent 12%),
                radial-gradient(circle at 60% 80%, rgba(37, 142, 255, 0.12), transparent 16%);
    opacity: 0.9;
    pointer-events: none;
    animation: floatBackground 35s ease-in-out infinite alternate;
}

.page-shell {
    position: relative;
    z-index: 1;
}

@keyframes floatBackground {
    0% { transform: translate3d(0, 0, 0) scale(1); }
    100% { transform: translate3d(-40px, -20px, 0) scale(1.02); }
}

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

button, .btn {
    font: inherit;
}

.page-shell {
    max-width: 1120px;
    margin: 0 auto;
    padding: 18px 16px 32px;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 12px 0 24px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-logo {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    object-fit: cover;
    background: rgba(255,255,255,0.05);
    padding: 8px;
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.site-brand h1 {
    margin: 0;
    font-size: clamp(1.8rem, 2.2vw, 2.2rem);
    line-height: 1.05;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.site-nav a:hover {
    background: rgba(91, 184, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(91, 184, 255, 0.12);
}

.hero-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.85fr);
    gap: 18px;
    padding: 32px;
    border-radius: 28px;
    background: rgba(12, 18, 34, 0.92);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -30%;
    width: 65%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(91, 184, 255, 0.15), transparent 42%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-card h2 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 3.2vw, 3rem);
    line-height: 1.08;
}

.hero-card p {
    margin: 0 0 22px;
    max-width: 600px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.75;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.2s ease, background 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #081126;
}

.btn-secondary {
    background: rgba(255,255,255,0.07);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.08);
}

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

.hero-stats-card {
    display: grid;
    gap: 16px;
    padding: 24px;
    border-radius: 28px;
    background: rgba(10, 15, 29, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
}

.stats-heading {
    color: var(--muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 22px;
    padding: 20px;
    display: grid;
    gap: 10px;
}

.stat-card span {
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-card strong {
    font-size: 1.8rem;
    color: var(--text);
}

.overview-section {
    margin-top: 32px;
    display: grid;
    gap: 24px;
}

.overview-card {
    padding: 30px;
    border-radius: 30px;
    background: rgba(12, 18, 34, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 90px rgba(6, 10, 20, 0.16);
}

.overview-card .section-label {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.overview-card h3 {
    margin: 0 0 16px;
    font-size: clamp(1.7rem, 2.4vw, 2.4rem);
    line-height: 1.08;
}

.overview-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 22px;
    display: grid;
    gap: 12px;
}

.feature-card h4 {
    margin: 0;
    font-size: 1.1rem;
}

.feature-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 34px;
}

.updates-section {
    padding: 22px;
    border-radius: 24px;
    background: rgba(12, 18, 34, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.updates-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 20px;
}

.updates-controls {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.updates-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-chip {
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.filter-chip:hover {
    background: rgba(255,255,255,0.08);
}

.filter-chip.active {
    background: rgba(91, 184, 255, 0.18);
    border-color: rgba(91, 184, 255, 0.28);
    color: #b8e5ff;
}

.updates-header h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.1vw, 2rem);
}

.updates-header p {
    margin: 4px 0 0;
    color: var(--muted);
    max-width: 520px;
    line-height: 1.7;
}

.discord-section {
    margin-top: 32px;
}

.discord-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(8, 13, 27, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
}

.discord-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.discord-card-title span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 700;
}

.discord-card-title span::before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #5bb8ff 0%, rgba(91, 184, 255, 0.35) 100%);
}

.discord-card-title a {
    color: var(--text);
    background: rgba(255,255,255,0.07);
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.discord-card-title a:hover {
    transform: translateY(-2px);
    background: rgba(91, 184, 255, 0.16);
}

.discord-card-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 14px;
}

.discord-card-stats div {
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.discord-card-stats span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.discord-card-stats strong {
    display: block;
    font-size: 1.9rem;
    color: var(--text);
}


.discord-card-error {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255,80,80,0.08);
    border: 1px solid rgba(255,80,80,0.18);
    color: #ffb3b3;
}

.updates-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    max-height: 560px;
    min-height: 260px;
    overflow-y: auto;
    padding-right: 10px;
    touch-action: pan-y;
}

.updates-list::-webkit-scrollbar {
    width: 10px;
}

.updates-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.12);
    border-radius: 999px;
}

.updates-list::-webkit-scrollbar-track {
    background: transparent;
}

.news-card {
    scroll-snap-align: none;
}

.discord-section {
    margin-top: 28px;
}

.updates-section {
    opacity: 0;
    transform: translateY(16px);
    animation: appearUp 0.9s ease forwards;
}

@keyframes appearUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.news-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91,184,255,0.2);
    box-shadow: 0 20px 70px rgba(0,0,0,0.18);
}

.news-card-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 140px;
    max-height: 160px;
    background: rgba(255,255,255,0.03);
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.news-card-body {
    padding: 22px;
    display: grid;
    gap: 12px;
}

.news-card-title {
    margin: 0;
    font-size: 1.15rem;
}

.news-card-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: var(--muted);
    font-size: 0.92rem;
}

.news-card-text {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.news-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.news-card-title {
    margin: 0;
    font-size: 1.2rem;
}

.news-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.news-card-badge.badge-update {
    background: rgba(91, 184, 255, 0.18);
    color: #b0e3ff;
}

.news-card-badge.badge-hotfix {
    background: rgba(255, 120, 120, 0.18);
    color: #ffb3b3;
}

.news-card-footer {
    color: var(--muted);
    font-size: 0.92rem;
    margin-top: 12px;
}

.updates-loading,
.updates-empty,
.updates-error {
    padding: 28px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    color: var(--muted);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
}

.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}

.cursor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 0 16px rgba(91, 184, 255, 0.45);
}

.cursor-ring {
    width: 42px;
    height: 42px;
    border: 2px solid rgba(91, 184, 255, 0.55);
    border-radius: 50%;
    opacity: 1;
    transition: transform 0.2s ease, opacity 0.25s ease, border-color 0.25s ease;
}

.cursor-ring.active {
    transform: translate(-50%, -50%) scale(1.6);
    border-color: rgba(91, 184, 255, 0.9);
    opacity: 1;
}

.cursor-ring.hidden {
    opacity: 0.15;
}

.waitlist-card {
    padding: 28px;
    border-radius: 28px;
    background: rgba(12, 18, 34, 0.95);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow);
}

.waitlist-top h2 {
    margin: 0 0 10px;
    font-size: clamp(2rem, 2.5vw, 2.4rem);
}

.waitlist-top p {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.7;
}

.waitlist-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 22px;
}

.waitlist-position {
    font-size: 2rem;
    color: var(--accent);
}

.waitlist-form {
    display: grid;
    gap: 14px;
    margin-bottom: 24px;
}

.waitlist-form label {
    color: var(--muted);
    font-size: 0.95rem;
}

.waitlist-form input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.05);
    color: var(--text);
    font-size: 1rem;
}

.waitlist-form input:focus {
    outline: none;
    border-color: rgba(91, 184, 255, 0.7);
}

.waitlist-info {
    margin-bottom: 18px;
    color: var(--muted);
}

.waitlist-list {
    display: grid;
    gap: 12px;
}

.waitlist-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
}

.waitlist-item.active {
    background: rgba(91, 184, 255, 0.12);
    border-color: rgba(91, 184, 255, 0.3);
}

.waitlist-item-position {
    font-weight: 700;
    color: var(--accent);
    min-width: 36px;
}

.waitlist-item-name {
    color: var(--text);
    font-weight: 600;
}

.waitlist-item-time {
    color: var(--muted);
    font-size: 0.92rem;
}

.shop-header-card {
    padding: 28px 30px;
    margin-bottom: 28px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}

.shop-header-card h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.05;
}

.shop-header-card p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.75;
}

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

.shop-item-card {
    display: grid;
    gap: 18px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(15, 22, 40, 0.96);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.shop-item-card:hover {
    transform: translateY(-4px);
    border-color: rgba(91, 184, 255, 0.3);
    background: rgba(20, 30, 55, 0.98);
}

.shop-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.shop-item-top h3 {
    margin: 0;
    font-size: 1.3rem;
}

.shop-item-price {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(91, 184, 255, 0.12);
    color: var(--accent);
    font-weight: 700;
    font-size: 0.98rem;
    white-space: nowrap;
}

.shop-item-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.shop-item-card .btn {
    justify-self: start;
    margin-top: 8px;
}

.purchase-card {
    padding: 32px;
    border-radius: 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.2);
}

.purchase-top h2 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 3vw, 3rem);
}

.purchase-top p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.purchase-details {
    margin-top: 24px;
    display: grid;
    gap: 18px;
}

.purchase-price {
    font-size: 1.1rem;
    color: var(--text);
}

.purchase-features {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 12px;
}

.purchase-features li {
    padding: 14px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    color: var(--muted);
}

.purchase-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

@media (max-width: 992px) {
    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
}

.site-footer {
    margin-top: 40px;
    padding: 28px 0 10px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
}

.site-footer p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .hero-card,
    .overview-section,
    .updates-section {
        padding: 24px;
    }

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

    .updates-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-stats-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .page-shell {
        padding: 20px 16px 28px;
    }

    .site-header {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav {
        justify-content: center;
    }

    .updates-list {
        grid-template-columns: 1fr;
    }

    .hero-card, .updates-section, .overview-card {
        border-radius: 24px;
    }
}
