* {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    :root {
        --bg-dark: #0a0a1a;
        --bg-navy: #0f0f2e;
        --accent-red: #ff2d55;
        --accent-orange: #ff9500;
        --accent-yellow: #ffcc00;
        --accent-pink: #ff6b9d;
        --accent-purple: #c44569;
        --text-light: #ffffff;
        --text-muted: #b8b8d1;
        --glow-red: 0 0 20px rgba(255, 45, 85, 0.5);
        --glow-orange: 0 0 20px rgba(255, 149, 0, 0.4);
        --glow-yellow: 0 0 25px rgba(255, 204, 0, 0.5);
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background: var(--bg-dark);
        color: var(--text-light);
        line-height: 1.7;
        overflow-x: hidden;
    }
    .bg-animation {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-navy) 50%, #1a0a2e 100%);
    }
    .bg-animation::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: 
            radial-gradient(ellipse at 20% 80%, rgba(255, 45, 85, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 20%, rgba(255, 149, 0, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse at 40% 40%, rgba(255, 204, 0, 0.08) 0%, transparent 40%);
        animation: pulse 8s ease-in-out infinite;
    }
    @keyframes pulse {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.7; }
    }
    .particles {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: -1;
        overflow: hidden;
    }
    .particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: var(--accent-yellow);
        border-radius: 50%;
        opacity: 0.6;
        animation: float 15s infinite;
    }
    .particle:nth-child(1) { left: 10%; animation-delay: 0s; background: var(--accent-red); }
    .particle:nth-child(2) { left: 20%; animation-delay: 2s; background: var(--accent-orange); }
    .particle:nth-child(3) { left: 35%; animation-delay: 4s; background: var(--accent-yellow); }
    .particle:nth-child(4) { left: 50%; animation-delay: 1s; background: var(--accent-pink); }
    .particle:nth-child(5) { left: 65%; animation-delay: 3s; background: var(--accent-red); }
    .particle:nth-child(6) { left: 80%; animation-delay: 5s; background: var(--accent-orange); }
    .particle:nth-child(7) { left: 90%; animation-delay: 2.5s; background: var(--accent-yellow); }
    .particle:nth-child(8) { left: 5%; animation-delay: 6s; background: var(--accent-pink); }
    @keyframes float {
        0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
        10% { opacity: 0.6; }
        90% { opacity: 0.6; }
        100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
    }
    header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(10, 10, 26, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(255, 45, 85, 0.2);
    }
    nav {
        max-width: 1400px;
        margin: 0 auto;
        padding: 1rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .logo {
        font-size: 1.8rem;
        font-weight: 800;
        background: linear-gradient(90deg, var(--accent-red), var(--accent-orange), var(--accent-yellow));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: var(--glow-red);
    }
    .nav-links {
        display: flex;
        gap: 2rem;
        list-style: none;
    }
    .nav-links a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
    }
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
        transition: width 0.3s ease;
    }
    .nav-links a:hover {
        color: var(--text-light);
    }
    .nav-links a:hover::after {
        width: 100%;
    }
    .nav-right {
        display: flex;
        align-items: center;
        gap: 1.5rem;
    }
    .language-container {
        position: relative;
    }
    .language-selector {
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 45, 85, 0.35);
        border-radius: 10px;
        color: var(--text-light);
        padding: 0.5rem 2rem 0.5rem 1rem;
        font-size: 0.95rem;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.25s ease;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffcc00' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
    }
    .language-selector:hover {
        border-color: var(--accent-orange);
        background-color: rgba(255, 45, 85, 0.1);
    }
    .language-selector:focus {
        outline: none;
        border-color: var(--accent-yellow);
        box-shadow: 0 0 0 2px rgba(255, 204, 0, 0.25);
    }
    .language-selector option {
        background: var(--bg-navy);
        color: var(--text-light);
    }
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        padding: 10px;
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(255, 45, 85, 0.35);
        border-radius: 10px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1002;
    }
    .hamburger:hover {
        background: rgba(255, 45, 85, 0.15);
        border-color: var(--accent-orange);
    }
    .hamburger-line {
        display: block;
        width: 22px;
        height: 2px;
        background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
        border-radius: 1px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }
    .hamburger[aria-expanded="true"] .hamburger-line:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .hamburger[aria-expanded="true"] .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    .hamburger[aria-expanded="true"] .hamburger-line:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .nav-overlay {
        display: none;
    }
    .tron {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8rem 2rem 4rem;
        position: relative;
    }
    .tron-content {
        max-width: 1400px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }
    .tron-text h1 {
        font-size: 4rem;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    .tron-text h1 span {
        display: block;
        background: linear-gradient(90deg, var(--accent-red), var(--accent-orange), var(--accent-yellow), var(--accent-pink));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: shimmer 3s infinite;
    }
    @keyframes shimmer {
        0%, 100% { filter: brightness(1); }
        50% { filter: brightness(1.2); }
    }
    .tron-text .subtitle {
        font-size: 1.3rem;
        color: var(--text-muted);
        margin-bottom: 2rem;
    }
    .tron-stats {
        display: flex;
        gap: 2rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    .stat {
        background: rgba(255, 45, 85, 0.1);
        border: 1px solid rgba(255, 45, 85, 0.3);
        padding: 1rem 1.5rem;
        border-radius: 12px;
        text-align: center;
    }
    .stat-value {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--accent-yellow);
        text-shadow: var(--glow-yellow);
    }
    .stat-label {
        font-size: 0.85rem;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .tron-buttons {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .btn {
        padding: 1rem 2.5rem;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }
    .btn-primary {
        background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
        color: white;
        box-shadow: var(--glow-red);
    }
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(255, 45, 85, 0.4);
    }
    .btn-secondary {
        background: transparent;
        color: var(--text-light);
        border: 2px solid var(--accent-orange);
    }
    .btn-secondary:hover {
        background: var(--accent-orange);
        color: var(--bg-dark);
    }
    .tron-image {
        position: relative;
    }
    .slot-preview {
        width: 100%;
        max-width: 500px;
        aspect-ratio: 4/3;
        background: linear-gradient(145deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
        border-radius: 20px;
        border: 3px solid transparent;
        background-clip: padding-box;
        position: relative;
        overflow: hidden;
        box-shadow: 
            0 0 0 3px rgba(255, 45, 85, 0.3),
            0 20px 60px rgba(255, 45, 85, 0.2),
            inset 0 0 60px rgba(255, 149, 0, 0.1);
    }
    .slot-preview::before {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        background: linear-gradient(45deg, var(--accent-red), var(--accent-orange), var(--accent-yellow), var(--accent-pink), var(--accent-red));
        border-radius: 23px;
        z-index: -1;
        animation: rotate 4s linear infinite;
    }
    @keyframes rotate {
        0% { filter: hue-rotate(0deg); }
        100% { filter: hue-rotate(360deg); }
    }
    .slot-content {
        position: absolute;
        inset: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem;
    }
    .slot-title {
        font-size: 2.5rem;
        font-weight: 900;
        background: linear-gradient(90deg, var(--accent-yellow), var(--accent-orange), var(--accent-red));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }
    .slot-symbols {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    .symbol {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        animation: bounce 1s ease-in-out infinite;
    }
    .symbol:nth-child(1) { background: linear-gradient(145deg, var(--accent-red), var(--accent-pink)); animation-delay: 0s; }
    .symbol:nth-child(2) { background: linear-gradient(145deg, var(--accent-orange), var(--accent-yellow)); animation-delay: 0.2s; }
    .symbol:nth-child(3) { background: linear-gradient(145deg, var(--accent-yellow), var(--accent-orange)); animation-delay: 0.4s; }
    .symbol:nth-child(4) { background: linear-gradient(145deg, var(--accent-pink), var(--accent-red)); animation-delay: 0.6s; }
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    .slot-info {
        text-align: center;
        color: var(--text-muted);
    }
    .slot-info p {
        margin: 0.3rem 0;
    }
    section {
        padding: 5rem 2rem;
        max-width: 1400px;
        margin: 0 auto;
    }
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }
    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1rem;
        position: relative;
        display: inline-block;
    }
    .section-header h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-red), var(--accent-orange), var(--accent-yellow));
        border-radius: 2px;
    }
    .section-header p {
        color: var(--text-muted);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 1.5rem auto 0;
    }
    .content-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    .content-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 45, 85, 0.15);
        border-radius: 20px;
        padding: 2rem;
        transition: all 0.3s ease;
    }
    .content-card:hover {
        transform: translateY(-5px);
        border-color: rgba(255, 45, 85, 0.4);
        box-shadow: 0 20px 40px rgba(255, 45, 85, 0.1);
    }
    .content-card h3 {
        font-size: 1.4rem;
        color: var(--accent-yellow);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    .content-card h3::before {
        content: '🔥';
        font-size: 1.5rem;
    }
    .content-card p {
        color: var(--text-muted);
        line-height: 1.8;
    }
    .feature-list {
        list-style: none;
        margin-top: 1rem;
    }
    .feature-list li {
        padding: 0.75rem 0;
        padding-left: 2rem;
        position: relative;
        color: var(--text-muted);
    }
    .feature-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--accent-orange);
        font-weight: bold;
        font-size: 1.2rem;
    }
    .info-box {
        background: linear-gradient(135deg, rgba(255, 45, 85, 0.1) 0%, rgba(255, 149, 0, 0.05) 100%);
        border-left: 4px solid var(--accent-red);
        padding: 1.5rem 2rem;
        border-radius: 0 12px 12px 0;
        margin: 2rem 0;
    }
    .info-box h4 {
        color: var(--accent-yellow);
        margin-bottom: 0.5rem;
    }
    .steps {
        display: grid;
        gap: 1.5rem;
        counter-reset: step;
    }
    .step {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        border: 1px solid rgba(255, 149, 0, 0.1);
    }
    .step-number {
        width: 50px;
        height: 50px;
        min-width: 50px;
        background: linear-gradient(145deg, var(--accent-red), var(--accent-orange));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: 800;
        box-shadow: var(--glow-red);
    }
    .step-content h4 {
        color: var(--accent-yellow);
        margin-bottom: 0.5rem;
    }
    .step-content p {
        color: var(--text-muted);
    }
    .casino-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    .casino-card {
        background: linear-gradient(145deg, rgba(255, 45, 85, 0.08) 0%, rgba(15, 15, 46, 0.5) 100%);
        border: 1px solid rgba(255, 45, 85, 0.2);
        border-radius: 20px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    .casino-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-red), var(--accent-orange), var(--accent-yellow));
    }
    .casino-card:hover {
        transform: translateY(-8px);
        border-color: var(--accent-orange);
        box-shadow: 0 25px 50px rgba(255, 45, 85, 0.15);
    }
    .casino-card.featured {
        border-color: var(--accent-yellow);
        box-shadow: 0 0 30px rgba(255, 204, 0, 0.1);
    }
    .casino-card.featured::after {
        content: 'TOP RATED';
        position: absolute;
        top: 15px;
        right: -35px;
        background: var(--accent-yellow);
        color: var(--bg-dark);
        padding: 0.3rem 3rem;
        font-size: 0.75rem;
        font-weight: 800;
        transform: rotate(45deg);
    }
    .casino-logo {
        width: 80px;
        height: 80px;
        background: linear-gradient(145deg, var(--accent-red), var(--accent-pink));
        border-radius: 20px;
        margin: 0 auto 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        font-weight: 900;
        color: white;
    }
    .casino-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    .casino-rating {
        color: var(--accent-yellow);
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .casino-features {
        list-style: none;
        text-align: left;
        margin: 1.5rem 0;
    }
    .casino-features li {
        padding: 0.5rem 0;
        color: var(--text-muted);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    .casino-features li::before {
        content: '★';
        color: var(--accent-orange);
    }
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .faq-item {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid rgba(255, 149, 0, 0.1);
        border-radius: 16px;
        overflow: hidden;
    }
    .faq-question {
        padding: 1.5rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    .faq-question:hover {
        background: rgba(255, 45, 85, 0.05);
    }
    .faq-question::after {
        content: '+';
        font-size: 1.5rem;
        color: var(--accent-orange);
        transition: transform 0.3s ease;
    }
    .faq-item.active .faq-question::after {
        transform: rotate(45deg);
    }
    .faq-answer {
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: all 0.3s ease;
    }
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
        max-height: 500px;
    }
    .faq-answer p {
        color: var(--text-muted);
    }
    .paytable {
        width: 100%;
        border-collapse: collapse;
        margin: 2rem 0;
        background: rgba(255, 255, 255, 0.02);
        border-radius: 16px;
        overflow: hidden;
    }
    .paytable th,
    .paytable td {
        padding: 1rem 1.5rem;
        text-align: left;
    }
    .paytable th {
        background: linear-gradient(145deg, rgba(255, 45, 85, 0.2), rgba(255, 149, 0, 0.1));
        color: var(--accent-yellow);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    .paytable tr {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .paytable tr:last-child {
        border-bottom: none;
    }
    .paytable td {
        color: var(--text-muted);
    }
    .paytable .symbol-cell {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
    .symbol-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
    }
    .symbol-icon.high { background: linear-gradient(145deg, var(--accent-red), var(--accent-pink)); }
    .symbol-icon.medium { background: linear-gradient(145deg, var(--accent-orange), var(--accent-yellow)); }
    .symbol-icon.low { background: linear-gradient(145deg, #6c5ce7, #a29bfe); }
    .payout {
        color: var(--accent-yellow);
        font-weight: 700;
    }
    footer {
        background: rgba(0, 0, 0, 0.3);
        padding: 3rem 2rem;
        text-align: center;
        border-top: 1px solid rgba(255, 45, 85, 0.1);
    }
    .footer-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    .footer-logo {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(90deg, var(--accent-red), var(--accent-orange));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 1rem;
    }
    .footer-text {
        color: var(--text-muted);
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    .footer-links {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
        margin-bottom: 2rem;
    }
    .footer-links a {
        color: var(--text-muted);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .footer-links a:hover {
        color: var(--accent-orange);
    }
    .copyright {
        color: var(--text-muted);
        font-size: 0.9rem;
    }
    @media(max-width: 1024px) {
        .tron-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .tron-text h1 {
            font-size: 3rem;
        }
        .tron-stats {
            justify-content: center;
        }
        .tron-buttons {
            justify-content: center;
        }
        .tron-image {
            order: -1;
        }
        .slot-preview {
            margin: 0 auto;
        }
    }
    @media(max-width: 768px) {
        .hamburger {
            display: flex;
        }
        .nav-right {
            position: fixed;
            top: 0;
            right: 0;
            width: min(320px, 100%);
            height: 100vh;
            height: 100dvh;
            background: rgba(15, 15, 46, 0.98);
            backdrop-filter: blur(12px);
            border-left: 1px solid rgba(255, 45, 85, 0.25);
            flex-direction: column;
            align-items: stretch;
            padding: 5rem 1.5rem 2rem;
            gap: 0;
            z-index: 1001;
            transform: translateX(100%);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            box-shadow: none;
        }
        .nav-open .nav-right {
            transform: translateX(0);
            box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
        }
        .nav-right .language-container {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255, 45, 85, 0.2);
        }
        .nav-right .language-selector {
            width: 100%;
            padding: 0.75rem 2.5rem 0.75rem 1rem;
            font-size: 1rem;
        }
        .nav-right .nav-links {
            display: flex;
            flex-direction: column;
            gap: 0;
            list-style: none;
        }
        .nav-right .nav-links li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }
        .nav-right .nav-links a {
            display: block;
            padding: 1rem 0;
            font-size: 1.1rem;
        }
        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.35s ease;
        }
        .nav-open .nav-overlay {
            display: block;
            opacity: 1;
        }
        .tron {
            padding: 6rem 1.5rem 3rem;
        }
        .tron-text h1 {
            font-size: 2.2rem;
        }
        section {
            padding: 3rem 1.5rem;
        }
        .section-header h2 {
            font-size: 1.8rem;
        }
        .content-grid {
            grid-template-columns: 1fr;
        }
        .step {
            flex-direction: column;
            text-align: center;
        }
        .paytable {
            font-size: 0.9rem;
        }
        .paytable th,
        .paytable td {
            padding: 0.75rem;
        }
    }
    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease forwards;
    }
    .image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2rem 0;
    width: 100%;
}
.image-container .styled-image {
    display: block;
    border: 4px solid white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 100%;
    height: auto;
}
.styled-image {
    display: block;
    width: 100%;
    height: auto;
}
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    .highlight {
        color: var(--accent-yellow);
        font-weight: 600;
    }
    .highlight-red {
        color: var(--accent-red);
        font-weight: 600;
    }
    .divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--accent-orange), transparent);
        margin: 3rem 0;
    }