/* =====================================================
   SEASONAL SETTINGS — only edit this block twice a year
   ===================================================== */
:root {
    --local-tz:  "MESZ";      /* Summer: "MESZ"  |  Winter: "MEZ" */

    --open-mesz: "09:00";     --close-mesz: "Mitternacht";     /* MESZ     */
    --open-et:   "3:00 AM";   --close-et:  "6:00 PM";   /* Eastern  */
    --open-ct:   "2:00 AM";   --close-ct:  "5:00 PM";   /* Central  */
    --open-mt:   "1:00 AM";   --close-mt:  "4:00 PM";   /* Mountain */
    --open-pt:  "Midnight";   --close-pt:  "3:00 PM";   /* Pacific  */

    /* Holiday Banner — set to "flex" to enable, "none" to disable */
    --holiday-active:   none;
    --holiday-until-en: "July 20, 2025";
    --holiday-until-de: "20. Juli 2025";
    --holiday-hours-en: "2:00 PM \2013  8:00 PM";
    --holiday-hours-de: "14:00 \2013  20:00 Uhr";

    /* Season / League names — edit here to update nav labels */
    --d4-season-name:   "Season 14";
    --poe2-league-name: "Runes of Aldur";
    --poe1-league-name: "Allflame League";

    /* Highlight colors */
    --color-highlight:     #00d4a0;
    --color-highlight-rgb: 0, 212, 160;

    /* Core colors */
    --color-bg:            #04071d;
    --color-accent:        97, 51, 248;
    --color-text:          #b9c6f5;
    --color-nav-bg:        rgba(31, 24, 86, .3);
    --color-item-bg:       rgba(47, 50, 121, .32);
    --color-hover-rgb:     70, 74, 160;
    --color-dropdown-bg:   #11122a;
    --color-tooltip-bg:    rgba(15, 10, 55, 0.97);
    --color-border-subtle: rgba(255, 255, 255, 0.1);

    /* Effects */
    --nav-blur:        blur(40px);
    --border-gradient: linear-gradient(to right, rgba(255, 255, 255, 0.15), transparent);
    --shadow:          0 8px 24px rgba(0, 0, 0, 0.5);
    --transition:      0.15s ease;
}

.nav-season-d4::before   { content: var(--d4-season-name); }
.nav-league-poe2::before { content: var(--poe2-league-name); }
.nav-league-poe1::before { content: var(--poe1-league-name); }
/* ===================================================== */

#lang-en, #lang-de {
    position: fixed;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

#ql-season, #ql-eternal, #ql-uniques, #ql-tab4 {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
}

*, *::before, *::after { box-sizing: border-box; border-radius: 8px; }

svg { overflow: visible; }


html {
    background-color: var(--color-bg);
    background-image:
        radial-gradient(ellipse 160% 80% at 50% 0%,   rgba(var(--color-accent), .26) 0%, rgba(var(--color-accent), .05) 60%, transparent 100%),
        radial-gradient(ellipse 160% 80% at 50% 100%, rgba(var(--color-accent), .08) 0%, rgba(var(--color-accent), .04) 60%, transparent 100%),
        radial-gradient(ellipse 120% 50% at 50% 50%, rgba(var(--color-accent), .12) 0%, transparent 100%);
}

body {
    height: 100%;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    color: var(--color-text);
    font-family: Roboto, Arial, sans-serif;
    position: relative;
}


.container {
    display: grid;
    grid-template-areas: "site-header" "site-main" "site-footer";
    gap: 10px;
    position: relative;
    z-index: 1;
}

.site-header { grid-area: site-header; display: flex; flex-direction: column; gap: 0; }
.site-main   { grid-area: site-main; padding-top: 68px; font-size: 16px; }
.site-footer { grid-area: site-footer; margin-top: 96px; }

/* Holiday Banner */

.holiday-banner {
    display: var(--holiday-active);
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    margin: 10px 0 14px;
    background: linear-gradient(to right, rgba(155, 18, 18, 0.88), rgba(100, 8, 32, 0.82));
    border: 1px solid rgba(220, 70, 70, 0.3);
    border-left: 4px solid rgba(235, 80, 80, 0.9);
    border-radius: 10px;
    backdrop-filter: var(--nav-blur);
    box-shadow: 0 4px 24px rgba(160, 20, 20, 0.3);
}

