﻿@font-face {
    font-family: "Manrope";
    font-style: normal;
    font-weight: 400 800;
    src: url("../assets/fonts/manrope-variable.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 600;
    src: url("../assets/fonts/barlow-condensed-semibold.ttf") format("truetype");
    font-display: swap;
}

@font-face {
    font-family: "Barlow Condensed";
    font-style: normal;
    font-weight: 700;
    src: url("../assets/fonts/barlow-condensed-bold.ttf") format("truetype");
    font-display: swap;
}

html,
body {
    margin: 0;
    min-height: 100%;
    overflow-x: hidden;
    background-color: #e0e0e0;
    font-family: "Manrope", "Segoe UI", sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    scroll-padding-top: 84px;
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    height: 70px;
    background: #444;
    z-index: 1501;
}

.brand-link {
    color: #fff;
    text-decoration: none;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.brand-link:hover,
.brand-link:focus {
    color: #fff;
    opacity: 0.88;
}

.brand-logo {
    display: block;
    height: 1.5rem;
    width: auto;
}

/* SIDEBAR */
.sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #444;
    z-index: 1400;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.35s ease;
}

/* Sidebar collapsed */
.sidebar.collapsed {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.sidebar:not(.collapsed) {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sidebar-link {
    color: #fff;
    text-decoration: none;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: clamp(1.7rem, 4vw, 3rem);
}

.sidebar-link:hover,
.sidebar-link:focus {
    color: #fff;
    opacity: 0.82;
}

.sidebar-link.active {
    text-decoration: underline;
    text-underline-offset: 0.28em;
    opacity: 1;
}

.content {
    position: relative;
    margin-top: 70px;
    flex: 1 0 auto;
    padding: 20px;
    overflow-y: visible;
    overflow-x: hidden;
    transition: 0.3s;

    background-color: #e0e0e0;
    box-sizing: border-box;
}

.intro-inline-svg {
    display: block;
    width: min(220px, 55vw);
    height: auto;
    margin: 0.15rem 0 0.75rem;
}

#kontakt,
#genre,
#spielerstatistik {
    scroll-margin-top: 90px;
}

.games-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
}

.game-card {
    position: relative;
    border-radius: 0.375rem;
    overflow: hidden;
    min-height: 200px;
    border: none;
}

.game-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.game-card .card-img-top,
.card-video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image {
    position: relative;
    z-index: 1;
    transition: opacity 0.2s ease;
}

.card-video {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.game-card.video-active .card-image {
    opacity: 0;
}

.game-card.video-active .card-video {
    opacity: 1;
}

.game-title-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 2rem 1rem 0.9rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
}

.game-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

.game-genre {
    margin-top: 0.2rem;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.68rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.game-actions {
    position: absolute;
    bottom: 0.65rem;
    right: 0.75rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.game-info-btn,
.game-fav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    color: #111;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    transform: translateX(8px) scale(0.95);
    opacity: 0;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.game-fav-btn {
    border: none;
    cursor: pointer;
}

.game-fav-btn.is-favorite {
    color: #dc3545;
}

.game-fav-btn.is-favorite:hover {
    color: #dc3545;
}

.game-card:hover .game-info-btn,
.game-card:hover .game-fav-btn {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.game-fav-btn.pulse {
    animation: favPulse 0.22s ease;
}

.game-info-btn:hover,
.game-fav-btn:hover {
    background: #f1f3f5;
    color: #000;
}

.favorites-empty {
    color: #4b5563;
}

.genre-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.genre-filter-btn {
    border: 1px solid #b7bec6;
    background: #f8f9fa;
    color: #18202a;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.genre-filter-btn:hover,
.genre-filter-btn:focus {
    background: #e9ecef;
    border-color: #9ea7b1;
}

.genre-filter-btn.is-active {
    background: #1f2937;
    border-color: #1f2937;
    color: #fff;
}

.genre-group-title {
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: clamp(1.2rem, 2.2vw, 1.45rem);
}

.ranking-list {
    list-style: none;
    padding: 1rem 1.1rem;
    margin: 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #edf1f5 100%);
    border: 1px solid #d5dbe1;
    border-radius: 0.85rem;
    max-width: 760px;
}

.ranking-list li {
    position: relative;
    display: block;
    padding: 0.75rem 0.2rem;
    border-bottom: 1px dashed #c5cbd3;
    font-weight: 600;
}

.ranking-list li:last-child {
    border-bottom: 0;
}

.ranking-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.ranking-main {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.ranking-rank {
    min-width: 1.4rem;
    color: #4b5563;
    font-weight: 800;
}

.ranking-game {
    color: #111827;
    font-weight: 700;
    cursor: default;
    transition: color 0.2s ease, letter-spacing 0.2s ease;
}

.ranking-value {
    color: #374151;
    font-size: 0.95rem;
}

.ranking-preview {
    display: grid;
    grid-template-columns: 84px 1fr;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-6px);
    transition: max-height 0.3s ease, opacity 0.28s ease, transform 0.28s ease, margin-top 0.25s ease;
}

.ranking-preview img {
    width: 84px;
    height: 56px;
    border-radius: 0.45rem;
    object-fit: cover;
    border: 1px solid #cfd6de;
}

.ranking-preview p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.35;
}

.ranking-list li:hover .ranking-preview,
.ranking-list li:focus-within .ranking-preview {
    margin-top: 0.55rem;
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
}

.ranking-list li:hover .ranking-game,
.ranking-list li:focus-within .ranking-game {
    color: #0f2f66;
    letter-spacing: 0.02em;
}

.stats-table-wrap {
    background: linear-gradient(180deg, #f8f9fa 0%, #edf1f5 100%);
    border: 1px solid #d5dbe1;
    border-radius: 0.85rem;
    padding: 0.8rem;
    overflow-x: auto;
}

.stats-table {
    min-width: 760px;
    margin: 0;
    border-color: #cbd5e1;
}

.stats-table caption {
    caption-side: top;
    color: #4b5563;
    font-size: 0.9rem;
    padding: 0.2rem 0.1rem 0.65rem;
}

.stats-table thead th {
    background: #1f2937;
    color: #f8fafc;
    border-color: #374151;
    font-weight: 700;
}

.stats-table > thead > tr > th {
    letter-spacing: 0.02em;
}

.stats-table tbody td,
.stats-table tfoot th,
.stats-table tfoot td {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #111827;
}

.stats-table tbody tr:nth-child(even) td {
    background: #f1f5f9;
}

.stats-table .stats-row:hover td {
    background: #e8eef7;
}

.stats-preview-row td {
    padding: 0;
    border-top: 0;
    background: transparent !important;
}

.stats-preview-inner {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 0.75rem;
    align-items: center;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.3s ease, opacity 0.28s ease, transform 0.28s ease, padding 0.25s ease;
    padding: 0 0.8rem;
    background: #f8fafc;
}

.stats-preview-inner img {
    width: 86px;
    height: 56px;
    object-fit: cover;
    border-radius: 0.45rem;
    border: 1px solid #cfd6de;
}

.stats-preview-inner p {
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.35;
}

.stats-row:hover + .stats-preview-row .stats-preview-inner,
.stats-row:focus-within + .stats-preview-row .stats-preview-inner {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
    padding: 0.65rem 0.8rem 0.8rem;
}

.stats-row:hover ~ .stats-row td {
    transition: background-color 0.2s ease;
}

.stats-table tfoot th,
.stats-table tfoot td {
    font-weight: 700;
}

.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #9ca3af, transparent);
}

.contact-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding-left: 0;
    padding-right: 0;
}

.contact-label {
    color: #111;
}

.contact-required-note {
    color: #374151;
    font-size: 0.95rem;
}

.required-mark {
    color: #dc2626;
    font-weight: 700;
}

.contact-input[required] {
    border-left-width: 3px;
}

.contact-input {
    background: #fff;
    border-color: #ced4da;
    color: #111;
}

.contact-input:focus {
    background: #fff;
    border-color: #86b7fe;
    color: #111;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.contact-submit-btn {
    background: #444;
    border: 1px solid #444;
    color: #fff;
}

.contact-submit-btn:hover,
.contact-submit-btn:focus {
    background: #222;
    border-color: #222;
    color: #fff;
}

.contact-modal {
    background: #1f1f24;
    color: #f8f9fa;
    border: 1px solid #2f3138;
}

#contactResultModal {
    z-index: 1700;
}

.modal-backdrop.show {
    z-index: 1690;
}

@keyframes favPulse {
    0% {
        transform: translateX(0) scale(1);
    }

    50% {
        transform: translateX(0) scale(1.22);
    }

    100% {
        transform: translateX(0) scale(1);
    }
}

@media (max-width: 1400px) {
    .games-row {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1100px) {
    .games-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

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

@media (max-width: 560px) {
    .games-row {
        grid-template-columns: 1fr;
    }
}

/* FOOTER */
.footer {
    position: sticky;
    min-height: 60px;
    flex-shrink: 0;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
}

.footer-inner {
    line-height: 1.2;
}

.footer-links a {
    color: #dee2e6;
    text-decoration: none;
    font-weight: 600;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #fff;
    text-decoration: underline;
}

.footer-sep {
    color: #9ca3af;
    margin: 0 0.45rem;
}

.legal-page {
    max-width: 1000px;
}

.legal-card {
    background: #f8f9fa;
    border: 1px solid #d5dbe1;
    border-radius: 0.9rem;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08);
}

body.menu-open {
    overflow: hidden;
}

.game-detail-page {
    max-width: 1320px;
}

.game-hero {
    position: relative;
    border-radius: 1rem;
    background: linear-gradient(135deg, #1a1d23 0%, #2f3642 55%, #1f242d 100%);
    color: #f8f9fa;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.game-hero::after {
    content: "";
    position: absolute;
    top: -45%;
    right: -10%;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 70%);
    pointer-events: none;
}

.game-cover {
    border-radius: 0.85rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.game-kicker {
    display: inline-flex;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    opacity: 0.82;
}

.game-hero-title {
    font-size: clamp(1.75rem, 3vw, 2.9rem);
    line-height: 1.1;
    font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.game-hero-text {
    max-width: 62ch;
    color: rgba(248, 249, 250, 0.86);
}

.game-section {
    border-radius: 0.95rem;
    background: linear-gradient(180deg, #fdfdfd 0%, #f4f6f8 100%);
    border: 1px solid #d5dbe1;
}

.section-head {
    background: linear-gradient(90deg, #161b22 0%, #2a313d 100%);
    color: #f8f9fa;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(248, 249, 250, 0.75);
}

.game-video-wrap {
    background: #0d1117;
}

.soundtrack-panel {
    background: linear-gradient(170deg, #ffffff 0%, #eef2f6 100%);
}

.soundtrack-panel audio {
    width: 100%;
    border-radius: 0.6rem;
}

.info-panel .section-label {
    color: #4b5563;
}

.info-grid .info-chip {
    background: #f8fafc;
    border: 1px solid #d8dee4;
    border-radius: 0.7rem;
    padding: 0.85rem 0.9rem;
    height: 100%;
}

.info-grid .info-chip span {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #6b7280;
}

.info-grid .info-chip strong {
    display: block;
    margin-top: 0.35rem;
    color: #101418;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .game-hero {
        padding: 1.5rem;
    }

    .game-hero::after {
        width: 240px;
        height: 240px;
        top: -30%;
        right: -20%;
    }
}

@media (max-width: 575px) {
    .game-detail-page {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .game-hero-title {
        font-size: clamp(1.55rem, 8vw, 2rem);
    }
}

.theme-gta5 .game-hero {
    background: linear-gradient(135deg, #21320f 0%, #375b19 52%, #12240c 100%);
}

.theme-gta5 .section-head {
    background: linear-gradient(90deg, #12240c 0%, #2e4d15 100%);
}

.theme-gta5 .info-grid .info-chip {
    border-color: #b8caa0;
    background: #f7fced;
}

.theme-gta5 .section-label {
    color: rgba(226, 246, 196, 0.86);
}

.theme-eldenring .game-hero {
    background: linear-gradient(140deg, #1f1726 0%, #4d2f2d 58%, #161219 100%);
}

.theme-eldenring .section-head {
    background: linear-gradient(90deg, #2b1b31 0%, #5f3331 100%);
}

.theme-eldenring .info-grid .info-chip {
    border-color: #d8c8b8;
    background: #fdf7f2;
}

.theme-eldenring .section-label {
    color: rgba(255, 222, 196, 0.86);
}

.theme-portal2 .game-hero {
    background: linear-gradient(140deg, #11243c 0%, #1f4f75 52%, #0a1b2b 100%);
}

.theme-portal2 .section-head {
    background: linear-gradient(90deg, #0d2036 0%, #25618d 100%);
}

.theme-portal2 .info-grid .info-chip {
    border-color: #b8d0e5;
    background: #f2f8fe;
}

.theme-portal2 .section-label {
    color: rgba(196, 226, 255, 0.9);
}

.theme-rocketleague .game-hero {
    background: linear-gradient(135deg, #031a47 0%, #0f4ca6 50%, #02122c 100%);
}

.theme-rocketleague .section-head {
    background: linear-gradient(90deg, #05245b 0%, #1366c8 100%);
}

.theme-rocketleague .info-grid .info-chip {
    border-color: #b9cfee;
    background: #f3f8ff;
}

.theme-rocketleague .section-label {
    color: rgba(208, 225, 255, 0.92);
}

.theme-twilightprincess .game-hero {
    background: linear-gradient(140deg, #2a2b36 0%, #574a61 55%, #1a1a23 100%);
}

.theme-twilightprincess .section-head {
    background: linear-gradient(90deg, #252634 0%, #655073 100%);
}

.theme-twilightprincess .info-grid .info-chip {
    border-color: #cfc4d8;
    background: #f8f5fb;
}

.theme-twilightprincess .section-label {
    color: rgba(229, 217, 241, 0.9);
}

/* Strong per-game theming and info list format */
.game-detail-page {
    --theme-page-bg: linear-gradient(180deg, #eceff2 0%, #dfe4ea 100%);
    --theme-hero-bg: linear-gradient(135deg, #1a1d23 0%, #2f3642 55%, #1f242d 100%);
    --theme-head-bg: linear-gradient(90deg, #161b22 0%, #2a313d 100%);
    --theme-chip-bg: #f8fafc;
    --theme-chip-border: #d8dee4;
    --theme-label: rgba(248, 249, 250, 0.75);
    --theme-badge-bg: #111827;
    --theme-badge-border: #1f2937;
    background: var(--theme-page-bg);
    border-radius: 1rem;
    border: 1px solid rgba(17, 24, 39, 0.12);
}

.game-detail-page .game-hero {
    background: var(--theme-hero-bg);
}

.game-detail-page .section-head {
    background: var(--theme-head-bg);
}

.game-detail-page .section-label {
    color: var(--theme-label);
}

.game-detail-page .soundtrack-panel .section-label,
.game-detail-page .info-panel .section-label,
.game-detail-page .review-tab-section .section-label {
    display: inline-flex;
    align-items: center;
    padding: 0.28rem 0.55rem;
    border-radius: 999px;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    font-weight: 800;
    color: #ffffff;
    background: var(--theme-badge-bg);
    border: 1px solid var(--theme-badge-border);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.18);
}

.game-detail-page .info-grid .info-chip,
.game-detail-page .info-list dt,
.game-detail-page .info-list dd {
    border-color: var(--theme-chip-border);
    background: var(--theme-chip-bg);
}

.game-detail-page .badge.text-bg-dark {
    background: var(--theme-badge-bg) !important;
    border: 1px solid var(--theme-badge-border);
}

.info-list {
    display: grid;
    grid-template-columns: minmax(180px, 32%) 1fr;
    align-items: stretch;
    gap: 0.55rem;
    margin: 0;
}

.info-list dt,
.info-list dd {
    border: 1px solid #d8dee4;
    border-radius: 0.7rem;
    padding: 0.75rem 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
}

.info-list dt {
    color: #334155;
    font-weight: 700;
}

.info-list dd {
    color: #111827;
    font-weight: 600;
}

@media (max-width: 640px) {
    .info-list {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

.game-detail-page .dev-details {
    border: 1px solid var(--theme-chip-border);
    border-radius: 0.75rem;
    background: #ffffff;
    overflow: hidden;
}

.game-detail-page .dev-details summary {
    list-style: none;
    cursor: pointer;
    padding: 0.8rem 0.95rem;
    font-weight: 700;
    color: #1f2937;
    background: var(--theme-chip-bg);
    border-bottom: 1px solid transparent;
}

.game-detail-page .dev-details summary::-webkit-details-marker {
    display: none;
}

.game-detail-page .dev-details[open] summary {
    border-bottom-color: var(--theme-chip-border);
}

.game-detail-page .dev-details p {
    margin: 0;
    padding: 0.85rem 0.95rem 0.95rem;
    color: #334155;
    line-height: 1.45;
}

.review-tab-section .review-tabs {
    border-bottom-color: #cfd6de;
}

.review-tab-section .review-tabs .nav-link {
    color: #334155;
    font-weight: 700;
    border: 1px solid transparent;
}

.review-tab-section .review-tabs .nav-link.active {
    color: #0f172a;
    background: #f8fafc;
    border-color: #cfd6de #cfd6de #f8fafc;
}

.review-tab-section .review-content {
    background: #f8fafc;
    border: 1px solid #cfd6de;
    border-top: 0;
    border-radius: 0 0 0.75rem 0.75rem;
    padding: 1rem 1rem 0.9rem;
}

.review-tab-section .review-quote {
    margin: 0 0 0.5rem 0;
    padding-left: 0.65rem;
    border-left: 3px solid #cbd5e1;
    color: #334155;
}

.review-tab-section .review-content a {
    color: #0b63c7;
    text-decoration: none;
    font-weight: 600;
}

.review-tab-section .review-content a:hover,
.review-tab-section .review-content a:focus {
    text-decoration: underline;
}

.review-tab-section + .btn.btn-dark {
    margin-top: 0.9rem;
}

.theme-gta5 {
    --theme-page-bg: linear-gradient(180deg, #dbe9ce 0%, #ceddbd 100%);
    --theme-hero-bg: linear-gradient(135deg, #21320f 0%, #375b19 52%, #12240c 100%);
    --theme-head-bg: linear-gradient(90deg, #12240c 0%, #2e4d15 100%);
    --theme-chip-bg: #f2f9e7;
    --theme-chip-border: #b8caa0;
    --theme-label: rgba(226, 246, 196, 0.9);
    --theme-badge-bg: #2f5c1b;
    --theme-badge-border: #21410f;
}

.theme-eldenring {
    --theme-page-bg: linear-gradient(180deg, #efe3de 0%, #e7d4ca 100%);
    --theme-hero-bg: linear-gradient(140deg, #1f1726 0%, #4d2f2d 58%, #161219 100%);
    --theme-head-bg: linear-gradient(90deg, #2b1b31 0%, #5f3331 100%);
    --theme-chip-bg: #fdf5ef;
    --theme-chip-border: #d8c8b8;
    --theme-label: rgba(255, 222, 196, 0.9);
    --theme-badge-bg: #643833;
    --theme-badge-border: #4b2621;
}

.theme-portal2 {
    --theme-page-bg: linear-gradient(180deg, #d9e9f6 0%, #cbdfee 100%);
    --theme-hero-bg: linear-gradient(140deg, #11243c 0%, #1f4f75 52%, #0a1b2b 100%);
    --theme-head-bg: linear-gradient(90deg, #0d2036 0%, #25618d 100%);
    --theme-chip-bg: #f1f8ff;
    --theme-chip-border: #b8d0e5;
    --theme-label: rgba(196, 226, 255, 0.94);
    --theme-badge-bg: #1d5f8f;
    --theme-badge-border: #114260;
}

.theme-rocketleague {
    --theme-page-bg: linear-gradient(180deg, #d8e5ff 0%, #c7d8fc 100%);
    --theme-hero-bg: linear-gradient(135deg, #031a47 0%, #0f4ca6 50%, #02122c 100%);
    --theme-head-bg: linear-gradient(90deg, #05245b 0%, #1366c8 100%);
    --theme-chip-bg: #eef4ff;
    --theme-chip-border: #b9cfee;
    --theme-label: rgba(208, 225, 255, 0.95);
    --theme-badge-bg: #0f56b8;
    --theme-badge-border: #0a3e84;
}

.theme-twilightprincess {
    --theme-page-bg: linear-gradient(180deg, #e8e2ef 0%, #ddd4e7 100%);
    --theme-hero-bg: linear-gradient(140deg, #2a2b36 0%, #574a61 55%, #1a1a23 100%);
    --theme-head-bg: linear-gradient(90deg, #252634 0%, #655073 100%);
    --theme-chip-bg: #f8f4fc;
    --theme-chip-border: #cfc4d8;
    --theme-label: rgba(229, 217, 241, 0.94);
    --theme-badge-bg: #655073;
    --theme-badge-border: #473550;
}

