﻿@font-face {
    font-family: "InterTight";
    src: url("/fonts/InterTight-Medium.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Lora";
    src: url("/fonts/Lora-Regular.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "PokemonSolid";
    src: url("/fonts/Pokemon-Solid.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "UnownTCG";
    src: url("/fonts/UnownTCG.ttf") format("truetype");
    font-display: swap;
}

:root {
    --bg0: #06060a;
    --bg1: #0b0b13;
    --card: rgba(255,255,255,0.06);
    --card2: rgba(255,255,255,0.085);
    --stroke: rgba(255,255,255,0.12);
    --text: rgba(255,255,255,0.92);
    --muted: rgba(255,255,255,0.68);
    --yellow: #ffd400;
    --red: #ff2a3d;
    --red2: #ff0033;
    --shadow: 0 18px 60px rgba(0,0,0,0.55);
    --soft: 0 10px 20px rgba(0,0,0,0.35);
    --r12: 12px;
    --r16: 16px;
    --r22: 22px;
    --accent: #c9a227;
    --accent2: #b88d18;
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    color: rgba(255,255,255,0.92);
    background: linear-gradient(135deg, #05050a, #0b0b18, #1a0b10, #0a0a14);
    background-size: 400% 400%;
    background-attachment: fixed;
    animation: gradientShift 16s ease infinite;
    font-family: "Lora", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

h1, h2, h3 {
    font-family: "InterTight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

a {
    color: inherit;
}

    a:hover {
        color: var(--accent);
    }

.page {
    width: 100%;
    margin: 0 auto;
}

.brand-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    margin-bottom: 1.2rem;
    width: 100%;
}

.brand-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
}

.brand-logo {
    height: 56px;
    width: auto;
    margin: 0;
}

.brand-title {
    display: grid;
    justify-items: center;
    gap: 0.55rem;
}

.brand-main {
    margin: 0;
    font-family: "PokemonSolid","InterTight",system-ui,sans-serif;
    font-size: clamp(2.4rem,4vw,3.2rem);
    letter-spacing: -0.02em;
}

.brand-tagline {
    display: grid;
    justify-items: center;
    gap: 0.15rem;
}

.tagline-main {
    margin: 0;
    font-family: "InterTight",system-ui,sans-serif;
    font-size: clamp(1.25rem,2vw,1.7rem);
    color: rgba(255,255,255,0.74);
}

.brand-unown,
.tagline-unown {
    margin: 0;
    font-family: "UnownTCG","InterTight",system-ui,sans-serif;
    font-size: clamp(0.75rem,1.2vw,0.9rem);
    color: rgba(255,255,255,0.42);
    letter-spacing: 0.18em;
    line-height: 1.05;
}

/* --- Section base --- */
section {
    scroll-margin-top: 100px;
    margin: 3.25rem auto;
    padding: 2.25rem;
    max-width: 1200px;
    border-radius: var(--r22);
    border: 1px solid var(--stroke);
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.03));
    box-shadow: var(--soft);
    position: relative;
    overflow: hidden;
}

    section::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: radial-gradient(600px 180px at 30% 0%, rgba(255,212,0,0.15), transparent 70%), radial-gradient(700px 220px at 80% 30%, rgba(255,42,61,0.14), transparent 70%);
        pointer-events: none;
        opacity: 0.7;
    }

h1, h2, h3 {
    margin: 0;
}

h2 {
    font-size: 1.35rem;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.92);
}

/* --- Hero --- */
.landing-hero {
    max-width: 1400px;
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.14);
    background: radial-gradient(900px 350px at 15% 15%, rgba(255,212,0,0.22), transparent 60%), radial-gradient(900px 350px at 85% 25%, rgba(255,42,61,0.20), transparent 60%), linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

    /* animated “electric” sheen */
    .landing-hero::after {
        content: "";
        position: absolute;
        inset: -80px;
        background: linear-gradient(90deg, transparent 0%, rgba(255,212,0,0.08) 25%, rgba(255,42,61,0.08) 55%, transparent 80%);
        transform: rotate(12deg);
        animation: sheen 9s ease-in-out infinite;
        pointer-events: none;
        opacity: 0.9;
    }

@keyframes sheen {
    0% {
        transform: translateX(-10%) rotate(12deg);
    }

    50% {
        transform: translateX(10%) rotate(12deg);
    }

    100% {
        transform: translateX(-10%) rotate(12deg);
    }
}

.landing-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: center;
}

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

.landing-left {
    padding: 0.5rem;
}

.logo-title-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 12px rgba(255,212,0,0.25));
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(255,212,0,0.28);
    background: rgba(255,212,0,0.08);
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    width: fit-content;
    box-shadow: 0 0 24px rgba(255,212,0,0.10);
}

