/* ============================================================
   OROZINO CASINO — Global Design System
   Domain: orazino.de | © 2024 Orozino Casino
   ============================================================ */

/* -- Fonts -- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* -- Design Tokens -- */
:root {
    --bg-deepest: #080910;
    --bg-dark: #0D0E17;
    --bg-card: #111320;
    --bg-glass: rgba(255, 255, 255, 0.04);
    --bg-glass2: rgba(255, 255, 255, 0.07);
    --gold: #C8A84B;
    --gold-light: #F0D070;
    --gold-dark: #A07830;
    --purple: #7B2FBE;
    --purple-light: #9B4FDE;
    --purple-glow: rgba(123, 47, 190, 0.25);
    --text-white: #F0F0F5;
    --text-gray: #9A9AAF;
    --text-muted: #5A5A72;
    --border: rgba(200, 168, 75, 0.18);
    --border-card: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --font-head: 'Inter', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --shadow-gold: 0 4px 32px rgba(200, 168, 75, 0.18);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* -- Reset & Base -- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 80% 50% at 20% 10%, rgba(123, 47, 190, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 90%, rgba(200, 168, 75, 0.06) 0%, transparent 55%);
}

/* -- Skip link -- */
.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--gold);
    color: #000;
    padding: 8px 16px;
    font-weight: 700;
    z-index: 9999;
    border-radius: 0 0 8px 0;
}

.skip-link:focus {
    left: 0;
}

/* -- Container -- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 500;
    background: rgba(8, 9, 16, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-link img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--gold);
    letter-spacing: 1px;
}

/* Main nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: color var(--transition), background var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
    background: rgba(200, 168, 75, 0.08);
}

/* Header actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-login {
    padding: 9px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.89rem;
    font-weight: 500;
    transition: all var(--transition);
    background: transparent;
}

.btn-login:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-cta {
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    color: #000;
    letter-spacing: 0.3px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    box-shadow: 0 2px 16px rgba(200, 168, 75, 0.35);
    transition: all var(--transition);
    border: none;
    cursor: pointer;
}

.btn-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(200, 168, 75, 0.5);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(8, 9, 16, 0.97);
    z-index: 499;
    padding: 32px 24px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-card);
    transition: all var(--transition);
}

.mobile-menu a:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 168, 75, 0.06);
}

.mobile-cta-wrap {
    margin-top: 16px;
}

.mobile-cta-wrap .btn-cta {
    display: block;
    text-align: center;
    padding: 16px;
    font-size: 1.1rem;
}

/* Mobile sticky tracker */
.mobile-tracker-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 600;
    padding: 10px 16px;
    background: linear-gradient(90deg, #0D0E17, rgba(13, 14, 23, 0.97));
    border-top: 1px solid var(--border);
}

.mobile-tracker-bar a {
    display: block;
    text-align: center;
    padding: 14px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #000;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    letter-spacing: 0.5px;
    animation: pulse-gold 2.5s ease-in-out infinite;
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(200, 168, 75, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(200, 168, 75, 0);
    }
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    filter: brightness(0.55);
    z-index: 0;
}

/* Ensure hero is always position:relative to contain absolute children */
.hero {
    position: relative !important;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 9, 16, 0.9) 0%, rgba(8, 9, 16, 0.4) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

.hero-content .badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(200, 168, 75, 0.15);
    border: 1px solid var(--gold);
    border-radius: 20px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 60%, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(240, 240, 245, 0.82);
    font-size: 1.08rem;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-secondary {
    padding: 12px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all var(--transition);
    background: var(--bg-glass);
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(200, 168, 75, 0.08);
}

/* subpage hero */
.hero-sub {
    min-height: 350px;
}

.hero-sub h1 {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 80px 0;
}

.section-sm {
    padding: 52px 0;
}

.section-dark {
    background: var(--bg-deepest);
}

