:root {
    --cor-fundo: #06060c;
    --cor-superficie: #10101b;
    --cor-superficie-forte: #151526;
    --cor-superficie-alt: #1b1030;
    --cor-texto: #fff7b8;
    --cor-texto-suave: #f4eaff;
    --cor-borda: rgba(255, 98, 214, 0.35);
    --cor-destaque: #ff6a00;
    --cor-destaque-escura: #ff3d81;
    --cor-rosa: #ff4fcf;
    --cor-azul: #22b8ff;
    --cor-amarelo: #fff46a;
    --largura-site: 1120px;
    --sombra-card: 0 0 0 1px rgba(255, 98, 214, 0.16), 0 26px 64px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    position: relative;
    margin: 0;
    font-family: "Trebuchet MS", Verdana, sans-serif;
    color: var(--cor-texto);
    background:
        radial-gradient(circle at 14% 10%, rgba(255, 79, 207, 0.34), transparent 18%),
        radial-gradient(circle at 84% 12%, rgba(34, 184, 255, 0.28), transparent 22%),
        radial-gradient(circle at 50% 28%, rgba(111, 0, 255, 0.16), transparent 30%),
        radial-gradient(circle at 18% 74%, rgba(255, 106, 0, 0.18), transparent 26%),
        radial-gradient(circle at 82% 78%, rgba(255, 79, 207, 0.18), transparent 24%),
        linear-gradient(180deg, #0b0915 0%, #06060d 44%, #04040a 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}
body::before,
body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
}
body::before {
    opacity: 0.42;
    background:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.9), transparent 92%);
}
body::after {
    background:
        radial-gradient(circle at 50% 0%, rgba(34, 184, 255, 0.1), transparent 38%),
        radial-gradient(circle at 50% 100%, rgba(255, 106, 0, 0.08), transparent 34%),
        linear-gradient(180deg, rgba(4, 4, 8, 0) 0%, rgba(2, 2, 5, 0.28) 100%);
}
img { max-width: 100%; display: block; }
a { color: var(--cor-amarelo); }
.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
    background: rgba(8, 8, 16, 0.82);
    border-bottom: 1px solid rgba(34, 184, 255, 0.28);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
