* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f1e6;
            color: #2d2d2d;
            line-height: 1.8;
            padding-bottom: 80px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a5276;
            color: white;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 15px rgba(0,0,0,0.2);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.1rem;
            font-weight: 900;
            color: #f4d03f;
            text-decoration: none;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .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.02rem;
            transition: all 0.3s ease;
            padding: 7px 10px;
            border-radius: 5px;
        }
        .nav-links li a:hover {
            color: #f4d03f;
            background-color: rgba(255,255,255,0.15);
        }
        .daman-link {
            color: #f4d03f !important;
            font-weight: 700;
            border: 2px solid #f4d03f;
        }
        .daman-link:hover {
            background-color: rgba(244,208,63,0.2) !important;
        }
        .hamburger {
            display: none;
            font-size: 1.7rem;
            cursor: pointer;
            color: #f4d03f;
        }
        .btn {
            display: inline-block;
            padding: 13px 28px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 10px 6px;
            text-align: center;
            font-size: 1.02rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 3px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #27ae60;
            color: white;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(39,174,96,0.3);
        }
        .btn-login {
            background-color: #e67e22;
            color: white;
        }
        .btn-login:hover {
            background-color: #d35400;
            transform: translateY(-2px);
            box-shadow: 0 5px 12px rgba(230,126,34,0.3);
        }
        .btn-container {
            margin: 35px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            align-items: center;
            justify-content: center;
        }
        h1 {
            font-size: 2.6rem;
            color: #1a5276;
            margin: 45px 0 35px;
            text-align: center;
            font-weight: 800;
            border-bottom: 3px solid #f4d03f;
            padding-bottom: 18px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin: 55px 0 28px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 12px;
            border-left: 4px solid #1a5276;
            padding-left: 18px;
        }
        h2::before {
            content: "🏁";
            font-size: 1.7rem;
        }
        h3 {
            font-size: 1.6rem;
            color: #1a5276;
            margin: 38px 0 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        h3::after {
            content: "";
            flex: 1;
            height: 2px;
            background-color: #bbc3c7;
            margin-left: 8px;
        }
        h4 {
            font-size: 1.25rem;
            color: #34495e;
            margin: 28px 0 14px;
            font-weight: 600;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.8;
        }
        .highlight {
            font-weight: 700;
            color: #e74c3c;
        }
        .keyword {
            font-weight: 800;
            color: #1a5276;
            font-size: 1.15rem;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #f4d03f;
            padding: 14px 18px;
            margin: 28px 0;
            background-color: #faf6ed;
            border-radius: 0 6px 6px 0;
            font-size: 1.05rem;
        }
        .game-img {
            width: 100%;
            border-radius: 12px;
            margin: 35px 0;
            box-shadow: 0 5px 18px rgba(0,0,0,0.12);
            transition: transform 0.3s ease;
        }
        .game-img:hover {
            transform: scale(1.01);
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 22px;
            margin: 35px 0;
        }
        .gallery-img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 3px 9px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        .gallery-img:hover {
            transform: translateY(-4px);
        }
        ul, ol {
            margin: 22px 0 32px 45px;
            font-size: 1.08rem;
            line-height: 1.9;
        }
        li {
            margin-bottom: 13px;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 35px 0;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 12px rgba(0,0,0,0.07);
        }
        .stats-table th, .stats-table td {
            padding: 16px;
            text-align: left;
            border-bottom: 1px solid #f0e9dc;
        }
        .stats-table th {
            background-color: #1a5276;
            color: white;
            font-weight: 600;
            font-size: 1.05rem;
        }
        .stats-table tr:hover {
            background-color: #f9f6f0;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .section {
            background-color: white;
            border-radius: 18px;
            padding: 35px;
            margin: 28px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.05);
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 35px 0;
        }
        .card {
            background-color: #f8f5f0;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transition: transform 0.3s ease;
            border-top: 3px solid #1a5276;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 7px 18px rgba(0,0,0,0.09);
        }
        .card-title {
            font-size: 1.35rem;
            color: #1a5276;
            margin-bottom: 18px;
            font-weight: 700;
            text-align: center;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 22px;
            margin: 35px 0;
        }
        .review {
            background-color: #f0f7ff;
            border-radius: 10px;
            padding: 22px;
            border-top: 3px solid #3498db;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .reviewer {
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 9px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.05rem;
        }
        .reviewer::before {
            content: "👤";
            font-size: 1.2rem;
        }
        .rating {
            color: #f1c40f;
            margin-bottom: 13px;
            font-size: 1.1rem;
        }
        .guide-tip {
            background-color: #fef8e1;
            border-left: 4px solid #f39c12;
            padding: 18px 22px;
            margin: 28px 0;
            border-radius: 0 8px 8px 0;
        }
        .guide-tip h4 {
            color: #d35400;
            margin-bottom: 13px;
            font-size: 1.25rem;
        }
        .events-calendar {
            background-color: #f9f5f0;
            border-radius: 12px;
            padding: 28px;
            margin: 35px 0;
        }
        .event {
            display: flex;
            gap: 22px;
            margin-bottom: 22px;
            padding-bottom: 22px;
            border-bottom: 1px dashed #d1c9b8;
        }
        .event:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .event-date {
            background-color: #1a5276;
            color: white;
            padding: 13px 18px;
            border-radius: 8px;
            font-weight: 600;
            min-width: 130px;
            text-align: center;
            font-size: 1.05rem;
        }
        .event-details h4 {
            color: #2c3e50;
            margin-bottom: 9px;
            font-size: 1.25rem;
        }
        .event-details p {
            margin-bottom: 13px;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            margin: 28px 0;
        }
        .community-link {
            background-color: #3498db;
            color: white;
            padding: 10px 22px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 1.02rem;
        }
        .community-link:hover {
            background-color: #2980b9;
        }
        .community-forum {
            background-color: #f5f5f5;
            border-radius: 12px;
            padding: 28px;
            margin: 35px 0;
        }
        .forum-thread {
            padding: 18px;
            border-bottom: 1px solid #e0e0e0;
        }
        .forum-thread:last-child {
            border-bottom: none;
        }
        .thread-title {
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 9px;
            font-size: 1.15rem;
        }
        .thread-meta {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 9px;
        }
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 55px 0 25px;
            margin-top: 90px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 45px;
            margin-bottom: 45px;
        }
        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 22px;
            color: #f4d03f;
            border-bottom: 2px solid #f4d03f;
            padding-bottom: 13px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 13px;
        }
        .footer-links li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.02rem;
        }
        .footer-links li a:hover {
            color: #f4d03f;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 18px;
        }
        .tag {
            background-color: #34495e;
            padding: 7px 13px;
            border-radius: 20px;
            font-size: 0.95rem;
        }
        .tag a {
            color: white;
            text-decoration: none;
        }
        .tag a:hover {
            color: #f4d03f;
        }
        .game-types {
            margin: 28px 0;
        }
        .recommendation {
            text-align: center;
            font-size: 1.15rem;
            margin: 35px 0;
            color: #ecf0f1;
            line-height: 1.7;
        }
        .recommendation strong {
            color: #f4d03f;
            font-size: 1.25rem;
        }
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #34495e;
            font-size: 0.95rem;
            color: #bdc3c7;
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 18px;
            }
            h1 {
                font-size: 2.3rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.45rem;
            }
            .btn {
                padding: 11px 23px;
                font-size: 1rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                right: 0;
                background-color: #1a5276;
                padding: 25px;
                gap: 22px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 1.9rem;
                margin: 38px 0 28px;
            }
            h2 {
                font-size: 1.65rem;
                margin: 48px 0 23px;
            }
            h3 {
                font-size: 1.35rem;
            }
            p, ul, ol {
                font-size: 1.03rem;
            }
            .btn {
                width: 100%;
                margin: 8px 0;
                padding: 12px 18px;
            }
            .review-container, .card-container, .gallery {
                grid-template-columns: 1fr;
            }
            .event {
                flex-direction: column;
                gap: 13px;
            }
            .event-date {
                width: 100%;
            }
            .section {
                padding: 28px 18px;
            }
            .footer-container {
                gap: 28px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 1.7rem;
                padding-bottom: 13px;
            }
            h2 {
                font-size: 1.5rem;
                padding-left: 13px;
            }
            h3 {
                font-size: 1.25rem;
            }
            .stats-table th, .stats-table td {
                padding: 11px;
                font-size: 0.9rem;
            }
            .section {
                padding: 22px 13px;
            }
            .btn-container {
                gap: 13px;
            }
        }