.landing-left h1 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    letter-spacing: -0.02em;
    margin-top: 0.65rem;
    text-shadow: 0 0 18px rgba(255,42,61,0.14);
}

.landing-left h2 {
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    color: var(--muted);
    margin-top: 0.4rem;
    margin-bottom: 1.2rem;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.80);
    line-height: 1.5;
    margin: 0 0 1.25rem 0;
    justify-self: center;
}

/* bullets */
.image-bullet-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0 0;
    display: grid;
    gap: 0.9rem;
}

    .image-bullet-list li {
        display: flex;
        align-items: center;
        gap: 0.85rem;
        padding: 0.9rem 1rem;
        border-radius: var(--r16);
        border: 1px solid rgba(255,255,255,0.11);
        background: rgba(0,0,0,1);
        box-shadow: 0 0 22px rgba(255,42,61,0.06);
    }

.bullet-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255,212,0,0.16));
}

.card-icon {
    width: 50px;
    height: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(255,212,0,0.16));
}

/* CTA row */
.cta-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.35rem;
}

.primary-button, .secondary-button {
    padding: 12px 18px;
    font-size: 1rem;
    border-radius: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    user-select: none;
}

.primary-button {
    background: linear-gradient(135deg, var(--red), var(--red2));
    color: white;
    box-shadow: 0 0 0 rgba(255,0,51,0.0), 0 14px 30px rgba(255,0,51,0.18);
}

    .primary-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 0 26px rgba(255,0,51,0.28), 0 18px 40px rgba(0,0,0,0.40);
    }

.secondary-button {
    background: rgba(255,212,0,0.06);
    border-color: rgba(255,212,0,0.35);
    color: rgba(255,255,255,0.88);
}

    .secondary-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 0 26px rgba(255,212,0,0.18);
        border-color: rgba(255,212,0,0.55);
    }

/* store badges */
.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}

.store-badge {
    width: 170px;
    height: auto;
    border-radius: 3px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.25);
    box-shadow: 0 10px 24px rgba(0,0,0,0.35);
    transition: transform 0.18s ease, box-shadow 0.2s ease;
}

    .store-badge:hover {
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 0 28px rgba(255,212,0,0.12), 0 18px 40px rgba(0,0,0,0.45);
    }

/* right image */
.landing-right {
    display: grid;
    place-items: center;
    padding: 0.5rem;
}

.screenshot-img {
    width: min(440px, 100%);
    height: auto;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 0 34px rgba(255,42,61,0.10), 0 26px 60px rgba(0,0,0,0.55);
    transform: translateZ(0);
}

/* feature grid cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
}

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

.features-item {
    border-radius: var(--r22);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,1);
    padding: 1.2rem;
    box-shadow: 0 0 26px rgba(255,212,0,0.06);
    position: relative;
    overflow: hidden;
    text-align: center;
}

    .features-item > a {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .features-item::before {
        content: "";
        position: absolute;
        inset: -1px;
        background: linear-gradient(135deg, rgba(255,212,0,0.10), transparent 40%), linear-gradient(315deg, rgba(255,42,61,0.10), transparent 45%);
        opacity: 0.7;
        pointer-events: none;
    }

    .features-item h3 {
        font-size: 1.1rem;
        margin-bottom: 0.85rem;
        color: rgba(255,255,255,0.92);
    }

.features-description {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.72);
    line-height: 1.45;
    margin-top: 0.85rem;
}

/* socials */
.social-img.clickable {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.14);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: transform 0.18s ease, box-shadow 0.2s ease;
}

    .social-img.clickable:hover {
        transform: translateY(-2px) scale(1.06);
        box-shadow: 0 0 24px rgba(255,212,0,0.12), 0 18px 40px rgba(0,0,0,0.55);
    }

/* footer */
.main-footer {
    max-width: 1200px;
    margin: 3.5rem auto 2rem auto;
    padding: 2.25rem;
    border-radius: var(--r22);
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,1);
    box-shadow: var(--soft);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 980px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}

.footer-column {
    display: grid;
    gap: 0.75rem;
}

    .footer-column a {
        text-decoration: none;
        color: rgba(255,255,255,0.70);
        transition: color 0.15s ease;
    }

        .footer-column a:hover {
            color: var(--yellow);
        }

.footer-bottom {
    align-self: center;
    justify-content: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
}

/* motion accessibility */
@media (prefers-reduced-motion: reduce) {
    .landing-hero::after {
        animation: none;
    }

    .store-badge, .primary-button, .secondary-button, .social-img.clickable {
        transition: none;
    }
}


.brand-lockup {
    display: block;
    margin: 0 auto 1.25rem auto;
    width: min(720px, 100%);
    height: auto;
}

.brand-lockup-small {
    display: block;
    margin: 0 auto 1.25rem auto;
    width: min(720px, 100%);
    height: auto;
}