.holiday-banner-icon { color: rgba(255, 200, 200, 0.9); flex-shrink: 0; }

.holiday-banner-body { display: flex; flex-direction: column; gap: 4px; }

.holiday-banner-title {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 190, 190, 0.95);
}

.holiday-msg { font-size: 0.85rem; color: rgba(255, 255, 255, 0.88); }

.holiday-msg.en::before {
    content: "On holiday until " var(--holiday-until-en) " \00B7  New hours: " var(--holiday-hours-en);
}
.holiday-msg.de::before {
    content: "Im Urlaub bis " var(--holiday-until-de) " \00B7  Neue Öffnungszeiten: " var(--holiday-hours-de) " " var(--local-tz);
}

/* Nav */

nav {
    position: relative;
    z-index: 1;
    margin-bottom: 2px;
}

nav div.nav-primary {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-utilities {
    background-color: var(--color-nav-bg);
    backdrop-filter: var(--nav-blur);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
}

/* Nav Categories */

.nav-categories { width: fit-content; align-self: center; }

.nav-cat-list { list-style: none; margin: 0; padding: 8px; gap: 8px; display: flex; }

.nav-cat-item {
    padding: 6px 12px;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-item-bg);
    min-height: calc(1.6rem + 12px);
    transition: background-color var(--transition);
}

.nav-cat-item:hover { background-color: rgba(var(--color-hover-rgb), .38); }

.nav-cat-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 6px;
}

.nav-cat-icon           { font-size: 1.4rem; line-height: 1; }
.nav-cat-icon img       { width: 1.6rem; height: 1.6rem; display: block; }
.nav-cat-label          { font-size: 0.9rem; font-weight: 600; line-height: 1.2; }

.nav-cat-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 6px 0 0;
    padding: 6px;
    background-color: var(--color-dropdown-bg);
    backdrop-filter: var(--nav-blur);
    border-radius: 8px;
    z-index: 200;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-4px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.nav-cat-dropdown li {
    position: relative;
    background-color: var(--color-nav-bg);
    border-radius: 6px;
}

.nav-cat-dropdown li + li { margin-top: 4px; }

.nav-cat-dropdown li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 6px;
    transition: background-color var(--transition);
}

.nav-cat-dropdown li a:hover { background-color: rgba(var(--color-hover-rgb), .16); }

/* EN/DE link switching inside nav dropdowns */
.nav-cat-dropdown li a.de,
.nav-cat-sub-dropdown li a.de { display: none; }

#lang-de:checked ~ .container .nav-cat-dropdown li a.de,
#lang-de:checked ~ .container .nav-cat-sub-dropdown li a.de { display: flex; }

#lang-de:checked ~ .container .nav-cat-dropdown li a.en,
#lang-de:checked ~ .container .nav-cat-sub-dropdown li a.en { display: none; }

/* Sub-dropdown (nested) */

.nav-cat-sub-item { position: relative; }

/* Transparent hover bridge — keeps sub-dropdown open while mouse crosses the gap */
.nav-cat-sub-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 12px;
    height: 100%;
}

.nav-cat-sub-item > a { padding-right: 28px; }

.nav-cat-sub-item > a::after {
    content: '›';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1rem;
    opacity: 0.6;
}

.nav-cat-sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 180px;
    list-style: none;
    margin: 0 0 0 12px;
    padding: 6px;
    background-color: var(--color-dropdown-bg);
    backdrop-filter: var(--nav-blur);
    border-radius: 8px;
    z-index: 210;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-6px);
    transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

.nav-cat-sub-open-left > .nav-cat-sub-dropdown {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 12px;
    transform: translateX(6px);
}

.nav-cat-sub-open-left::after { left: auto; right: 100%; }

.nav-cat-sub-item:hover > .nav-cat-sub-dropdown,
.nav-cat-sub-item:focus-within > .nav-cat-sub-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.nav-cat-item:hover .nav-cat-dropdown,
.nav-cat-item:focus-within .nav-cat-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

/* Gradient Border — 1px ring via CSS mask */

