* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }
        body {
            line-height: 1.8;
            color: #1a1a1a;
            background-color: #f5f5f5;
            padding-bottom: 50px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #8B4513, #CD853F, #D2691E);
            color: white;
            padding: 25px 0;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .logo {
            font-size: 36px;
            font-weight: bold;
            text-align: center;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            font-family: 'Georgia', serif;
        }
        nav {
            background-color: #CD853F;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 20px;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin: 0 18px;
        }
        .nav-links a {
            color: #FFF8DC;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffffff;
            border-bottom: 2px solid #FFF8DC;
        }
        .menu-toggle {
            display: none;
            font-size: 28px;
            color: white;
            cursor: pointer;
        }
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background-color: #CD853F;
            color: white;
            text-decoration: none;
            border-radius: 6px;
            font-weight: bold;
            transition: all 0.3s ease;
            margin: 12px 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #8B4513;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .content {
            background-color: white;
            padding: 40px;
            margin-top: 40px;
            border-radius: 10px;
            box-shadow: 0 0 25px rgba(0,0,0,0.08);
        }
        h1 {
            color: #8B4513;
            margin-bottom: 25px;
            border-bottom: 4px solid #FFD700;
            padding-bottom: 15px;
            font-size: 36px;
            font-family: 'Georgia', serif;
        }
        h2 {
            color: #8B4513;
            margin: 35px 0 20px;
            padding-left: 15px;
            border-left: 5px solid #CD853F;
            font-size: 28px;
        }
        h3 {
            color: #D2691E;
            margin: 30px 0 15px;
            font-size: 22px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 17px;
        }
        .highlight {
            background-color: #FFF8DC;
            padding: 25px;
            border-left: 6px solid #CD853F;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .game-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .info-card {
            background-color: #FFFAF0;
            padding: 25px;
            border-radius: 10px;
            border-top: 5px solid #CD853F;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        .info-card:hover {
            transform: translateY(-5px);
        }
        .info-card h3 {
            margin-top: 0;
            color: #8B4513;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: #FFFAF0;
            color: #8B4513;
        }
        ul {
            margin-bottom: 20px;
            padding-left: 30px;
        }
        ul li {
            margin-bottom: 10px;
        }
        footer {
            background-color: #CD853F;
            color: white;
            padding: 40px 0;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 35px;
        }
        .footer-section h3 {
            color: #FFD700;
            margin-bottom: 20px;
            font-size: 20px;
            border-bottom: 2px solid #FFD700;
            padding-bottom: 10px;
        }
        .footer-section ul {
            list-style: none;
            padding: 0;
        }
        .footer-section a {
            color: #FFFAF0;
            text-decoration: none;
            transition: color 0.3s ease;
            display: block;
            padding: 8px 0;
        }
        .footer-section a:hover {
            color: #FFD700;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 25px;
            border-top: 1px solid #D2691E;
        }
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 65px;
                left: 0;
                right: 0;
                background-color: #CD853F;
                padding: 25px;
                border-top: 1px solid #D2691E;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 12px 0;
            }
            .content {
                padding: 25px;
            }
            h1 {
                font-size: 28px;
            }
            h2 {
                font-size: 24px;
            }
            h3 {
                font-size: 20px;
            }
            p {
                font-size: 16px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