.section-card-bg {
    background: rgba(17, 19, 32, 0.6);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-header h2 {
    font-family: var(--font-head);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 14px;
    background: linear-gradient(135deg, #fff, var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

.gold-line {
    display: block;
    width: 56px;
    height: 3px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    border-radius: 2px;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--border);
    box-shadow: var(--shadow-card);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--purple), var(--purple-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
}

.card h3 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Grid layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* ============================================================
   BONUS CARD — special
   ============================================================ */
.bonus-hero-card {
    background: linear-gradient(135deg, rgba(200, 168, 75, 0.12), rgba(123, 47, 190, 0.10));
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.bonus-amount {
    font-family: var(--font-head);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    white-space: nowrap;
}

.bonus-desc {
    color: var(--text-gray);
    font-size: 1rem;
    margin-top: 8px;
}

.bonus-terms {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.data-table caption {
    caption-side: top;
    text-align: left;
    font-family: var(--font-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gold);
    padding: 0 0 14px 0;
    letter-spacing: 0.2px;
}

.data-table th {
    background: rgba(200, 168, 75, 0.10);
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.data-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    vertical-align: middle;
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.data-table .good {
    color: #4ade80;
}

.data-table .warn {
    color: #fbbf24;
}

/* ============================================================
   CHARTS — container
   ============================================================ */
.chart-container {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 28px;
    /* Fix: Chart.js with maintainAspectRatio:false needs a height anchor */
    min-height: 0;
}

/* Canvas wrapper — prevents infinite expansion */
.chart-container canvas {
    display: block;
    max-height: 320px !important;
    width: 100% !important;
}

.chart-title {
    font-family: var(--font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-card);
    padding-bottom: 12px;
}

/* Canvas wrapper — Chart.js sizing context */
.canvas-wrap {
    position: relative;
    width: 100%;
    /* height set via inline style per chart */
}

.canvas-wrap canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}



/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.stat-item {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--border-card);
    background: var(--bg-card);
    transition: background var(--transition);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: var(--bg-glass2);
}

.stat-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 4px;
}

/* ============================================================
   GAME GRID
   ============================================================ */
.game-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.game-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 3/4;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition);
    background: var(--bg-card);
    border: 1px solid var(--border-card);
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    padding: 20px 12px 12px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
}

.game-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-item {
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: var(--bg-card);
    border: none;
    cursor: pointer;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    transition: background var(--transition);
}

.faq-question:hover {
    background: var(--bg-glass2);
}

.faq-question .faq-icon {
    color: var(--gold);
    font-size: 1.4rem;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    padding: 14px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 6px;
}

/* ============================================================
   AUTHOR BOX
   ============================================================ */
.author-box {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 24px;
    margin: 40px 0;
}

.author-box img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    flex-shrink: 0;
}

.author-info .author-name {
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.author-info .author-role {
    font-size: 0.82rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.author-info p {
    font-size: 0.87rem;
    color: var(--text-gray);
}

/* ============================================================
   SEO CONTENT SECTION
   ============================================================ */
.seo-content {
    padding: 72px 0;
}

.seo-article {
    max-width: 900px;
}

.seo-article h2 {
    font-family: var(--font-head);
    font-size: 1.55rem;
    font-weight: 800;
    margin: 36px 0 16px;
    color: var(--text-white);
}

.seo-article h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    margin: 28px 0 12px;
    color: var(--gold-light);
}

.seo-article p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.75;
}

.seo-article strong {
    color: var(--text-white);
}

.seo-article a.text-link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-article a.text-link:hover {
    color: var(--gold-light);
}

.seo-article ul {
    padding-left: 20px;
    margin-bottom: 16px;
    color: var(--text-gray);
}

.seo-article ul li {
    margin-bottom: 8px;
    line-height: 1.65;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--bg-deepest);
    border-top: 1px solid var(--border-card);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo-text {
    font-size: 1.4rem;
    margin-bottom: 14px;
    display: block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 300px;
    line-height: 1.65;
}

.footer-col h4 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--gold);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.footer-col ul li a:hover {
    color: var(--text-white);
}

.footer-bottom {
    border-top: 1px solid var(--border-card);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 700px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.badge-18 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e53e3e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.8rem;
    color: #fff;
}

.responsible-link {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-decoration: underline;
}

.responsible-link:hover {
    color: var(--text-white);
}

/* ============================================================
   PAYMENT BADGES
   ============================================================ */
.payment-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pay-badge {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 10px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-badge .pay-icon {
    font-size: 1.2rem;
}

/* ============================================================
   APP SECTION SPECIAL
   ============================================================ */
.store-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-white);
    transition: all var(--transition);
}

.store-btn:hover {
    border-color: var(--gold);
    background: rgba(200, 168, 75, 0.06);
}

.store-btn .store-icon {
    font-size: 2rem;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn-text small {
    font-size: 0.72rem;
    color: var(--text-gray);
}

.store-btn-text strong {
    font-size: 0.95rem;
}

/* ============================================================
   TOOLTIP / BADGE ELEMENTS
   ============================================================ */
.tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
    background: rgba(200, 168, 75, 0.15);
    color: var(--gold);
    border: 1px solid rgba(200, 168, 75, 0.3);
    margin: 2px;
}

.tag-new {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.3);
}

.tag-hot {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border-color: rgba(251, 191, 36, 0.3);
}

.tag-live {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border-color: rgba(239, 68, 68, 0.3);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.6
    }
}

/* ============================================================
   PROGRESS / RTP BAR
   ============================================================ */
.rtp-bar-wrap {
    margin: 10px 0;
}