.nav-utilities::before,
.footer-bar::before,
.footer-visit-btn::before,
.footer-contact-btn::before,
.nav-cat-item::before,
.nav-cat-dropdown::before,
.nav-cat-dropdown li::before,
.nav-cat-sub-dropdown::before,
.opening-hours-tooltip::after {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: var(--border-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

/* Opening Hours */

.opening-hours {
    position: relative;
    cursor: help;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    transition: color var(--transition);
}

.opening-hours:hover  { color: #fff; }
.opening-hours::after { content: " ⓘ"; font-size: 0.95rem; opacity: 0.6; }

.opening-hours-tooltip {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-tooltip-bg);
    backdrop-filter: var(--nav-blur);
    color: var(--color-text);
    padding: 14px 18px;
    border-radius: 10px;
    white-space: nowrap;
    z-index: 100;
    font-size: 0.95rem;
    line-height: 1;
    text-align: left;
    box-shadow: var(--shadow);
}

.opening-hours-tooltip::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top: none;
    border-bottom-color: var(--color-tooltip-bg);
}

.hours-label-en::before { content: "Mon \2013  Sun \2003 9:00 AM \2013  Midnight \2003" var(--local-tz); }
.hours-label-de::before { content: "Mo \2013  So \2003 9:00 \2013  Mitternacht \2003" var(--local-tz); }

.hours-rows { display: flex; flex-direction: column; }

.hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 7px 0;
    border-bottom: 1px solid var(--color-border-subtle);
    border-radius: 0;
}

.hours-row:first-child { padding-top: 0; }
.hours-row:last-child  { border-bottom: none; padding-bottom: 0; }

.hours-tz-label { font-weight: 600; font-size: 0.85rem; }
.hours-tz-abbr  { opacity: 0.5; font-weight: 400; font-size: 0.8rem; }
.hours-tz-time  { font-size: 0.9rem; }

.hours-et-time::before   { content: var(--open-et)   " \2013  " var(--close-et); }
.hours-ct-time::before   { content: var(--open-ct)   " \2013  " var(--close-ct); }
.hours-mt-time::before   { content: var(--open-mt)   " \2013  " var(--close-mt); }
.hours-pt-time::before   { content: var(--open-pt)   " \2013  " var(--close-pt); }
.step-hours-tag.en::before { content: var(--open-mesz) " \2013  Midnight " var(--local-tz); }
.step-hours-tag.de::before { content: var(--open-mesz) " \2013  " var(--close-mesz) " " var(--local-tz); }

.opening-hours:hover .opening-hours-tooltip,
.opening-hours:focus-within .opening-hours-tooltip { display: block; }

/* Language Switcher */

input[name="lang"],
input[name="ql-mode"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.lang-switch { display: flex; justify-content: flex-end; gap: 6px; margin-bottom: 8px; }

.lang-switch label {
    cursor: pointer;
    padding: 4px 14px;
    border: 1px solid var(--color-border-subtle);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    background-color: var(--color-nav-bg);
    backdrop-filter: var(--nav-blur);
    user-select: none;
    transition: background-color var(--transition), border-color var(--transition), color var(--transition);
}

.lang-switch label:hover {
    background-color: rgba(var(--color-highlight-rgb), 0.1);
    border-color: rgba(var(--color-highlight-rgb), 0.3);
    color: var(--color-highlight);
}

#lang-en:checked ~ .lang-switch label[for="lang-en"],
#lang-de:checked ~ .lang-switch label[for="lang-de"] {
    background-color: rgba(var(--color-highlight-rgb), 0.15);
    border-color: rgba(var(--color-highlight-rgb), 0.5);
    color: var(--color-highlight);
}

.de { display: none; }

#lang-de:checked ~ .container .en                            { display: none; }
#lang-de:checked ~ .container .de                            { display: revert; }
#lang-de:checked ~ .container .quick-link-btn.de             { display: inline-flex; }
#lang-en:checked ~ .container .quick-link-btn.en             { display: inline-flex; }
#lang-en:checked ~ .container .de                       { display: none; }
#lang-en:checked ~ .container .quicklinks-disclaimer.en { display: flex; }
.footer-visit-btn.de                                     { display: none; }
#lang-de:checked ~ .container .footer-visit-btn.de      { display: flex; }
#lang-de:checked ~ .container .footer-brand-link.de     { display: flex; }

/* Media Breakpoints */




