/* 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: #fdf5e6;
    -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: #fffaf0;
}

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

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

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

/* Global theme tokens */
:root {
    --bg-main: #120905;
    --bg-alt: #1a1009;
    --bg-card: rgba(35, 20, 12, 0.96);
    --bg-chip: #28160c;

    --text-main: #fdf5e6;
    --text-muted: #b39b86;
    --text-soft: #f0dfc2;
    --text-danger: #f97362;
    --text-success: #7bbf6a;

    --accent: #ffb347;
    --accent-strong: #ffcc66;
    --accent-soft: rgba(255, 179, 71, 0.18);
    --accent-soft-strong: rgba(255, 204, 102, 0.18);

    --border-subtle: rgba(191, 149, 96, 0.35);
    --border-strong: rgba(191, 149, 96, 0.7);

    --shadow-soft: 0 20px 55px rgba(15, 6, 2, 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: #ffb347;
    --slotuna-teal-2: #d9773f;
    --slotuna-teal-3: #7c2d12;
}

/* Base */
html, body {
    background: radial-gradient(circle at top,
        #3b2414 0,
        #1f130a 32%,
        #120905 68%,
        #0a0502 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: #ffd9a0;
    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(18, 9, 5, 0.96) 0%,
        rgba(18, 9, 5, 0.92) 60%,
        rgba(18, 9, 5, 0) 100%
    );
    border-bottom: 1px solid rgba(191, 149, 96, 0.3);
}

.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: var(--accent);
}
.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(191, 149, 96, 0.55);
    background: rgba(38, 21, 11, 0.92);
    color: var(--text-main);
    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(38, 21, 11, 0.98);
    border-color: rgba(255, 193, 123, 0.85);
    box-shadow: 0 0 0 1px rgba(255, 193, 123, 0.6);
}

.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(38, 21, 11, 0.98);
    border-radius: 12px;
    border: 1px solid rgba(191, 149, 96, 0.6);
    min-width: 170px;
    box-shadow: 0 20px 45px rgba(18, 9, 5, 0.95);
    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: var(--text-main);
    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(191, 128, 70, 0.2);
    color: #fff5e1;
}

/* mobile small tweak */
.lang-switcher-mobile span {
    font-size: 13px;
    color: var(--text-main);
    text-shadow: none;
    text-transform: none;
}

/* =========================
   Breadcrumbs
========================== */
.breadcrumb-section {
    background: rgba(38, 21, 11, 0.96);
    border-bottom: 1px solid rgba(191, 149, 96, 0.4);
    padding: 8px 0;
}

.breadcrumb-nav {
    font-size: 13px;
    color: var(--text-muted);
}

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

.breadcrumb-nav a {
    color: var(--text-main);
    text-decoration: none;
}

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

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

.breadcrumb-nav .current {
    color: var(--text-muted);
    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(38, 21, 11, 0.94);
    box-shadow: 0 14px 30px rgba(18, 9, 5, 0.9);
    color: var(--text-main);
    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(191, 120, 60, 0.98);
}

.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, #ffb347 0%, #ff9966 40%, #ffcc66 100%);
    border: none;
    color: #1a0f08;
    box-shadow: 0 12px 30px rgba(191, 120, 60, 0.7);
    transition: transform .25s, box-shadow .25s;
}
.cmn--btn:hover,
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(191, 120, 60, 0.95);
}

/* Hero */
.banner-section {
    position: relative;
    padding: 120px 0 80px;
}
.banner-section::before {
    content:"";
    position:absolute;
    inset:0;
    background:#120905;
    opacity:.7;
}
.banner-content__title {
    font-size: 48px;
    color:#fffaf0;
}
.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(255, 184, 108, 0.26),
        rgba(38, 21, 11, 0.45));
    opacity: 0.8;
    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(191, 149, 96, 0.7);
    box-shadow: 0 18px 45px rgba(18, 9, 5, 0.96);
    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(191, 149, 96, 0.8);
    box-shadow: 0 18px 45px rgba(18, 9, 5, 0.96);
    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(12, 5, 2, 1);
    border-color: rgba(255, 193, 123, 0.95);
}

/* 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(255, 184, 108, 0.9);
}

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

.badge--lg.badge--round.radius-50 {
    background: #1a0f08 !important;
    border: 1px solid rgba(255, 193, 123, 0.9);
    color: #fff6e0 !important;
}

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

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

/* 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: #2b1308;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffe3b3 0%, #e59b46 60%, #a9471c 100%);
    border: 2px solid rgba(255, 239, 213, 0.55);
    box-shadow:
        inset 0 4px 8px rgba(255, 249, 230, 0.6),
        inset 0 -4px 10px rgba(60, 25, 10, 0.55),
        0 6px 18px rgba(191, 120, 60, 0.7);
    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, 251, 230, 0.8),
        inset 0 -4px 14px rgba(60, 25, 10, 0.7),
        0 10px 25px rgba(191, 120, 60, 0.95);
}

.crystal-btn:active {
    transform: translateY(0px);
    box-shadow:
        inset 0 3px 6px rgba(40, 18, 7, 0.85),
        0 4px 12px rgba(191, 120, 60, 0.55);
}

/* 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;
    }
}
