/* Cinzel Font */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&display=swap');

/* Base typography: normal text (no caps) */
html, body,
p, a, li, span,
.banner-content p,
.banner-content__subtitle,
.faq-item__content p,
.why-item__content p,
.how-item__content p,
.footer-links a,
.nav-link,
.site-nav a {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    text-transform: none !important;
    color: #f9fafb;
    -webkit-font-smoothing: antialiased;
}

/* Headings CAPS */
h1, h2, h3, h4, h5, h6,
.banner-content__title,
.section-header__title,
.title {
    font-family: 'Cinzel', serif !important;
    letter-spacing: 0.5px;
    text-transform: uppercase !important;
    color: #ffffff;
}

/* Menu CAPS */
.menu li a {
    font-family: 'Cinzel', serif !important;
    letter-spacing: 0.5px;
    text-transform: uppercase !important;
    color: #9be8ff !important;
    text-shadow: 0 0 6px rgba(0,255,255,0.22);
}

/* Language label (Sprache) CAPS-style too */
.lang-switcher span {
    font-family: 'Cinzel', serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em;
    color: #9be8ff !important;
    text-shadow: 0 0 6px rgba(0,255,255,0.22);
}

/* Navigation hover */
.menu li a:hover,
.nav-link:hover,
.site-nav a:hover {
    color: #d2f9ff !important;
    text-shadow: 0 0 10px rgba(0,255,255,0.45);
}

/* Global theme tokens */
:root {
    --bg-main: #050816;
    --bg-alt: #070d24;
    --bg-card: rgba(12, 17, 40, 0.96);
    --bg-chip: #0d1636;

    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --text-soft: #cbd5f5;
    --text-danger: #f97373;
    --text-success: #4ade80;

    --accent: #00e4ff;
    --accent-strong: #ffd857;
    --accent-soft: rgba(0, 228, 255, 0.18);
    --accent-soft-strong: rgba(255, 216, 87, 0.18);

    --border-subtle: rgba(148, 163, 184, 0.3);
    --border-strong: rgba(148, 163, 184, 0.55);

    --shadow-soft: 0 20px 55px rgba(5, 10, 25, 0.9);

    --radius-sm: 10px;
    --radius-lg: 18px;
    --radius-xl: 26px;

    --transition-fast: 0.18s ease-out;
    --transition-med: 0.25s ease-out;

    --slotuna-teal-1: #4be3f5;
    --slotuna-teal-2: #1e9fb2;
    --slotuna-teal-3: #106d84;
}

/* Base */
html, body {
    background: radial-gradient(circle at top,
        #151c3f 0,
        #070b21 32%,
        #050816 68%,
        #020314 100%);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast), opacity var(--transition-fast);
    text-transform: none !important;
}
a:hover {
    color: #7cf3ff;
    opacity: .9;
}

.container {
    max-width: 1180px;
    margin-inline: auto;
    padding-inline: 16px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(
        to bottom,
        rgba(5, 8, 22, 0.96) 0%,
        rgba(5, 8, 22, 0.92) 60%,
        rgba(5, 8, 22, 0) 100%
    );
    border-bottom: 1px solid rgba(148,163,184,0.16);
}

.header-bottom-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 38px;
    width: auto;
}

/* Navigation */
.menu {
    display: flex;
    align-items: center;
    gap: 26px;
}
.menu li a {
    font-size: 15px;
    letter-spacing: .04em;
    border-bottom: 2px solid transparent;
    padding-bottom: 4px;
    transition: all .25s ease;
}
.menu li a:hover {
    border-color: #00e4ff;
}
.menu li .is-active {
    border-color: var(--accent-strong);
}

/* =========================
   Language switchers – new version
   (buttons + dropdown)
========================== */
.lang-switcher,
.lang-switcher-mobile {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-switcher-toggle,
.lang-switcher-toggle-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: rgba(15, 23, 42, 0.88);
    color: #e5e7eb;
    font-size: 13px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.18s ease-out, border-color 0.18s ease-out, box-shadow 0.18s ease-out;
}

.lang-switcher-toggle i,
.lang-switcher-toggle-mobile i {
    font-size: 14px;
}

.lang-switcher-toggle:hover,
.lang-switcher-toggle-mobile:hover {
    background: rgba(15, 23, 42, 0.98);
    border-color: rgba(96, 165, 250, 0.8);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.5);
}

.lang-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.8;
}

.lang-current-code {
    font-weight: 600;
}

.lang-dropdown,
.lang-dropdown-mobile {
    position: absolute;
    top: 110%;
    right: 0;
    margin: 0;
    padding: 6px;
    list-style: none;
    background: rgba(15, 23, 42, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    min-width: 170px;
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.9);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.16s ease-out, transform 0.16s ease-out, visibility 0.16s ease-out;
    z-index: 9999;
}

.lang-switcher.is-open .lang-dropdown,
.lang-switcher-mobile.is-open .lang-dropdown-mobile {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown li,
.lang-dropdown-mobile li {
    margin: 0;
}

.lang-dropdown a,
.lang-dropdown-mobile a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 6px 9px;
    border-radius: 8px;
    color: #e5e7eb;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.lang-dropdown a span.lang-native {
    font-weight: 500;
}

.lang-dropdown a span.lang-code,
.lang-dropdown-mobile a span.lang-code {
    font-size: 11px;
    opacity: 0.8;
}

.lang-dropdown a:hover,
.lang-dropdown-mobile a:hover {
    background: rgba(37, 99, 235, 0.16);
    color: #f9fafb;
}

/* mobile small tweak */
.lang-switcher-mobile span {
    font-size: 13px;
    color: #e5e7eb;
    text-shadow: none;
    text-transform: none;
}