@media (max-width: 800px) {
    .nav-cat-list     { display: none; }

    .product-layout       { align-items: stretch; }
    .product-main         { width: 100% !important; }
    .accordion-group { max-width: 100% !important; }
    .site-footer     { margin-top: 96px; }
    .footer-bar           { flex-wrap: wrap; gap: 16px; }
    .footer-bar-left      { flex-wrap: wrap; gap: 12px; justify-content: center; }
    .footer-divider       { display: none; }
    .footer-visit-btn   { display: none !important; }
    .footer-contact-btn { display: none !important; }

    .process-step         { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; }
    .step-content         { width: 100% !important; }
    .site-main            { padding-top: 40px; }

    .footer-links-bar                  { grid-template-columns: 1fr 1fr; gap: 24px; padding: 24px; }
    .footer-col-wide .footer-col-links { grid-template-columns: 1fr; }

    .product-hero-image  { display: none !important; }
    .product-hero        { display: block; }
    .product-hero-content { width: 100%; }
    .product-details     { margin-top: 48px !important; }

}


@media (max-width: 480px) {
    .nav-utilities      { padding: 8px 0; }
    .opening-hours      { font-size: 0.78rem; }
    .opening-hours-tooltip { white-space: normal; width: max-content; max-width: 90vw; text-align: center; }
    .lang-switch        { justify-content: stretch; }
    .lang-switch label  { flex: 1; padding: 4px 0; text-align: center; }
    .product-header     { flex-direction: column; align-items: center; }
    .product-info       { align-items: center; text-align: center; }
    .product-platforms  { justify-content: center; }
    .quick-links              { justify-content: center; }
    .ql-toggle                { margin-left: auto; margin-right: auto; }
    .product-details-list li  { flex: 1 1 100%; }

    .footer-links-bar              { grid-template-columns: 1fr !important; gap: 20px; padding: 20px; }
    .footer-col-wide               { grid-column: span 1 !important; }
    .footer-col-wide .footer-col-links { grid-template-columns: 1fr !important; }


}
/* Product */

.product-header { display: flex; gap: 24px; align-items: center; margin-bottom: 14px; }

.product-logo {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    background-color: var(--color-item-bg);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: inherit;
    background: var(--border-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.product-logo img { width: 50px; height: 50px; object-fit: contain; }
.product-info     { flex: 1; display: flex; flex-direction: column; gap: 0px; }

.product-supertitle {
    margin: 0 0 -3px;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text);
    opacity: 0.85;
    letter-spacing: 0.04em;
}

.product-supertitle a       { color: var(--color-highlight); text-decoration: none; transition: opacity var(--transition); }
.product-supertitle a:hover { text-decoration: underline; opacity: 0.8; }

.product-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.product-platforms { display: flex; align-items: center; gap: 16px; margin-top: -3px; flex-wrap: wrap; }
.platform-label    { font-size: 0.95rem; font-weight: 600; color: var(--color-text); white-space: nowrap; }

.platform-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--color-text);
    opacity: 0.85;
    letter-spacing: 0.04em;
}

.platform-item svg             { width: 16px; height: 16px; flex-shrink: 0; }
.platform-item .bi-playstation { width: 21px; height: 21px; }

.product-description   { display: flex; flex-direction: column; gap: 16px; font-size: 0.95rem; line-height: 1.7; }
.product-description p { margin: 0; }
.product-layout        { display: flex; flex-direction: column; align-items: flex-start; }

.section-divider { border: none; border-top: 1px solid var(--color-border-subtle); margin: 32px 0; }

.section-title {
    margin: 0 0 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-highlight);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--color-border-subtle), transparent);
}

.product-main          { width: 100%; min-width: 0; display: flex; flex-direction: column; }

.product-hero {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.product-hero-image {
    flex: 0 0 33.33%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero-image img {
    width: 100%;
    height: auto;
    max-width: 450px;
    max-height: 450px;
    object-fit: contain;
    image-rendering: auto
}

.product-hero-content { flex: 1; min-width: 0; }

.product-details {
    width: 100%;
    margin-top: 120px;
    margin-bottom: 24px;
}

.product-details-title { display: none; }

.product-details-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    background: rgba(38, 30, 100, 0.45);
    backdrop-filter: var(--nav-blur);
    border-radius: 10px;
    overflow: hidden;
    border-top: 1px solid var(--color-border-subtle);
    border-left: 1px solid var(--color-border-subtle);
}

.product-details-list li {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px 20px;
    flex: 1 1 150px;
    border-right: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
    border-radius: 0;
    background: transparent;
    transition: background-color var(--transition);
}


.detail-key {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-highlight);
}


