* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #2d2d2d;
            background-color: #f8f5f0;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        header {
            background-color: #1a365d;
            color: #fff;
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffd700;
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            gap: 25px;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #ffd700;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .mobile-nav-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        h1 {
            font-size: 2.4rem;
            color: #1a365d;
            margin: 35px 0 25px;
            text-align: center;
            padding-bottom: 15px;
            border-bottom: 3px solid #ff9800;
        }
        h2 {
            font-size: 1.9rem;
            color: #2c5282;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff9800;
        }
        h3 {
            font-size: 1.4rem;
            color: #c05621;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            font-weight: 700;
            color: #b71c1c;
        }
        .btn {
            display: inline-block;
            padding: 14px 28px;
            background-color: #388e3c;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            margin: 12px 10px 12px 0;
            transition: all 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #2e7d32;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #1976d2;
        }
        .btn-login:hover {
            background-color: #1565c0;
        }
        .image-container {
            margin: 35px 0;
            text-align: center;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        img:hover {
            transform: scale(1.02);
        }
        .section {
            margin-bottom: 60px;
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
        }
        .game-type {
            margin: 45px 0 25px;
            padding-top: 20px;
            border-top: 1px solid #e0e0e0;
        }
        .game-type h3 {
            margin-bottom: 15px;
        }
        .game-type a {
            color: #2c5282;
            text-decoration: none;
            margin-right: 18px;
            font-size: 1.05rem;
            transition: color 0.3s ease;
        }
        .game-type a:hover {
            color: #c05621;
            text-decoration: underline;
        }
        .tags {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .tag {
            background-color: #e9ecef;
            padding: 9px 18px;
            border-radius: 25px;
            text-decoration: none;
            color: #495057;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #dee2e6;
            color: #212529;
            transform: translateY(-2px);
        }
        footer {
            background-color: #1a365d;
            color: #e9ecef;
            padding: 40px 0 20px;
            margin-top: 70px;
        }
        .footer-content {
            text-align: center;
        }
        .footer-content p {
            margin: 12px 0;
            text-align: center;
        }
        .footer-content a {
            color: #ffd700;
            text-decoration: none;
        }
        .footer-content a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background-color: #1a365d;
                padding: 25px;
                gap: 20px;
                box-shadow: 0 10px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .mobile-nav-btn {
                display: block;
            }
            h1 {
                font-size: 2rem;
                margin: 25px 0 20px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 30px 0 15px;
            }
            h3 {
                font-size: 1.3rem;
                margin: 25px 0 12px;
            }
            p {
                font-size: 1.02rem;
                line-height: 1.7;
            }
            .btn {
                display: block;
                width: 100%;
                text-align: center;
                margin: 10px 0;
            }
            .section {
                padding: 15px;
                margin-bottom: 40px;
            }
        }
