* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #f8f3ed;
            color: #2d2d2d;
            padding-bottom: 100px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #c72c0e;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 16px rgba(0,0,0,0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.6rem;
            font-weight: 900;
            color: #ffdd00;
            text-decoration: none;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 3px 5px rgba(0,0,0,0.4);
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            padding: 10px 15px;
            border-radius: 8px;
        }
        .nav-links li a:hover {
            color: #ffdd00;
            background-color: rgba(255,255,255,0.2);
        }
        .daman-link {
            color: #ffdd00 !important;
            font-weight: 700;
            border: 2px solid #ffdd00;
        }
        .daman-link:hover {
            background-color: rgba(255,221,0,0.3) !important;
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: #ffdd00;
        }
        .btn {
            display: inline-block;
            padding: 16px 35px;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 15px 10px;
            text-align: center;
            font-size: 1.15rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .btn-download {
            background-color: #00a82d;
            color: white;
        }
        .btn-download:hover {
            background-color: #008a23;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(0,168,45,0.4);
        }
        .btn-login {
            background-color: #ff7a00;
            color: white;
        }
        .btn-login:hover {
            background-color: #e06b00;
            transform: translateY(-4px);
            box-shadow: 0 8px 20px rgba(255,122,0,0.4);
        }
        .btn-container {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            align-items: center;
            justify-content: center;
        }
        h1 {
            font-size: 3rem;
            color: #c72c0e;
            margin: 70px 0 50px;
            text-align: center;
            font-weight: 900;
            border-bottom: 5px solid #ffdd00;
            padding-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }
        h2 {
            font-size: 2.4rem;
            color: #a52400;
            margin: 80px 0 40px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 20px;
            border-left: 7px solid #c72c0e;
            padding-left: 25px;
        }
        h2::before {
            content: "⚔️";
            font-size: 2.2rem;
        }
        h3 {
            font-size: 2rem;
            color: #c72c0e;
            margin: 60px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h3::after {
            content: "";
            flex: 1;
            height: 3px;
            background-color: #e2d2c2;
            margin-left: 15px;
        }
        h4 {
            font-size: 1.6rem;
            color: #4a4a4a;
            margin: 40px 0 20px;
            font-weight: 700;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.2rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: 700;
            color: #c72c0e;
        }
        .keyword {
            font-weight: 900;
            color: #c72c0e;
            font-size: 1.3rem;
        }
        .quote {
            font-style: italic;
            border-left: 6px solid #ffdd00;
            padding: 20px 25px;
            margin: 40px 0;
            background-color: #fff9e6;
            border-radius: 0 12px 12px 0;
            font-size: 1.25rem;
        }
        .game-img {
            width: 100%;
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            transition: transform 0.4s ease;
        }
        .game-img:hover {
            transform: scale(1.04);
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .gallery-img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 7px 20px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
        }
        .gallery-img:hover {
            transform: translateY(-10px);
        }
        ul, ol {
            margin: 35px 0 45px 60px;
            font-size: 1.2rem;
            line-height: 2.2;
        }
        li {
            margin-bottom: 20px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 50px 0;
            background-color: white;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 7px 22px rgba(0,0,0,0.15);
        }
        .stats-table th, .stats-table td {
            padding: 22px;
            text-align: left;
            border-bottom: 1px solid #f1e8dd;
        }
        .stats-table th {
            background-color: #c72c0e;
            color: white;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .stats-table tr:hover {
            background-color: #faf6f0;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .section {
            background-color: white;
            border-radius: 25px;
            padding: 50px;
            margin: 45px 0;
            box-shadow: 0 7px 22px rgba(0,0,0,0.1);
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 40px;
            margin: 50px 0;
        }
        .card {
            background-color: #fef5e9;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 8px 22px rgba(0,0,0,0.1);
            transition: transform 0.4s ease;
            border-top: 6px solid #c72c0e;
        }
        .card:hover {
            transform: translateY(-12px);
            box-shadow: 0 12px 28px rgba(0,0,0,0.15);
        }
        .card-title {
            font-size: 1.7rem;
            color: #c72c0e;
            margin-bottom: 30px;
            font-weight: 800;
            text-align: center;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 35px;
            margin: 50px 0;
        }
        .review {
            background-color: #ffebe6;
            border-radius: 18px;
            padding: 35px;
            border-top: 6px solid #c72c0e;
            box-shadow: 0 6px 18px rgba(0,0,0,0.1);
        }
        .reviewer {
            font-weight: 700;
            color: #2d2d2d;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.25rem;
        }
        .reviewer::before {
            content: "👤";
            font-size: 1.6rem;
        }
        .rating {
            color: #ffdd00;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .guide-tip {
            background-color: #fff5e6;
            border-left: 7px solid #ff7a00;
            padding: 25px 30px;
            margin: 45px 0;
            border-radius: 0 15px 15px 0;
        }
        .guide-tip h4 {
            color: #a54a00;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .events-calendar {
            background-color: #faf0e6;
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
        }
        .event {
            display: flex;
            gap: 35px;
            margin-bottom: 35px;
            padding-bottom: 35px;
            border-bottom: 1px dashed #c2b2a2;
        }
        .event:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .event-date {
            background-color: #c72c0e;
            color: white;
            padding: 20px 30px;
            border-radius: 15px;
            font-weight: 700;
            min-width: 180px;
            text-align: center;
            font-size: 1.25rem;
        }
        .event-details h4 {
            color: #2d2d2d;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        .event-details p {
            margin-bottom: 20px;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin: 40px 0;
        }
        .community-link {
            background-color: #c72c0e;
            color: white;
            padding: 16px 32px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 700;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 1.2rem;
        }
        .community-link:hover {
            background-color: #a52400;
        }
        .community-forum {
            background-color: #faf6f0;
            border-radius: 20px;
            padding: 40px;
            margin: 50px 0;
        }
        .forum-thread {
            padding: 30px;
            border-bottom: 1px solid #e2d2c2;
        }
        .forum-thread:last-child {
            border-bottom: none;
        }
        .thread-title {
            font-weight: 700;
            color: #2d2d2d;
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .thread-meta {
            color: #7d7d7d;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        footer {
            background-color: #2d2d2d;
            color: white;
            padding: 80px 0 50px;
            margin-top: 150px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 70px;
            margin-bottom: 70px;
        }
        .footer-section h4 {
            font-size: 1.7rem;
            margin-bottom: 35px;
            color: #ffdd00;
            border-bottom: 3px solid #ffdd00;
            padding-bottom: 20px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 20px;
        }
        .footer-links li a {
            color: #e2e2e2;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.2rem;
        }
        .footer-links li a:hover {
            color: #ffdd00;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 30px;
        }
        .tag {
            background-color: #474747;
            padding: 12px 22px;
            border-radius: 35px;
            font-size: 1.1rem;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag a:hover {
            color: #ffdd00;
        }
        .game-types {
            margin: 40px 0;
        }
        .recommendation {
            text-align: center;
            font-size: 1.35rem;
            margin: 60px 0;
            color: #e2e2e2;
            line-height: 2.2;
        }
        .recommendation strong {
            color: #ffdd00;
            font-size: 1.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 50px;
            border-top: 1px solid #474747;
            font-size: 1.15rem;
            color: #b5b5b5;
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 20px;
            }
            h1 {
                font-size: 2.7rem;
            }
            h2 {
                font-size: 2.2rem;
            }
            h3 {
                font-size: 1.8rem;
            }
            .btn {
                padding: 15px 30px;
                font-size: 1.1rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 18px;
            }
            h1 {
                font-size: 2.4rem;
                margin: 60px 0 45px;
            }
            h2 {
                font-size: 2rem;
                margin: 70px 0 35px;
            }
            h3 {
                font-size: 1.7rem;
            }
            .card-container, .review-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 95px;
                left: 0;
                right: 0;
                background-color: #c72c0e;
                padding: 40px;
                gap: 35px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 55px 0 40px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 1.9rem;
                margin: 65px 0 32px;
                padding-left: 20px;
            }
            h3 {
                font-size: 1.6rem;
            }
            p, ul, ol {
                font-size: 1.15rem;
            }
            .btn {
                width: 100%;
                margin: 15px 0;
                padding: 18px 25px;
            }
            .review-container, .card-container, .gallery {
                grid-template-columns: 1fr;
            }
            .event {
                flex-direction: column;
                gap: 25px;
            }
            .event-date {
                width: 100%;
            }
            .section {
                padding: 45px 30px;
            }
            .footer-container {
                gap: 50px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.2rem;
            }
            h1 {
                font-size: 2rem;
                padding-bottom: 18px;
            }
            h2 {
                font-size: 1.75rem;
                padding-left: 18px;
            }
            h3 {
                font-size: 1.5rem;
            }
            .stats-table th, .stats-table td {
                padding: 18px;
                font-size: 1.1rem;
            }
            .section {
                padding: 40px 25px;
            }
            .btn-container {
                gap: 25px;
            }
            .community-link {
                padding: 14px 25px;
                font-size: 1.1rem;
            }
        }