.rtp-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-bottom: 6px;
    color: var(--text-gray);
}

.rtp-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    overflow: hidden;
}

.rtp-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

/* ============================================================
   FORMS (Login/Register)
   ============================================================ */
.form-wrap {
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-wrap h1 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.form-wrap .form-sub {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
    outline: none;
}

.form-group input:focus {
    border-color: var(--gold);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-submit {
    width: 100%;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.form-footer a {
    color: var(--gold);
    text-decoration: none;
}

/* ============================================================
   GLASSMORPHISM PANELS
   ============================================================ */
.glass-panel {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-lg);
    padding: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .header-actions .btn-login {
        display: none;
    }

    .mobile-tracker-bar {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }

    .hero {
        min-height: 400px;
    }

    .hero-bg::after {
        background: linear-gradient(to bottom, transparent, rgba(8, 9, 16, 0.95));
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .bonus-hero-card {
        gap: 24px;
        padding: 28px;
    }

    .bonus-amount {
        font-size: 2.5rem;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
    }

    .section {
        padding: 52px 0;
    }
}

@media (max-width: 480px) {

    .container,
    .container-wide {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr;
    }

    .game-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-wrap {
        padding: 24px 20px;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s var(--transition) both;
}

.fade-in-up-delay-1 {
    animation-delay: 0.1s;
}

.fade-in-up-delay-2 {
    animation-delay: 0.22s;
}

.fade-in-up-delay-3 {
    animation-delay: 0.34s;
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-page {
    text-align: center;
    padding: 120px 24px;
}

.error-page .error-num {
    font-size: 8rem;
    font-weight: 900;
    font-family: var(--font-head);
    color: var(--gold);
    opacity: 0.15;
    line-height: 1;
}

.error-page h1 {
    font-size: 2rem;
    margin: -20px 0 16px;
}

.error-page p {
    color: var(--text-gray);
    margin-bottom: 32px;
}

/* ============================================================
   OROZINO — Extra Utilities (appended separately)
   ============================================================ */

/* Store buttons (app page) */
.store-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(200, 168, 75, 0.2);
    border-radius: 12px;
    padding: 10px 20px;
    color: var(--text-white);
    text-decoration: none;
    transition: all var(--transition);
}

.store-btn:hover {
    background: rgba(200, 168, 75, 0.1);
    border-color: var(--gold);
}

.store-icon {
    font-size: 1.8rem;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
}

.store-btn-text small {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.store-btn-text strong {
    font-size: 0.95rem;
}

/* RTP progress bars */
.rtp-bar-wrap {
    margin-bottom: 12px;
}

.rtp-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 5px;
    color: var(--text-gray);
}

.rtp-bar-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.rtp-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    transition: width 1.2s ease;
}

/* Tags */
.tag {
    display: inline-block;
    background: rgba(200, 168, 75, 0.12);
    color: var(--gold);
    border-radius: 20px;
    font-size: 0.75rem;
    padding: 3px 10px;
    border: 1px solid rgba(200, 168, 75, 0.25);
    margin-top: 10px;
}

.tag-new {
    background: rgba(74, 222, 128, 0.12);
    color: #4ade80;
    border-color: rgba(74, 222, 128, 0.3);
}

.tag-hot {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.3);
}

.tag-live {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border-color: rgba(239, 68, 68, 0.35);
    animation: pulse-live 1.5s infinite;
}

@keyframes pulse-live {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

/* Author page */
.author-page-hero {
    padding: 80px 0 60px;
    text-align: center;
}

.author-portrait-lg {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold);
    box-shadow: 0 0 40px rgba(200, 168, 75, 0.2);
    margin: 0 auto 24px;
    display: block;
}

/* Login / Register forms */
.auth-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 16px;
}

.form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 460px;
    width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
}

.form-title {
    font-family: var(--font-head);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.form-subtitle {
    color: var(--text-gray);
    font-size: 0.9rem;
    text-align: center;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-gray);
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--text-white);
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: border-color var(--transition);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    color: var(--text-gray);
    font-size: 0.875rem;
}

.form-footer a {
    color: var(--gold);
    text-decoration: none;
}

/* Legal pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px;
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-content h1 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 8px;
}

.legal-content .legal-date {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 36px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 14px;
}

/* Section SM */
.section-sm {
    padding: 28px 0;
}

/* Good/warn cells in tables */
.good {
    color: #4ade80;
}

.warn {
    color: #fbbf24;
}

/* Text links */
.text-link {
    color: var(--gold);
    text-decoration: underline;
    text-decoration-color: rgba(200, 168, 75, 0.35);
    text-underline-offset: 3px;
    transition: color var(--transition);
}

.text-link:hover {
    color: var(--gold-light);
}