/* Premium Alpine Casino Style Variables */
:root {
    --bg-primary: #060d0b;
    --bg-secondary: #0c1a16;
    --bg-accent-glass: rgba(15, 36, 30, 0.7);
    --primary-gold: #d4af37;
    --primary-gold-glow: rgba(212, 175, 55, 0.4);
    --gold-gradient: linear-gradient(135deg, #fff2a3 0%, #d4af37 50%, #946b15 100%);
    --austrian-red: #ae2222;
    --text-light: #f4f8f6;
    --text-muted: #8fa39d;
    --border-gold: rgba(212, 175, 55, 0.2);
    --border-glass: rgba(255, 255, 255, 0.05);
    --font-heading: 'Montserrat', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-primary);
    color: var(--text-light);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
}

strong {
    color: var(--primary-gold);
}

/* Reuseable Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.small-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.bg-alt {
    background-color: var(--bg-secondary);
}

.grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(174, 34, 34, 0.2);
    border: 1px solid var(--austrian-red);
    color: #ff9e9e;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header Styling */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 13, 11, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    max-width: 220px;
}

.main-logo {
    width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--primary-gold-glow);
}

.btn-primary-glow {
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    box-shadow: inset 0 0 8px rgba(212, 175, 55, 0.1);
}

.btn-primary-glow:hover {
    background: var(--gold-gradient);
    color: #000000;
    box-shadow: 0 0 20px var(--primary-gold-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--text-muted);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 0 120px 0;
    background: radial-gradient(circle at 80% 20%, #112d23 0%, var(--bg-primary) 70%);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54 48c-2 0-3 1-4 2v4c0 1-1 2-2 2H4c-1 0-2-1-2-2v-4c0-1-1-2-4-2v-2c3 0 4-1 4-2v-4c0-1 1-2 2-2h44c1 0 2 1 2 2v4c0 1 1 2 4 2v2zM30 20c-2 0-3 1-4 2v4c0 1-1 2-2 2H4c-1 0-2-1-2-2v-4c0-1-1-2-4-2v-2c3 0 4-1 4-2v-4c0-1 1-2 2-2h20c1 0 2 1 2 2v4c0 1 1 2 4 2v2z' fill='%23ffffff' fill-opacity='0.01' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.hero-content {
    max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #c4decb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Section Header styling */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.left-aligned {
    text-align: left;
    margin-bottom: 32px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.header-line {
    width: 80px;
    height: 4px;
    background: var(--gold-gradient);
    margin: 0 auto;
    border-radius: 2px;
}

.header-line.left-aligned {
    margin: 0;
}

/* Premium Figures & Images */
.premium-figure {
    margin: 0;
}

.img-glow-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.img-glow-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.2);
    pointer-events: none;
    z-index: 2;
}

.img-glow-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-smooth);
}

.img-glow-wrapper:hover img {
    transform: scale(1.03);
}

figcaption {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

/* Tables Custom Layout */
.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table-card {
    background: var(--bg-accent-glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th, td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

th {
    font-family: var(--font-heading);
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

td {
    font-size: 0.95rem;
}

tbody tr:last-child td {
    border-bottom: none;
}

tbody tr:hover {
    background: rgba(212, 175, 55, 0.03);
}

/* Step list ordered styling */
.styled-list-ol {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 24px;
    height: 100%;
    position: relative;
    transition: var(--transition-smooth);
}

.step-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-4px);
}

.step-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: rgba(212, 175, 55, 0.2);
    margin-bottom: 8px;
}

.info-note {
    background: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--primary-gold);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin-top: 40px;
}

.info-note p {
    margin-bottom: 0;
    color: var(--text-light);
}

/* RTP split custom cards */
.rtp-card-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 24px;
}

.rtp-text-box {
    background: linear-gradient(145deg, #0f241e, #060d0b);
    border: 1px solid var(--border-glass);
    padding: 32px;
    border-radius: 16px;
    position: relative;
}

.rtp-text-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gold-gradient);
    border-radius: 16px 16px 0 0;
}

/* Glass cards for grid layout */
.glass-card {
    background: var(--bg-accent-glass);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 32px;
    position: relative;
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-gold);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.05);
}

.glass-card h3 {
    font-size: 1.35rem;
    margin-bottom: 16px;
    color: var(--primary-gold);
}

.full-width-card {
    grid-column: 1 / -1;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Status Badges for evaluation table */
.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.neutral {
    background: rgba(255, 255, 255, 0.1);
    color: #e0e0e0;
}

.status-badge.danger {
    background: rgba(174, 34, 34, 0.15);
    color: #ff8888;
    border: 1px solid rgba(174, 34, 34, 0.3);
}

.status-badge.positive {
    background: rgba(40, 167, 69, 0.15);
    color: #81e697;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Accents for Pros & Cons */
.card-header-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    border-radius: 16px 16px 0 0;
}

.pros-accent {
    background: #28a745;
}

.cons-accent {
    background: var(--austrian-red);
}

/* Lists styling inside sections */
.styled-list-ul {
    list-style: none;
}

.styled-list-ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.pros-list li::before, .check-list li::before, .tips-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.cons-list li::before, .cross-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: var(--austrian-red);
    font-weight: bold;
}

.tips-list li::before {
    color: var(--primary-gold);
}

/* Responsible Box */
.responsible-box {
    background: linear-gradient(135deg, #1f0b0b 0%, #0d0606 100%);
    border: 1px solid rgba(174, 34, 34, 0.2);
    border-radius: 16px;
    padding: 40px;
    margin-top: 40px;
}

.responsible-box h2 {
    color: #ff8888;
    margin-bottom: 16px;
}

.responsible-box p {
    color: #d9c5c5;
    margin-bottom: 0;
}

/* Center layouts */
.simple-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-top: 24px;
}

.conclusion-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-top: 24px;
}

/* FAQ Accordion Layout */
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.faq-trigger h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

/* Horizontal line */
.faq-icon::before {
    top: 7px;
    left: 0;
    width: 16px;
    height: 2px;
}

/* Vertical line */
.faq-icon::after {
    top: 0;
    left: 7px;
    width: 2px;
    height: 16px;
}

.faq-item.active .faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
    padding: 0 24px;
}

.faq-panel p {
    padding-bottom: 24px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.faq-item.active {
    border-color: var(--border-gold);
    background: var(--bg-accent-glass);
}

/* Footer styling */
.site-footer {
    background: #030706;
    padding: 60px 0;
    border-top: 1px solid var(--border-glass);
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.3);
    max-width: 700px;
    margin-bottom: 0;
}

.footer-copy {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.2);
    margin-bottom: 0;
}

/* Animations / Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .grid-2col {
        gap: 32px;
    }
    .grid-3col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .grid-2col {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .reverse-mobile {
        direction: rtl;
    }
    .reverse-mobile .text-content, .reverse-mobile .media-container {
        direction: ltr;
    }
    .grid-3col {
        grid-template-columns: 1fr;
    }
    .rtp-card-group {
        grid-template-columns: 1fr;
    }
    .main-nav {
        display: none; /* simple elite approach: focus content on mobile */
    }
    .section-padding {
        padding: 60px 0;
    }
}
