
/* CSS Custom Properties for Dark Theme */
:root {
    --bg-primary: #0f0817;
    --bg-secondary: #1a1229;
    --bg-tertiary: #251938;
    --bg-card: #1f1532;
    --bg-card-hover: #2a1f3d;
    --purple-primary: #a855f7;
    --purple-secondary: #9333ea;
    --purple-light: #c084fc;
    --purple-dark: #7c3aed;
    --purple-glow: rgba(168, 85, 247, 0.3);
    --text-primary: #e8e4f0;
    --text-secondary: #b8b0c8;
    --text-muted: #8b7fa0;
    --text-dim: #6b5f7f;
    --accent-gold: #fbbf24;
    --accent-green: #10b981;
    --accent-red: #ef4444;
    --accent-blue: #3b82f6;
    --border-color: rgba(168, 85, 247, 0.2);
    --border-hover: rgba(168, 85, 247, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 24px var(--purple-glow);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a0b2e 50%, var(--bg-primary) 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--purple-primary);
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 100;
    border-radius: 0 0 8px 0;
}

    .skip-link:focus {
        top: 0;
    }

header {
    background: rgba(15, 8, 23, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

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

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

nav a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

    nav a:hover {
        color: var(--purple-light);
    }

    nav a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--purple-primary);
        transition: width 0.3s ease;
    }

    nav a:hover::after {
        width: 100%;
    }

.cta-button {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-secondary) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-glow);
}

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 0 32px var(--purple-glow);
    }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero {
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
        pointer-events: none;
        animation: pulse 4s ease-in-out infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--purple-light) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 900px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.8;
}

.key-takeaways {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

    .key-takeaways::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--purple-primary), var(--accent-gold));
    }

    .key-takeaways h2 {
        font-size: 1.75rem;
        color: var(--purple-light);
        margin-bottom: 1.5rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .key-takeaways h2::after {
            display: none;
        }

    .key-takeaways ul {
        list-style: none;
        display: grid;
        gap: 1rem;
    }

    .key-takeaways li {
        padding-left: 2rem;
        position: relative;
        color: var(--text-secondary);
        line-height: 1.8;
    }

        .key-takeaways li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: bold;
            font-size: 1.25rem;
        }

section {
    margin: 5rem 0;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 0.75rem;
}

    h2::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--purple-primary), transparent);
    }

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 2.5rem 0 1.25rem;
    color: var(--purple-light);
}

h4 {
    font-size: 1.35rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

    .card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--purple-primary), var(--purple-secondary));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .card:hover {
        border-color: var(--border-hover);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
        background: var(--bg-card-hover);
    }

        .card:hover::before {
            transform: scaleX(1);
        }

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.card h3 {
    margin-top: 0;
    font-size: 1.5rem;
}

.card h4 {
    margin-top: 0;
    font-size: 1.3rem;
}

.info-box {
    background: rgba(168, 85, 247, 0.1);
    border-left: 4px solid var(--purple-primary);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 2rem 0;
}

    .info-box.warning {
        background: rgba(251, 191, 36, 0.1);
        border-left-color: var(--accent-gold);
    }

    .info-box.success {
        background: rgba(16, 185, 129, 0.1);
        border-left-color: var(--accent-green);
    }

    .info-box.danger {
        background: rgba(239, 68, 68, 0.1);
        border-left-color: var(--accent-red);
    }

ul, ol {
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: var(--text-secondary);
}

li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

ul ul, ol ol {
    margin: 0.5rem 0;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

thead {
    background: linear-gradient(135deg, var(--purple-secondary) 0%, var(--purple-dark) 100%);
}

th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: white;
}

td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

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

tbody tr {
    transition: var(--transition);
}

    tbody tr:hover {
        background: var(--bg-tertiary);
    }

.faq-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: var(--shadow-lg);
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

    .faq-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--purple-light);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

    .faq-question::before {
        content: 'Q:';
        color: var(--accent-gold);
        font-weight: 700;
        flex-shrink: 0;
    }

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 2rem;
}

.trust-section {
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    margin: 4rem 0;
    text-align: center;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.trust-badge {
    padding: 1.5rem;
}

.trust-badge-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.trust-badge h4 {
    color: var(--text-primary);
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

.trust-badge p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, var(--purple-secondary) 0%, var(--purple-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 4rem 2rem;
    text-align: center;
    margin: 5rem 0;
    box-shadow: var(--shadow-glow);
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
        opacity: 0.3;
    }

    .cta-section h2 {
        color: white;
        font-size: 2.5rem;
        margin-bottom: 1rem;
        position: relative;
    }

        .cta-section h2::after {
            display: none;
        }

    .cta-section p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.25rem;
        margin-bottom: 2rem;
        position: relative;
    }

    .cta-section .cta-button {
        background: white;
        color: var(--purple-secondary);
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    }

        .cta-section .cta-button:hover {
            background: var(--text-primary);
        }

footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--purple-light);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 0.5rem 0;
}

    .footer-section a:hover {
        color: var(--purple-light);
        padding-left: 0.5rem;
    }

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.responsible-gaming {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--accent-red);
    border-radius: var(--border-radius);
    padding: 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.conclusion-box {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-tertiary) 100%);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    margin: 3rem 0;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem 1.25rem;
    }

    nav ul {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    nav li {
        width: 100%;
    }

    nav a, .cta-button {
        display: block;
        text-align: center;
        width: 100%;
    }

    .hero {
        padding: 3rem 0 2rem;
    }

        .hero h1 {
            font-size: 2.25rem;
        }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    h4 {
        font-size: 1.2rem;
    }

    .card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .key-takeaways, .faq-section, .trust-section, .conclusion-box {
        padding: 1.5rem;
    }

    table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #e0e0e0;
        --border-color: rgba(168, 85, 247, 0.5);
    }
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--purple-primary);
    border-radius: 6px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--purple-light);
    }


/* Burger button styles (hidden on desktop) */
.burger-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-btn span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f0918;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        padding: 20px 0;
    }
    
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    
    .header-content {
        position: relative;
    }
    
    /* Animate burger button */
    .burger-btn.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .burger-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .burger-btn.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
}