:root {
            --primary-color: #4a148c;
            --secondary-color: #ff6f00;
            --accent-color: #f50057;
            --text-color: #333333;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--text-color);
            background-color: #ffffff;
        }
        .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);
            letter-spacing: 1px;
        }
        .logo-text span {
            color: var(--secondary-color);
        }
        .navbar {
            background: linear-gradient(135deg, var(--primary-color), #7b1fa2);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 8px 15px !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(74, 20, 140, 0.8), rgba(255, 111, 0, 0.7)), url('https://via.placeholder.com/1600x900') center/cover no-repeat;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 40px;
        }
        .section-title {
            color: var(--primary-color);
            border-left: 5px solid var(--secondary-color);
            padding-left: 15px;
            margin: 30px 0 20px;
            font-weight: 700;
        }
        .content-card {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            padding: 25px;
            margin-bottom: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid var(--secondary-color);
        }
        .content-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 2.5rem;
            color: var(--secondary-color);
            margin-bottom: 15px;
        }
        .highlight-text {
            background: linear-gradient(120deg, rgba(255, 111, 0, 0.2) 0%, rgba(255, 111, 0, 0.2) 100%);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--secondary-color);
            margin: 20px 0;
        }
        .game-image {
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px 0;
            transition: transform 0.3s ease;
            width: 100%;
        }
        .game-image:hover {
            transform: scale(1.02);
        }
        .footer {
            background-color: var(--dark-bg);
            color: white;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 0.9rem;
        }
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .back-to-top:hover {
            background: var(--secondary-color);
            transform: translateY(-5px);
            color: white;
        }
        .table-of-contents {
            background-color: var(--light-bg);
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
        }
        .table-of-contents h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .table-of-contents ul {
            list-style-type: none;
            padding-left: 0;
        }
        .table-of-contents li {
            margin-bottom: 10px;
            padding-left: 15px;
            border-left: 3px solid transparent;
            transition: all 0.3s ease;
        }
        .table-of-contents li:hover {
            border-left: 3px solid var(--secondary-color);
            padding-left: 20px;
        }
        .table-of-contents a {
            color: var(--text-color);
            text-decoration: none;
        }
        .table-of-contents a:hover {
            color: var(--primary-color);
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 60px 0;
            }
            .logo-text {
                font-size: 1.8rem;
            }
            .content-card {
                padding: 15px;
            }
        }
