        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7; 
        }
        body {
            background-color: #f5f5f5;
            color: #2d2d2d;
            padding-bottom: 60px;
            font-size: 16px; 
        }
        header {
            background: linear-gradient(135deg, #8B4513, #CD853F);
            color: #fff;
            padding: 18px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 999;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 15px;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            display: inline-block;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }
        .logo span {
            color: #FFD700; 
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px; 
        }
        .nav-links li {
            position: relative;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: #FFD700;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #FFD700;
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: #fff;
            z-index: 1000;
        }
        .btn {
            padding: 12px 24px;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            font-size: 1rem;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #228B22; 
            color: white;
            margin-right: 12px;
        }
        .btn-download:hover {
            background-color: #006400;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-login {
            background-color: #0066CC; 
            color: white;
        }
        .btn-login:hover {
            background-color: #0047AB;
            transform: translateY(-3px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        main {
            margin: 40px 0;
        }
        .content-section {
            background: white;
            padding: 35px;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            margin-bottom: 40px;
            border-top: 4px solid #CD853F; 
        }
        h1 {
            font-size: 2.5rem;
            color: #8B4513;
            margin-bottom: 25px;
            border-bottom: 3px solid #CD853F;
            padding-bottom: 15px;
            font-weight: 800;
        }
        h2 {
            font-size: 2rem;
            color: #5C4033;
            margin: 30px 0 18px;
            font-weight: 700;
            position: relative;
            padding-left: 12px;
        }
        h2::before {
            content: '⚔️';
            position: absolute;
            left: -5px;
            margin-right: 8px;
        }
        h3 {
            font-size: 1.5rem;
            color: #CD853F;
            margin: 25px 0 12px;
            font-weight: 700;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #333;
            text-align: justify; 
        }
        strong {
            color: #8B4513;
            font-weight: 700;
        }
        .highlight {
            background-color: #FFF8DC; 
            padding: 4px 8px;
            border-radius: 4px;
            font-weight: 700;
            color: #8B4513;
            border-left: 3px solid #CD853F;
        }
        ul {
            margin: 20px 0 20px 40px;
        }
        li {
            margin-bottom: 12px;
            font-size: 1.05rem;
        }
        .game-img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 8px;
            margin: 25px auto;
            display: block;
            box-shadow: 0 6px 15px rgba(0,0,0,0.12);
            border: 2px solid #f0e6d2;
        }
        .tags-section {
            margin: 40px 0;
            padding: 25px;
            background-color: #f9f5f0;
            border-radius: 8px;
        }
        .tag {
            display: inline-block;
            background-color: #e8d8c4;
            color: #8B4513;
            padding: 8px 18px;
            border-radius: 25px;
            margin: 0 10px 10px 0;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-weight: 600;
        }
        .tag:hover {
            background-color: #CD853F;
            color: white;
            transform: translateY(-2px);
        }
        footer {
            background-color: #2d2d2d;
            color: #fff;
            padding: 40px 0 20px;
            margin-top: 60px;
            background: linear-gradient(180deg, #3a3a3a 0%, #2d2d2d 100%);
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 280px;
            margin-bottom: 30px;
        }
        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 20px;
            font-size: 1.3rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #444;
        }
        .footer-section p, .footer-section ul {
            color: #e0e0e0;
            font-size: 1rem;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-section li {
            margin-bottom: 12px;
        }
        .footer-section a {
            color: #e0e0e0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-section a:hover {
            color: #FFD700;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 20px;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #b0b0b0;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: 0;
                height: 100vh;
                width: 280px;
                background-color: #8B4513;
                flex-direction: column;
                padding: 80px 30px;
                transform: translateX(100%);
                transition: transform 0.4s ease-in-out;
                z-index: 999;
                box-shadow: -5px 0 15px rgba(0,0,0,0.2);
                gap: 25px;
            }
            .nav-links.active {
                transform: translateX(0);
            }
            .nav-links li {
                margin: 0;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .content-section {
                padding: 20px;
            }
            .btn {
                width: 100%;
                margin-bottom: 10px;
                text-align: center;
            }
            .btn-download {
                margin-right: 0;
            }
            .game-img {
                max-width: 100%;
            }
            .footer-content {
                flex-direction: column;
            }
        }
        img {
            loading: lazy;
            border: 0;
        }
        .section-spacing {
            margin-top: 50px;
        }
        .paragraph-spacing {
            margin-bottom: 25px;
        }
        html {
            scroll-behavior: smooth;
        }
        .loaded {
            opacity: 1;
            transition: opacity 0.5s ease;
        }
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: #8B4513;
            color: white;
            padding: 8px;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }
