* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #faf5f0;
            color: #2c2c2c;
            padding-bottom: 120px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #b82601;
            color: white;
            padding: 22px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 18px rgba(0,0,0,0.35);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffd100;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-shadow: 0 3px 6px rgba(0,0,0,0.4);
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 28px;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.15rem;
            transition: all 0.3s ease;
            padding: 12px 18px;
            border-radius: 10px;
        }
        .nav-links li a:hover {
            color: #ffd100;
            background-color: rgba(255,255,255,0.22);
        }
        .daman-link {
            color: #ffd100 !important;
            font-weight: 700;
            border: 2px solid #ffd100;
        }
        .daman-link:hover {
            background-color: rgba(255,209,0,0.3) !important;
        }
        .hamburger {
            display: none;
            font-size: 2.4rem;
            cursor: pointer;
            color: #ffd100;
        }
        .btn {
            display: inline-block;
            padding: 18px 40px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 18px 12px;
            text-align: center;
            font-size: 1.2rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(0,0,0,0.25);
        }
        .btn-download {
            background-color: #00b336;
            color: white;
        }
        .btn-download:hover {
            background-color: #00942c;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,179,54,0.45);
        }
        .btn-login {
            background-color: #ff8c00;
            color: white;
        }
        .btn-login:hover {
            background-color: #e07a00;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255,140,0,0.45);
        }
        .btn-container {
            margin: 60px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            align-items: center;
            justify-content: center;
        }
        h1 {
            font-size: 3.2rem;
            color: #b82601;
            margin: 80px 0 60px;
            text-align: center;
            font-weight: 900;
            border-bottom: 6px solid #ffd100;
            padding-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        h2 {
            font-size: 2.5rem;
            color: #9a2000;
            margin: 90px 0 45px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 25px;
            border-left: 8px solid #b82601;
            padding-left: 30px;
        }
        h2::before {
            content: "⚔️";
            font-size: 2.4rem;
        }
        h3 {
            font-size: 2.1rem;
            color: #b82601;
            margin: 70px 0 35px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        h3::after {
            content: "";
            flex: 1;
            height: 4px;
            background-color: #e6d5c3;
            margin-left: 20px;
        }
        h4 {
            font-size: 1.7rem;
            color: #444444;
            margin: 45px 0 25px;
            font-weight: 700;
        }
        p {
            margin-bottom: 35px;
            font-size: 1.25rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 700;
            color: #b82601;
        }
        .keyword {
            font-weight: 900;
            color: #b82601;
            font-size: 1.4rem;
        }
        .quote {
            font-style: italic;
            border-left: 7px solid #ffd100;
            padding: 25px 30px;
            margin: 50px 0;
            background-color: #fff9e6;
            border-radius: 0 15px 15px 0;
            font-size: 1.35rem;
        }
        .game-img {
            width: 100%;
            border-radius: 25px;
            margin: 60px 0;
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
            transition: transform 0.5s ease;
        }
        .game-img:hover {
            transform: scale(1.05);
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        .gallery-img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.25);
            transition: transform 0.5s ease;
        }
        .gallery-img:hover {
            transform: translateY(-15px);
        }
        ul, ol {
            margin: 40px 0 50px 70px;
            font-size: 1.25rem;
            line-height: 2.3;
        }
        li {
            margin-bottom: 25px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 60px 0;
            background-color: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 8px 28px rgba(0,0,0,0.2);
        }
        .stats-table th, .stats-table td {
            padding: 25px;
            text-align: left;
            border-bottom: 1px solid #f3e8dd;
        }
        .stats-table th {
            background-color: #b82601;
            color: white;
            font-weight: 700;
            font-size: 1.3rem;
        }
        .stats-table tr:hover {
            background-color: #f9f5f0;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .section {
            background-color: white;
            border-radius: 30px;
            padding: 60px;
            margin: 55px 0;
            box-shadow: 0 8px 28px rgba(0,0,0,0.15);
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 45px;
            margin: 60px 0;
        }
        .card {
            background-color: #fef7e9;
            border-radius: 25px;
            padding: 45px;
            box-shadow: 0 10px 28px rgba(0,0,0,0.15);
            transition: transform 0.5s ease;
            border-top: 7px solid #b82601;
        }
        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        .card-title {
            font-size: 1.8rem;
            color: #b82601;
            margin-bottom: 35px;
            font-weight: 800;
            text-align: center;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
            gap: 40px;
            margin: 60px 0;
        }
        .review {
            background-color: #ffebe6;
            border-radius: 20px;
            padding: 40px;
            border-top: 7px solid #b82601;
            box-shadow: 0 7px 22px rgba(0,0,0,0.15);
        }
        .reviewer {
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 1.35rem;
        }
        .reviewer::before {
            content: "👤";
            font-size: 1.8rem;
        }
        .rating {
            color: #ffd100;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }
        .guide-tip {
            background-color: #fff5e6;
            border-left: 8px solid #ff8c00;
            padding: 30px 35px;
            margin: 50px 0;
            border-radius: 0 18px 18px 0;
        }
        .guide-tip h4 {
            color: #a04500;
            margin-bottom: 25px;
            font-size: 1.6rem;
        }
        .events-calendar {
            background-color: #f9f0e6;
            border-radius: 25px;
            padding: 45px;
            margin: 60px 0;
        }
        .event {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            padding-bottom: 40px;
            border-bottom: 1px dashed #c9b9a9;
        }
        .event:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .event-date {
            background-color: #b82601;
            color: white;
            padding: 25px 35px;
            border-radius: 18px;
            font-weight: 700;
            min-width: 200px;
            text-align: center;
            font-size: 1.35rem;
        }
        .event-details h4 {
            color: #2c2c2c;
            margin-bottom: 20px;
            font-size: 1.6rem;
        }
        .event-details p {
            margin-bottom: 25px;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 35px;
            margin: 45px 0;
        }
        .community-link {
            background-color: #b82601;
            color: white;
            padding: 18px 35px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 700;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 1.3rem;
        }
        .community-link:hover {
            background-color: #9a2000;
        }
        .community-forum {
            background-color: #faf6f0;
            border-radius: 25px;
            padding: 45px;
            margin: 60px 0;
        }
        .forum-thread {
            padding: 35px;
            border-bottom: 1px solid #e6d5c3;
        }
        .forum-thread:last-child {
            border-bottom: none;
        }
        .thread-title {
            font-weight: 700;
            color: #2c2c2c;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .thread-meta {
            color: #808080;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        footer {
            background-color: #2c2c2c;
            color: white;
            padding: 90px 0 60px;
            margin-top: 180px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 80px;
            margin-bottom: 80px;
        }
        .footer-section h4 {
            font-size: 1.8rem;
            margin-bottom: 40px;
            color: #ffd100;
            border-bottom: 4px solid #ffd100;
            padding-bottom: 25px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 25px;
        }
        .footer-links li a {
            color: #e6e6e6;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.3rem;
        }
        .footer-links li a:hover {
            color: #ffd100;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
            margin-top: 40px;
        }
        .tag {
            background-color: #444444;
            padding: 15px 25px;
            border-radius: 40px;
            font-size: 1.2rem;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag a:hover {
            color: #ffd100;
        }
        .game-types {
            margin: 50px 0;
        }
        .recommendation {
            text-align: center;
            font-size: 1.45rem;
            margin: 70px 0;
            color: #e6e6e6;
            line-height: 2.4;
        }
        .copyright {
            text-align: center;
            padding-top: 60px;
            border-top: 1px solid #444444;
            font-size: 1.25rem;
            color: #b3b3b3;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.9rem;
            }
            h2 {
                font-size: 2.3rem;
            }
            h3 {
                font-size: 1.9rem;
            }
            .btn {
                padding: 16px 35px;
                font-size: 1.15rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 22px;
            }
            h1 {
                font-size: 2.6rem;
                margin: 70px 0 50px;
            }
            h2 {
                font-size: 2.1rem;
                margin: 80px 0 40px;
            }
            h3 {
                font-size: 1.8rem;
            }
            .card-container, .review-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 105px;
                left: 0;
                right: 0;
                background-color: #b82601;
                padding: 50px;
                gap: 40px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.4rem;
                margin: 60px 0 45px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 2.0rem;
                margin: 70px 0 35px;
                padding-left: 25px;
            }
            h3 {
                font-size: 1.7rem;
            }
            p, ul, ol {
                font-size: 1.2rem;
            }
            .btn {
                width: 100%;
                margin: 18px 0;
                padding: 20px 30px;
            }
            .review-container, .card-container, .gallery {
                grid-template-columns: 1fr;
            }
            .event {
                flex-direction: column;
                gap: 30px;
            }
            .event-date {
                width: 100%;
            }
            .section {
                padding: 50px 35px;
            }
            .footer-container {
                gap: 60px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2.2rem;
                padding-bottom: 22px;
            }
            h2 {
                font-size: 1.85rem;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.6rem;
            }
            .stats-table th, .stats-table td {
                padding: 20px;
                font-size: 1.15rem;
            }
            .section {
                padding: 45px 30px;
            }
            .btn-container {
                gap: 30px;
            }
            .community-link {
                padding: 16px 30px;
                font-size: 1.2rem;
            }
        }