.detail-val { display: flex; flex-wrap: wrap; gap: 5px; }

.detail-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text);
    background-color: rgba(var(--color-accent), 0.1);
    border: 1px solid rgba(var(--color-accent), 0.2);
    white-space: nowrap;
    border-radius: 6px;
    transition: background-color var(--transition), border-color var(--transition);
}

.detail-tag:hover {
    background-color: rgba(var(--color-accent), 0.2);
    border-color: rgba(var(--color-accent), 0.35);
}

.detail-val .product-platforms { margin-top: 0; gap: 10px; }

.hl-primary, .hl-secondary { color: var(--color-text); font-weight: 600; }

/* Quick Links */

.quicklinks-section {
    margin-top: 8px;

   
    
   
    border-radius: 10px;
}

.ql-toggle {
    display: flex;
    gap: 3px;
    background: var(--color-item-bg);
    backdrop-filter: blur(5px);
    border: 1px solid var(--color-border-subtle);
    border-radius: 8px;
    padding: 3px;
    margin-top: 14px;
    width: fit-content;
}

.ql-tab {
    padding: 5px 18px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-text);
    opacity: 0.5;
    user-select: none;
    transition: background-color var(--transition), opacity var(--transition);
}


.quick-links-wrapper {
    display: grid;
}

.quick-links {
    grid-area: 1 / 1;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: flex-start;
    visibility: hidden;
    pointer-events: none;
}

.quick-links-season { visibility: visible; pointer-events: auto; }

#ql-eternal:checked ~ .quicklinks-section .quick-links-season  { visibility: hidden;  pointer-events: none; }
#ql-eternal:checked ~ .quicklinks-section .quick-links-eternal { visibility: visible; pointer-events: auto; }

#ql-uniques:checked ~ .quicklinks-section .quick-links-season  { visibility: hidden;  pointer-events: none; }
#ql-uniques:checked ~ .quicklinks-section .quick-links-uniques { visibility: visible; pointer-events: auto; }

#ql-tab4:checked ~ .quicklinks-section .quick-links-season    { visibility: hidden;  pointer-events: none; }
#ql-tab4:checked ~ .quicklinks-section .quick-links-tab4      { visibility: visible; pointer-events: auto; }

#ql-season:checked ~ .ql-toggle label[for="ql-season"],
#ql-eternal:checked ~ .ql-toggle label[for="ql-eternal"],
#ql-uniques:checked ~ .ql-toggle label[for="ql-uniques"],
#ql-tab4:checked ~ .ql-toggle label[for="ql-tab4"] {
    background: rgba(var(--color-highlight-rgb), 0.18);
    color: var(--color-highlight);
    opacity: 1;
}

.quick-link-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    min-height: calc(1.4rem + 8px);
    background-color: var(--color-item-bg);
     border: 1px solid var(--color-border-subtle);
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    position: relative;
    transition: background-color var(--transition);
}


.quick-link-btn:hover { background-color: rgba(var(--color-hover-rgb), .38); color: #fff; }

.quicklinks-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 10px 0 0;
    padding: 6px 10px;
    font-size: 0.75rem;
    color: var(--color-text);
    opacity: 0.6;
    border-radius: 6px;
    line-height: 1.5;
}

.quicklinks-disclaimer-icon { flex-shrink: 0; margin-top: 2px; opacity: 0.7; }

.quicklinks-disclaimer-example {
    display: inline-block;
    margin-top: 4px;
    padding: 1px 7px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.75rem;
    letter-spacing: 0.02em;
}

/* Accordion */

.accordion-group {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 20px;
    max-width: 66.67%;
    margin-left: auto;
    margin-right: auto;
}

.accordion {
    background-color: rgba(31, 24, 86, .42);
    backdrop-filter: var(--nav-blur);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.accordion-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    user-select: none;
    border-bottom: 1px solid transparent;
    transition: background-color var(--transition), border-color var(--transition);
}

