        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #f8f9fa;
        }

        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 1rem 0;
            box-shadow: 0 2px 20px rgba(0,0,0,0.3);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: #ffd700;
            text-decoration: none;
        }

        .back-link {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-decoration: none;
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s;
        }

        .back-link:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Main Content */
        .main-content {
            background: white;
            margin: 2rem 0;
            padding: 3rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .page-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #1a1a2e;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .last-updated {
            text-align: center;
            color: #666;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .content h2 {
            color: #1a1a2e;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
            border-left: 4px solid #ffd700;
            padding-left: 1rem;
        }

        .content h3 {
            color: #333;
            margin-top: 1.5rem;
            margin-bottom: 0.8rem;
            font-size: 1.2rem;
        }

        .content h4 {
            color: #555;
            margin-top: 1rem;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        .content p {
            margin-bottom: 1rem;
            text-align: justify;
        }

        .content ul, .content ol {
            margin-bottom: 1rem;
            padding-left: 2rem;
        }

        .content ul li, .content ol li {
            margin-bottom: 0.5rem;
        }

        .highlight-box {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }

        .highlight-box strong {
            color: #ffd700;
        }

        .warning-box {
            background: #fff3cd;
            border: 2px solid #ffeaa7;
            color: #856404;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 6px solid #f39c12;
        }

        .danger-box {
            background: #f8d7da;
            border: 2px solid #f5c6cb;
            color: #721c24;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 6px solid #dc3545;
        }

        .info-box {
            background: #d1ecf1;
            border: 2px solid #bee5eb;
            color: #0c5460;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
            border-left: 6px solid #17a2b8;
        }

        .contact-box {
            background: #f8f9fa;
            border: 2px solid #e9ecef;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 1.5rem 0;
        }

        .age-restriction {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
            font-size: 1.2rem;
            font-weight: bold;
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
        }

        .responsible-gaming {
            background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
            color: white;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
        }

        .table-responsive {
            overflow-x: auto;
            margin: 1rem 0;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #e9ecef;
            vertical-align: top;
        }

        th {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            font-weight: 600;
        }

        tr:nth-child(even) {
            background-color: #f8f9fa;
        }

        /* Risk Assessment */
        .risk-levels {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .risk-card {
            border-radius: 10px;
            padding: 1.5rem;
            text-align: center;
            color: white;
            font-weight: bold;
        }

        .risk-low {
            background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
        }

        .risk-medium {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        }

        .risk-high {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        }

        /* Footer */
        footer {
            background: #0d1b2a;
            color: white;
            padding: 2rem 0;
            margin-top: 3rem;
        }

        .footer-content {
            text-align: center;
        }

        .footer-content a {
            color: #ffd700;
            text-decoration: none;
        }

        .footer-content a:hover {
            text-decoration: underline;
        }

        /* Table of Contents */
        .toc {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
        }

        .toc h3 {
            color: #1a1a2e;
            margin-bottom: 1rem;
            text-align: center;
        }

        .toc ul {
            list-style: none;
            padding-left: 0;
        }

        .toc ul li {
            margin-bottom: 0.5rem;
        }

        .toc a {
            color: #667eea;
            text-decoration: none;
            transition: color 0.3s;
        }

        .toc a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            .main-content {
                padding: 2rem 1.5rem;
                margin: 1rem 0;
            }

            .page-title {
                font-size: 2rem;
            }

            nav {
                flex-direction: column;
                gap: 1rem;
            }

            .content h2 {
                font-size: 1.3rem;
            }

            table {
                font-size: 0.9rem;
            }

            th, td {
                padding: 0.7rem 0.5rem;
            }

            .risk-levels {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .page-title {
                font-size: 1.8rem;
            }

            .main-content {
                padding: 1.5rem 1rem;
            }

            .content h2 {
                font-size: 1.2rem;
            }

            .age-restriction, .responsible-gaming {
                padding: 1.5rem;
                font-size: 1.1rem;
            }
        }

        /* Print Styles */
        @media print {
            header, footer {
                display: none;
            }

            .main-content {
                box-shadow: none;
                margin: 0;
            }

            .page-title {
                color: #000;
                -webkit-text-fill-color: initial;
            }

            .highlight-box, .warning-box, .danger-box {
                background: #f0f0f0 !important;
                color: #000 !important;
            }
        }
