* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: radial-gradient(1200px 700px at 15% 10%, rgba(90, 180, 255, 0.18), rgba(255, 255, 255, 0) 60%),
                radial-gradient(900px 600px at 90% 20%, rgba(0, 120, 255, 0.12), rgba(255, 255, 255, 0) 55%),
                linear-gradient(180deg, #f7fbff, #ffffff);
    color: #0b1b2b;
    line-height: 1.6;
}

.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Theme tokens */
:root {
    --bg: #ffffff;
    --ink: #0b1b2b;
    --muted: #5b6b7a;
    --line: rgba(12, 46, 77, 0.12);
    --card: rgba(255, 255, 255, 0.76);
    --shadow: 0 14px 40px rgba(10, 25, 45, 0.10);
    --shadow-soft: 0 10px 25px rgba(10, 25, 45, 0.08);
    --primary: #2f8cff;   /* light blue */
    --primary-2: #1f6fd4;
    --accent: #0aa6ff;
}

a { color: inherit; }

/* Header */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-title img {
    height: 52px;
    width: 52px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 8px 16px rgba(47, 140, 255, 0.18);
    border: 1px solid rgba(47, 140, 255, 0.22);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-name {
    font-weight: 750;
    letter-spacing: 0.2px;
}

.brand-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.top-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-nav a {
    text-decoration: none;
    color: var(--muted);
    padding: 10px 12px;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.top-nav a:hover {
    background: rgba(47, 140, 255, 0.10);
    color: var(--primary-2);
    transform: translateY(-1px);
}

.top-nav a.active {
    background: rgba(47, 140, 255, 0.16);
    color: var(--primary-2);
}

.nav-toggle {
    display: none;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
}

.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    border-radius: 99px;
}

.nav-toggle-bar + .nav-toggle-bar {
    margin-top: 5px;
}

/* Page layout */
.page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px;
}

.section {
    padding: 34px 0;
}

.section-head h2 {
    font-size: 28px;
    letter-spacing: -0.3px;
}

.section-head p {
    color: var(--muted);
    margin-top: 8px;
    max-width: 70ch;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: stretch;
    padding: 18px 0 26px;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.90), rgba(255,255,255,0.65));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(47, 140, 255, 0.12);
    color: var(--primary-2);
    border: 1px solid rgba(47, 140, 255, 0.20);
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 650;
}

.hero h1 {
    margin-top: 12px;
    font-size: 36px;
    letter-spacing: -0.8px;
    line-height: 1.12;
}

.hero p {
    margin-top: 10px;
    color: var(--muted);
    max-width: 62ch;
}

.hero-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-art {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    background: rgba(255,255,255,0.6);
}

.hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
}

/* Cards */
.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
}

.feature-graphic {
    padding: 12px;
}

.feature-graphic-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

/* Game Section */
.game-section {
    margin: 40px 0;
    padding: 20px 0;
}

.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.game-grid-compact {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.game-grid-compact .game-cover img {
    height: 250px;
    object-fit: cover;
}

.game-grid-compact .game-meta {
    padding: 12px;
}

.game-grid-compact .game-title {
    font-size: 15px;
}

.game-item {
    background: rgba(255,255,255,0.78);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.game-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: rgba(47, 140, 255, 0.25);
}

.game-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.game-cover img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.game-item:hover .game-cover img {
    transform: scale(1.03);
}

.game-item img {
    width: 100%;
    height: auto;
    display: block;
}

.game-meta {
    padding: 14px 14px 16px;
}

.game-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 12px;
}

.game-title {
    font-weight: 750;
    letter-spacing: -0.2px;
}

.pill {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid;
    white-space: nowrap;
}

.pill-live {
    background: rgba(47, 140, 255, 0.12);
    border-color: rgba(47, 140, 255, 0.25);
    color: var(--primary-2);
}

.pill-soon {
    background: rgba(11, 27, 43, 0.05);
    border-color: rgba(11, 27, 43, 0.10);
    color: var(--muted);
}

/* Contact Section */

.contact-card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    color: var(--primary-2);
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(47, 140, 255, 0.14);
}

/* Footer */
.main-footer {
    margin-top: auto;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,0.72);
    backdrop-filter: blur(10px);
}


.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--muted);
}

.main-footer a { color: var(--primary-2); text-decoration: none; }
.main-footer a:hover { text-decoration: underline; }

/* Privacy Page Styles */
.privacy {
    padding: 18px 0 10px;
}

.privacy h1 {
    color: var(--ink);
    font-size: 34px;
    letter-spacing: -0.7px;
    margin-bottom: 10px;
}

.privacy h3 {
    color: var(--ink);
    font-size: 18px;
    margin: 22px 0 10px;
}

.privacy ul {
    margin: 15px 0 15px 20px;
}

.privacy ul li {
    margin: 10px 0;
}

.privacy ul li a {
    color: var(--primary-2);
    text-decoration: none;
}

.privacy ul li a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 14px;
    border: 1px solid var(--line);
    text-decoration: none;
    font-weight: 750;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    user-select: none;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(47, 140, 255, 0.25);
}

.btn-primary {
    background: linear-gradient(180deg, rgba(47, 140, 255, 1), rgba(31, 111, 212, 1));
    color: #fff;
    border-color: rgba(47, 140, 255, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 14px 30px rgba(47, 140, 255, 0.25);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.65);
    color: var(--primary-2);
}

.btn-launch {
    width: 100%;
    background: rgba(47, 140, 255, 0.10);
    color: var(--primary-2);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 14px;
}

.btn-launch.disabled {
    opacity: 0.55;
    pointer-events: none;
}

.btn-icon {
    width: 16px;
    height: 16px;
    border-radius: 4px;
}

/* Forms */
.contact-form {
    display: block;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 750;
    color: var(--ink);
    margin-bottom: 6px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.85);
    padding: 12px 12px;
    font: inherit;
    color: var(--ink);
    outline: none;
    transition: box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 130px;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(47, 140, 255, 0.40);
    box-shadow: 0 0 0 6px rgba(47, 140, 255, 0.12);
}

.form-actions {
    margin-top: 14px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: 13px;
}

.form-note a {
    color: var(--primary-2);
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* Effects */
.reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-toggle { display: inline-flex; }
    .top-nav {
        position: absolute;
        top: 68px;
        right: 12px;
        left: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: rgba(255,255,255,0.92);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 10px;
        box-shadow: var(--shadow);
    }
    .top-nav.open { display: flex; }
    .hero { grid-template-columns: 1fr; }
    .hero h1 { font-size: 30px; }
    .hero-art { min-height: 160px; }
    .game-grid { grid-template-columns: 1fr; }
    .footer-inner { justify-content: center; text-align: center; }
}

/* Utility Classes */
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mb20 { margin-bottom: 20px !important; }
.text-center { text-align: center; }