.accordion-title:hover                    { background-color: rgba(var(--color-hover-rgb), .18); }
.accordion-title::-webkit-details-marker { display: none; }

details[open] > .accordion-title {
    border-bottom-color: var(--color-border-subtle);
    color: var(--color-highlight);
}

.accordion-arrow { flex-shrink: 0; transform: rotate(90deg); transition: transform var(--transition); }

details[open] > .accordion-title .accordion-arrow { transform: rotate(-90deg); }

details .accordion-body-inner { padding: 20px 24px 24px; }


/* Process Steps */

.process-steps { display: flex; flex-direction: column; }

.process-step {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative;
    padding-bottom: 28px;
}

.process-step:last-child { padding-bottom: 0; }


.step-indicator {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: var(--color-item-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.step-number { font-size: 0.9rem; font-weight: 700; color: #fff; }
.step-content { display: flex; flex-direction: column; gap: 8px; padding: 14px 16px; background-color: rgba(31, 24, 86, .42); backdrop-filter: var(--nav-blur); border-radius: 10px; flex: 1; position: relative; z-index: 2; }
.step-title   { margin: 0; font-size: 0.95rem; font-weight: 600; color: var(--color-text); display: flex; align-items: center; gap: 8px; }.step-desc    { margin: 0; font-size: 0.85rem; line-height: 1.65; color: var(--color-text); opacity: 0.85; }

.step-notice {
    margin-top: 14px;
    padding: 14px 18px;
    background: rgba(var(--color-highlight-rgb), 0.06);
    border: 1px solid rgba(var(--color-highlight-rgb), 0.2);
    border-left: 3px solid rgba(var(--color-highlight-rgb), 0.7);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.step-notice-title {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-highlight);
}

.step-notice-body {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--color-highlight);
    opacity: 0.88;
}

.step-notice-format {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-highlight);
    opacity: 0.75;
}

.step-notice-code {
    font-family: monospace;
    font-size: 0.8rem;
    padding: 2px 10px;
    background: rgba(var(--color-highlight-rgb), 0.1);
    border: 1px solid rgba(var(--color-highlight-rgb), 0.25);
    border-radius: 5px;
    color: var(--color-highlight);
    font-style: normal;
}


.step-notice-hl {
    color: var(--color-highlight);
    font-weight: 600;
    text-decoration: underline dotted rgba(var(--color-highlight-rgb), 0.5);
    cursor: pointer;
    position: relative;
    display: inline-block;
    z-index: 400;
}

.step-notice-tooltip {
    display: none;
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(var(--color-highlight-rgb), 0.3);
    pointer-events: none;
}

.step-notice-tooltip img {
    display: block;
    width: 260px;
    height: auto;
    border-radius: 0;
}

.step-notice-hl:hover .step-notice-tooltip,
.step-notice-hl:focus .step-notice-tooltip { display: block; }

.req-notice {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
    border-top: none;
}
.req-notice:not(:first-child)::before {
    content: "";
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 -32px 12px;
}
.req-notice:first-child { padding-top: 0; }
.req-notice-title {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-highlight);
}
.req-notice-body {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--color-text);
    opacity: 0.88;
}


/* Custom Order Banner */

.custom-order-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 32px;
    background-color: rgba(31, 24, 86, .42);
    backdrop-filter: var(--nav-blur);
    border-radius: 12px;
    margin-bottom: 16px;
}

.custom-order-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.custom-order-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-highlight);
}

.custom-order-desc {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--color-text);
    opacity: 0.8;
}

@media (max-width: 600px) {
    .custom-order-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
}

/* Footer */

.footer-bar {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 10px 24px;
    background-color: var(--color-nav-bg);
    backdrop-filter: var(--nav-blur);
    border-radius: 12px;
    position: relative;
    margin-bottom: 5px;
}

.footer-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    min-width: 0;
}

.footer-brand-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-brand-link.de { display: none; }

.footer-brand-link:hover .footer-brand-name { color: var(--color-highlight); }
.footer-brand-link:hover .footer-brand-sub   { opacity: 1; }


.footer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--color-item-bg);
    border: 2px solid rgba(var(--color-accent), 0.4);
}

