:root {
            --primary-color: #FF6B6B;
            --secondary-color: #4ECDC4;
            --accent-color: #FFD166;
            --text-dark: #2D3047;
            --text-light: #F7FFF7;
            --background-light: #F8F9FA;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-dark);
            background-color: var(--background-light);
        }
        .logo-text {
            font-family: 'Arial Rounded MT Bold', 'Arial', sans-serif;
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            margin: 0;
        }
        .logo-subtext {
            font-size: 0.9rem;
            color: var(--secondary-color);
            font-weight: 600;
        }
        .nav-custom {
            background: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 600;
            padding: 0.5rem 1rem !important;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .nav-link:hover {
            background-color: rgba(255,255,255,0.2);
            transform: translateY(-2px);
        }
        .hero-section {
            background: linear-gradient(rgba(45, 48, 71, 0.8), rgba(45, 48, 71, 0.9)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 5rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .section-title {
            color: var(--primary-color);
            border-bottom: 3px solid var(--accent-color);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }
        .content-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 6px 15px rgba(0,0,0,0.08);
            padding: 2rem;
            margin-bottom: 2rem;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: none;
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0,0,0,0.15);
        }
        .highlight-text {
            background: linear-gradient(120deg, var(--accent-color) 0%, var(--accent-color) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0.1rem 0.2rem;
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        .image-caption {
            font-style: italic;
            color: #6c757d;
            text-align: center;
            margin-top: 0.5rem;
            font-size: 0.9rem;
        }
        .gameplay-tip {
            background-color: #e8f4f8;
            border-left: 4px solid var(--secondary-color);
            padding: 1rem 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        footer {
            background-color: var(--text-dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
        }
        .footer-heading {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        .social-icon {
            font-size: 1.5rem;
            color: white;
            margin-right: 1rem;
            transition: color 0.3s ease;
        }
        .social-icon:hover {
            color: var(--accent-color);
        }
        @media (max-width: 768px) {
            .logo-text {
                font-size: 1.8rem;
            }
            .hero-section {
                padding: 3rem 0;
            }
            .content-card {
                padding: 1.5rem;
            }
        }
        .content-paragraph {
            margin-bottom: 1.5rem;
        }
        .table-of-contents {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 1.5rem;
            margin-bottom: 2rem;
        }
        .toc-list {
            list-style-type: none;
            padding-left: 0;
        }
        .toc-list li {
            margin-bottom: 0.5rem;
            padding-left: 1rem;
            position: relative;
        }
        .toc-list li:before {
            content: "•";
            color: var(--primary-color);
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .toc-list a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .toc-list a:hover {
            color: var(--primary-color);
        }