/* =========================
   Breadcrumbs
========================== */
.breadcrumb-section {
    background: rgba(15, 23, 42, 0.96);
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    padding: 8px 0;
}

.breadcrumb-nav {
    font-size: 13px;
    color: #9ca3af;
}

.breadcrumb-nav ol {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.breadcrumb-nav a {
    color: #e5e7eb;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
    color: #f9fafb;
}

.breadcrumb-nav .separator {
    opacity: 0.5;
}

.breadcrumb-nav .current {
    color: #9ca3af;
    font-weight: 500;
}

/* =========================
   Back to top button
========================== */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.92);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.85);
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.18s ease-out,
                visibility 0.18s ease-out,
                transform 0.18s ease-out,
                background 0.18s ease-out;
    z-index: 9999;
}

.back-to-top:hover {
    background: rgba(37, 99, 235, 0.95);
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Buttons — CAPS intentionally kept */
.cmn--btn,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background-image: linear-gradient(135deg, #00e4ff 0%, #00ff9c 40%, #ffd857 100%);
    border: none;
    color: #021014;
    box-shadow: 0 12px 30px rgba(0,228,255,0.45);
    transition: transform .25s, box-shadow .25s;
}
.cmn--btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0,228,255,0.65);
}

/* Hero */
.banner-section {
    position: relative;
    padding: 120px 0 80px;
}
.banner-section::before {
    content:"";
    position:absolute;
    inset:0;
    background:#050816;
    opacity:.65;
}
.banner-content__title {
    font-size: 48px;
    color:#fff;
}
.banner-content__subtitle {
    font-size: 18px;
    max-width: 550px;
    color: var(--text-soft);
}

.banner-content p {
    margin-bottom: 1.2rem;
}

.banner-meta {
    font-size: 13px;
    opacity: 0.85;
}

/* Integrated image cards / gallery look */
.section-thumb,
.how-illustration,
.faq-illustration,
.photo-carousel {
    position: relative;
    z-index: 1;
}

.section-thumb::before,
.how-illustration::before,
.faq-illustration::before,
.photo-carousel::before {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 28px;
    background: radial-gradient(circle at top,
        rgba(75, 227, 245, 0.22),
        rgba(12, 16, 40, 0.3));
    opacity: 0.75;
    z-index: -1;
    filter: blur(6px);
}

.section-thumb img,
.how-illustration img,
.faq-illustration img {
    display: block;
    width: 100%;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
    object-fit: cover;
}

.aobut-thumb.section-thumb img {
    max-width: 100%;
}

/* Premium Gallery */
.game-section {
    padding-top: 80px;
    padding-bottom: 120px;
}

.photo-carousel {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.photo-slide {
    padding: 0 12px;
}

.photo-slide img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 22px;
    border: 1px solid rgba(148, 163, 184, 0.55);
    box-shadow: 0 18px 45px rgba(15,23,42,0.9);
    transition: transform .35s ease, box-shadow .35s ease, border-color .25s ease;
}

.photo-slide img:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 26px 70px rgba(15,23,42,1);
    border-color: rgba(75, 227, 245, 0.85);
}

/* Why & How section icons */
.why-item__thumb,
.how-item__thumb {
    background: radial-gradient(
        circle at 30% 20%,
        var(--slotuna-teal-1) 0%,
        var(--slotuna-teal-2) 55%,
        var(--slotuna-teal-3) 100%
    ) !important;
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.85);
}

.why-item__thumb i,
.how-item__thumb i {
    color: #e6fdff;
}

.badge--lg.badge--round.radius-50 {
    background: #00131f !important;
    border: 1px solid rgba(75, 227, 245, 0.9);
    color: #e6fdff !important;
}

/* Slick arrows */
.slick-prev, .slick-next {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    z-index: 999;
    transition: .3s ease;
}
.slick-prev:hover, .slick-next:hover {
    background: rgba(255,255,255,0.18);
}

/* Slick dots */
.slick-dots li button:before {
    font-size: 14px !important;
    color: rgba(255,255,255,0.85);
}
.slick-dots li.slick-active button:before {
    color: #ffc827 !important;
    text-shadow: 0 0 10px #ffc827;
}

/* Crystal Button — CAPS kept */
.crystal-btn {
    font-family: "Cinzel", serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.5px;
    padding: 14px 38px;
    border-radius: 12px;
    color: #e8ffff;
    text-transform: uppercase;
    background: linear-gradient(180deg, #4be3f5 0%, #1e9fb2 60%, #106d84 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        inset 0 4px 8px rgba(255, 255, 255, 0.4),
        inset 0 -4px 10px rgba(0, 0, 0, 0.4),
        0 6px 18px rgba(0, 240, 255, 0.35);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.crystal-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 5px 12px rgba(255, 255, 255, 0.55),
        inset 0 -4px 14px rgba(0, 0, 0, 0.55),
        0 10px 25px rgba(0, 240, 255, 0.55);
}

.crystal-btn:active {
    transform: translateY(0px);
    box-shadow:
        inset 0 3px 6px rgba(0, 0, 0, 0.65),
        0 4px 12px rgba(0, 240, 255, 0.25);
}

/* Responsive */
@media (max-width: 991.98px) {
    .lang-switcher {
        display: none !important;
    }

    .photo-slide img {
        height: 260px;
    }

    .banner-content__title {
        font-size: 32px;
    }
}

@media (max-width: 575.98px) {
    .lang-switcher-toggle-mobile {
        padding: 5px 10px;
        font-size: 12px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
}

@media (min-width: 992px) {
    .lang-switcher-mobile {
        display: none !important;
    }
}