.header-inner, .site-footer__inner, .site-main, .hero, .section, .util-page {
    width: min(var(--largura-site), calc(100% - 32px));
    margin: 0 auto;
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #fff;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand strong { display: block; font-size: 1.1rem; color: var(--cor-amarelo); text-shadow: 0 0 14px rgba(255, 244, 106, 0.32); }
.brand span { display: block; font-size: 0.88rem; color: #f6d7ff; }
.menu {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.menu a {
    text-decoration: none;
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 0.95rem;
    transition: 0.2s ease;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
}
.menu a:hover, .menu a.ativo {
    background: linear-gradient(90deg, var(--cor-rosa) 0%, var(--cor-destaque) 48%, var(--cor-azul) 100%);
    color: #06060c;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 0 18px rgba(255, 79, 207, 0.35);
}
.site-main { padding: 28px 0 56px; }
.site-main::before {
    content: "";
    position: fixed;
    left: 50%;
    top: 120px;
    width: min(1200px, calc(100vw - 48px));
    height: calc(100vh - 160px);
    transform: translateX(-50%);
    border-radius: 36px;
    pointer-events: none;
    z-index: -1;
    background:
        radial-gradient(circle at top left, rgba(255, 79, 207, 0.08), transparent 24%),
        radial-gradient(circle at top right, rgba(34, 184, 255, 0.08), transparent 26%),
        radial-gradient(circle at bottom center, rgba(255, 106, 0, 0.06), transparent 28%);
    filter: blur(18px);
}
.hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: center;
    padding: 30px 0 18px;
}
.hero__content, .card, .section-box, .utility-box {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
        var(--cor-superficie-forte);
    border: 1px solid var(--cor-borda);
    border-radius: 28px;
    box-shadow: var(--sombra-card);
}
.hero__content { padding: 34px; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 79, 207, 0.14);
    color: var(--cor-amarelo);
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 79, 207, 0.35);
    box-shadow: inset 0 0 20px rgba(255, 79, 207, 0.1);
}
.hero h1, .page-hero h1 {
    margin: 16px 0 14px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 0.98;
    color: #fff;
    text-shadow:
        0 0 18px rgba(255, 79, 207, 0.18),
        0 0 28px rgba(34, 184, 255, 0.14);
}
.hero p, .page-hero p, .lead { font-size: 1.04rem; line-height: 1.65; color: #f8ddff; }
.hero__actions, .button-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.button, .button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}
.button {
    background: linear-gradient(90deg, var(--cor-rosa) 0%, var(--cor-destaque) 55%, #ffb000 100%);
    color: #06060c;
    box-shadow: 0 0 24px rgba(255, 106, 0, 0.28);
}
.button:hover {
    background: linear-gradient(90deg, #ff7dde 0%, #ff8a2a 55%, #ffd84d 100%);
    transform: translateY(-1px);
}
.button-secondary {
    border: 1px solid rgba(34, 184, 255, 0.42);
    color: #fff;
    background: rgba(34, 184, 255, 0.08);
}
.button-secondary:hover {
    border-color: var(--cor-azul);
    color: var(--cor-amarelo);
    background: rgba(34, 184, 255, 0.14);
}
.hero__media-card {
    height: 100%;
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(34, 184, 255, 0.2), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 79, 207, 0.22), transparent 28%),
        linear-gradient(180deg, #120918 0%, #221133 100%);
    color: #fff;
}
.hero__media-card img { width: 100%; max-height: 420px; object-fit: contain; }
.hero__badge {
    display: inline-block;
    margin-top: 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--cor-amarelo);
    font-size: 0.88rem;
}
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.section { margin-top: 24px; }
.section-box, .utility-box { padding: 30px; }
.section-title { margin: 0 0 12px; font-size: 1.7rem; color: #fff; }
.section-subtitle { margin: 0 0 22px; color: #f4d8ff; line-height: 1.6; }
.card { padding: 24px; }
.card h3 {
    margin: 0 0 10px;
    font-size: 1.14rem;
    color: var(--cor-amarelo);
}
.ranking-card {
    position: relative;
    overflow: hidden;
}
.ranking-card--torro {
    border-color: rgba(255, 106, 0, 0.45);
    box-shadow:
        0 0 0 1px rgba(255, 106, 0, 0.18),
        0 26px 64px rgba(0, 0, 0, 0.55),
        0 0 32px rgba(255, 106, 0, 0.08);
}
.ranking-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 58px;
    height: 34px;
    margin-bottom: 16px;
    padding: 0 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--cor-rosa) 0%, var(--cor-destaque) 100%);
    color: #08070c;
    font-weight: 900;
    letter-spacing: 0.03em;
    box-shadow: 0 0 18px rgba(255, 106, 0, 0.22);
}
.card p, .section-box p, .utility-box p, .utility-box li, .info-list li { color: #f7dbff; line-height: 1.65; }
.game-list, .info-list, .link-list { margin: 16px 0 0; padding-left: 18px; }
.game-highlight {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: center;
    padding: 26px;
    border-radius: 26px;
    border: 1px solid var(--cor-borda);
    background:
        radial-gradient(circle at top left, rgba(255, 79, 207, 0.12), transparent 26%),
        radial-gradient(circle at bottom right, rgba(34, 184, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #140d20 0%, #1d1330 100%);
}
.game-highlight + .game-highlight { margin-top: 18px; }
.game-highlight img { width: 100%; max-height: 320px; object-fit: contain; }
.photo-frame {
    padding: 14px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0) 100%),
        #120f20;
    border: 1px solid rgba(34, 184, 255, 0.22);
}
.photo-frame img {
    width: 100%;
    max-height: 430px;
    object-fit: cover;
    border-radius: 18px;
    border: 1px solid rgba(255, 79, 207, 0.3);
}
.biography-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.75fr);
    gap: 24px;
    align-items: start;
}
.biography-main,
.biography-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.biography-box p + p {
    margin-top: 14px;
}
.sidebar-box {
    position: sticky;
    top: 96px;
}
.offstep-embed {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(34, 184, 255, 0.3);
    background: rgba(0, 0, 0, 0.24);
    min-height: 520px;
}
.offstep-embed iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
    background: transparent;
}
.official-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}
.official-links a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 12px 14px;
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 79, 207, 0.25);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
        #110f1e;
    transition: 0.2s ease;
}
.official-links a:hover {
    border-color: var(--cor-azul);
    color: var(--cor-amarelo);
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(34, 184, 255, 0.16);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}
.character-card {
    overflow: hidden;
    border-radius: 26px;
    border: 1px solid var(--cor-borda);
    background:
        radial-gradient(circle at top left, rgba(255, 79, 207, 0.14), transparent 24%),
        radial-gradient(circle at bottom right, rgba(34, 184, 255, 0.14), transparent 28%),
        linear-gradient(180deg, #140d20 0%, #120f1d 100%);
    box-shadow: var(--sombra-card);
}
.character-card img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    padding: 20px;
    background:
        radial-gradient(circle at top left, rgba(255, 79, 207, 0.15), transparent 26%),
        radial-gradient(circle at bottom right, rgba(34, 184, 255, 0.15), transparent 30%),
        linear-gradient(180deg, #191226 0%, #100d18 100%);
}
.character-card__body {
    padding: 24px;
}
.character-card__body h3 {
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--cor-amarelo);
}
.character-card__body p,
.character-card__body li {
    color: #f7dbff;
    line-height: 1.65;
}
.page-hero { padding: 20px 0 6px; }
.page-hero__box {
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at left top, rgba(255, 79, 207, 0.22), transparent 26%),
        radial-gradient(circle at right bottom, rgba(34, 184, 255, 0.22), transparent 30%),
        linear-gradient(135deg, #140917 0%, #1b1230 48%, #24141a 100%);
    color: #fff;
    box-shadow: var(--sombra-card);
    border: 1px solid rgba(255, 79, 207, 0.24);
}
.page-hero__box p { color: rgba(255, 255, 255, 0.86); }
.form-embed { overflow: hidden; border-radius: 20px; border: 1px solid rgba(34, 184, 255, 0.34); background: #fff; }
.form-embed iframe { display: block; width: 100%; border: 0; background: #fff; }
.download-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.download-link {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 18px;
    border: 1px solid var(--cor-borda);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
        #100f1d;
    text-decoration: none;
    color: #fff;
    transition: 0.2s ease;
}
.download-link:hover {
    border-color: var(--cor-azul);
    transform: translateY(-2px);
    box-shadow: 0 0 22px rgba(34, 184, 255, 0.18);
}
.download-link img { width: 64px; height: 64px; object-fit: contain; }
.download-link strong { display: block; margin-bottom: 4px; color: var(--cor-amarelo); }
.download-link span { color: #f3d7ff; font-size: 0.92rem; }
.utility-links { display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 0.92rem; }
.utility-links a { color: #f6d7ff; text-decoration: none; }
.utility-links a:hover { color: var(--cor-amarelo); }
.site-footer { margin-top: 30px; padding: 24px 0 48px; border-top: 1px solid rgba(255, 79, 207, 0.24); }
.site-footer__inner { display: flex; flex-direction: column; gap: 16px; }
.site-footer__top { display: flex; justify-content: space-between; gap: 18px; align-items: center; flex-wrap: wrap; }
.site-footer p { margin: 0; color: #f4d8ff; line-height: 1.6; }
.micro-copy { font-size: 0.86rem; color: #cebbff; }
.util-page { padding: 34px 0 60px; }
.utility-box h1 { margin-top: 0; font-size: 2rem; color: #fff; }
.error-box {
    text-align: center;
}
.error-box .button-row {
    justify-content: center;
}
.notice {
    padding: 16px 18px;
    border: 1px solid rgba(255, 244, 106, 0.34);
    background: rgba(255, 244, 106, 0.1);
    color: var(--cor-amarelo);
    border-radius: 18px;
}
@media (max-width: 940px) {
    .hero, .game-highlight, .grid-3, .grid-2, .download-links { grid-template-columns: 1fr; }
    .biography-layout, .official-links { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .hero__content, .section-box, .utility-box, .card, .hero__media-card { padding: 24px; }
    .sidebar-box { position: static; }
}
@media (max-width: 680px) {
    .header-inner { padding: 12px 0; }
    .brand img { width: 44px; height: 44px; }
    .site-main { padding-top: 16px; }
    .hero__actions, .button-row { flex-direction: column; }
    .button, .button-secondary { width: 100%; }
}