.footer-avatar img { width: 100%; height: 100%; object-fit: cover; }
.footer-brand      { display: flex; flex-direction: column; gap: 2px; }

.footer-brand-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: color var(--transition);
}

.footer-brand-name:hover { color: var(--color-highlight); }

.footer-brand-sub {
    font-size: 0.7rem;
    color: var(--color-highlight);
    opacity: 0.7;
    letter-spacing: 0.03em;
    text-decoration: none;
    transition: opacity var(--transition);
}

.footer-brand-sub:hover { opacity: 1; }

.footer-divider   { width: 1px; height: 32px; background-color: var(--color-border-subtle); flex-shrink: 0; }

.footer-visit-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background: rgba(var(--color-highlight-rgb), 0.15);
    color: var(--color-highlight);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: filter var(--transition);
}

.footer-visit-btn:hover { filter: brightness(1.25); }

.footer-contact-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 22px;
    background-color: var(--color-item-bg);
    color: var(--color-text);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 6px;
    flex-shrink: 0;
    position: relative;
    transition: background-color var(--transition), color var(--transition);
}

.footer-contact-btn:hover { background-color: rgba(var(--color-hover-rgb), .38); color: #fff; }
.footer-contact-btn.de    { display: none; }
#lang-de:checked ~ .container .footer-contact-btn.de { display: flex; }
#lang-de:checked ~ .container .footer-contact-btn.en { display: none; }


/* Footer Links Bar */

.footer-links-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 32px;
    padding: 32px;
    border-radius: 10px;
    background-color: rgba(31, 24, 86, .42);
    backdrop-filter: var(--nav-blur);
    margin-bottom: 12px;
}

.footer-col-title {
    margin: 0 0 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-highlight);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border-subtle);
    border-radius: 0;
}

.footer-col-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col-links li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: var(--color-text);
    text-decoration: none;
    opacity: 0.65;
    transition: opacity var(--transition), color var(--transition);
}

.footer-col-links li a:hover {
    opacity: 1;
    color: var(--color-highlight);
}

.footer-col-showall {
    margin-top: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}
.footer-col-showall::after { content: " →"; }

.footer-col-wide { grid-column: span 2; }
.footer-col-wide .footer-col-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
}

/* Platform badges — add class "delete" to any badge in HTML to hide it */
.plat-badge {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 1px 4px;
    border-radius: 3px;
    line-height: 1.5;
    text-transform: uppercase;
    flex-shrink: 0;
}
.plat-badge.delete,
.detail-tag.delete { display: none; }
.plat-xbox { background-color: rgba(16, 124, 16, 0.25); color: #6ecf6e; border: 1px solid rgba(16, 124, 16, 0.45); }
.plat-psn  { background-color: rgba(0, 67, 156, 0.25);  color: #7ab2f8; border: 1px solid rgba(0, 67, 156, 0.45); }
.plat-pc     { background-color: rgba(150, 120, 220, 0.2);  color: var(--color-text);  border: 1px solid rgba(150, 120, 220, 0.35); }
.plat-red    { background-color: rgba(200, 40, 40, 0.25);   color: #f28a8a;            border: 1px solid rgba(200, 40, 40, 0.45); }
.plat-yellow { background-color: rgba(200, 170, 0, 0.25);   color: #f0d060;            border: 1px solid rgba(200, 170, 0, 0.45); }
.plat-pink   { background-color: rgba(200, 60, 140, 0.25);  color: #f090c8;            border: 1px solid rgba(200, 60, 140, 0.45); }
.plat-orange { background-color: rgba(200, 100, 20, 0.25);  color: #f0a060;            border: 1px solid rgba(200, 100, 20, 0.45); }
.plat-white  { background-color: rgba(255, 255, 255, 0.1);  color: #ffffff;            border: 1px solid rgba(255, 255, 255, 0.25); }
.plat-black  { background-color: rgba(0, 0, 0, 0.4);        color: #888888;            border: 1px solid rgba(255, 255, 255, 0.12); }

/* Footer Legal */

.footer-legal { text-align: center; display: flex; flex-direction: column; gap: 8px; padding: 24px 32px; }
.footer-legal p { margin: 0; font-size: 0.75rem; color: rgba(185, 198, 245, 0.5); line-height: 1.6; }
