/* Extracted from responsible-gaming.html block #1 attrs:  */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        
        /* Navigation Header */
        .top-nav {
            background: #1a1a2e;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .logo:hover {
            color: #667eea;
        }
        
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
            align-items: center;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }
        
        .nav-links a:hover {
            color: #667eea;
        }
        
        .nav-links a.active {
            color: #667eea;
        }
        
        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background: #667eea;
        }
        
        .cta-nav-btn {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 0.6rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
        }
        
        .cta-nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
            color: white;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
            color: white;
            padding: 4rem 0;
            text-align: center;
        }
        
        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        
        .hero p {
            font-size: 1.2rem;
            opacity: 0.95;
            line-height: 1.8;
        }
        
        /* Emergency Banner */
        .emergency-banner {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
        }
        
        .emergency-banner h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }
        
        .emergency-banner p {
            font-size: 1.1rem;
            margin-bottom: 1rem;
        }
        
        .emergency-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .emergency-btn {
            background: white;
            color: #e74c3c;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .emergency-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }
        
        /* Quick Access */
        .quick-access {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .quick-access h3 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
        }
        
        .quick-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1rem;
        }
        
        .quick-card {
            background: linear-gradient(145deg, #f8f9ff 0%, #e8f4ff 100%);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            transition: all 0.3s;
            border: 2px solid transparent;
            cursor: pointer;
        }
        
        .quick-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.2);
            border-color: #3498db;
        }
        
        .quick-icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }
        
        .quick-card h4 {
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .quick-card p {
            color: #666;
            font-size: 0.9rem;
        }
        
        /* Section */
        .section {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 2rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        
        .section-title {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .section h3 {
            color: #3498db;
            margin-top: 2rem;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        
        .section p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .section ul, .section ol {
            margin-left: 2rem;
            margin-bottom: 1rem;
            color: #666;
            line-height: 1.8;
        }
        
        .section li {
            margin-bottom: 0.5rem;
        }
        
        /* Self-Assessment Quiz */
        .quiz-container {
            background: linear-gradient(145deg, #f8f9ff 0%, #e8f4ff 100%);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        .quiz-question {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            border-left: 4px solid #3498db;
        }
        
        .quiz-question h4 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        .quiz-options {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .quiz-option {
            background: white;
            border: 2px solid #3498db;
            color: #3498db;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .quiz-option:hover {
            background: #3498db;
            color: white;
        }
        
        .quiz-option.selected {
            background: #3498db;
            color: white;
        }
        
        .quiz-btn {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            margin-top: 1rem;
            transition: all 0.3s;
        }
        
        .quiz-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
        }
        
        .quiz-result {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
            text-align: center;
            display: none;
        }
        
        .quiz-result.show {
            display: block;
        }
        
        .quiz-result.low {
            border: 3px solid #27ae60;
        }
        
        .quiz-result.medium {
            border: 3px solid #f39c12;
        }
        
        .quiz-result.high {
            border: 3px solid #e74c3c;
        }
        
        /* Warning Boxes */
        .warning-box {
            background: linear-gradient(145deg, #fff3cd 0%, #ffe8a1 100%);
            border-left: 4px solid #f39c12;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        
        .warning-box h4 {
            color: #f39c12;
            margin-bottom: 0.5rem;
        }
        
        .danger-box {
            background: linear-gradient(145deg, #f8d7da 0%, #f5c6cb 100%);
            border-left: 4px solid #e74c3c;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        
        .danger-box h4 {
            color: #e74c3c;
            margin-bottom: 0.5rem;
        }
        
        .success-box {
            background: linear-gradient(145deg, #d4edda 0%, #c3e6cb 100%);
            border-left: 4px solid #27ae60;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        
        .success-box h4 {
            color: #27ae60;
            margin-bottom: 0.5rem;
        }
        
        /* Tools Grid */
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        
        .tool-card {
            background: linear-gradient(145deg, #f8f9ff 0%, #ffffff 100%);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #3498db;
            transition: all 0.3s;
        }
        
        .tool-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(52, 152, 219, 0.2);
        }
        
        .tool-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .tool-card h3 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        .tool-card p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1rem;
        }
        
        .tool-btn {
            background: #3498db;
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            text-decoration: none;
            display: inline-block;
            font-weight: bold;
            transition: all 0.3s;
        }
        
        .tool-btn:hover {
            background: #2980b9;
            transform: translateY(-2px);
        }
        
        /* Help Resources */
        .help-resources {
            background: linear-gradient(145deg, #e8f4f8 0%, #d1ecf1 100%);
            border-radius: 15px;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        .resource-item {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        
        .resource-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }
        
        .resource-content h4 {
            color: #2c3e50;
            margin-bottom: 0.3rem;
        }
        
        .resource-content p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
        }
        
        .resource-link {
            color: #3498db;
            text-decoration: none;
            font-weight: bold;
        }
        
        .resource-link:hover {
            text-decoration: underline;
        }
        
        /* Footer */
        footer {
            background: #1a1a2e;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }
        
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            color: #667eea;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            line-height: 2;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: #667eea;
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: #1a1a2e;
                flex-direction: column;
                padding: 1rem;
                gap: 1rem;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            .section {
                padding: 2rem 1.5rem;
            }
            
            .emergency-links {
                flex-direction: column;
            }
            
            .resource-item {
                flex-direction: column;
                text-align: center;
            }
        }
