* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
        }
        body {
            background-color: #f0f8ff;
            color: #2d3748;
            padding-bottom: 150px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: #0277bd;
            color: white;
            padding: 25px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 5px 20px rgba(0,0,0,0.3);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.7rem;
            font-weight: 900;
            color: #ffd600;
            text-decoration: none;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            text-shadow: 0 4px 8px rgba(0,0,0,0.4);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffffff;
        }
        .logo em {
            font-style: normal;
            color: #ff9800;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .nav-links li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            padding: 12px 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .nav-links li a:hover {
            color: #ffd600;
            background-color: rgba(255,255,255,0.25);
        }
        .daman-link {
            color: #ffd600 !important;
            font-weight: 700;
            border: 2px solid #ffd600;
        }
        .daman-link:hover {
            background-color: rgba(255,214,0,0.3) !important;
        }
        .hamburger {
            display: none;
            font-size: 2.6rem;
            cursor: pointer;
            color: #ffd600;
        }
        .btn {
            display: inline-block;
            padding: 20px 45px;
            border-radius: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            margin: 20px 15px;
            text-align: center;
            font-size: 1.25rem;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 22px rgba(0,0,0,0.3);
            font-family: 'Segoe UI', sans-serif;
        }
        .btn-download {
            background-color: #2e7d32;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .btn-download:hover {
            background-color: #236b27;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(46,125,50,0.5);
        }
        .btn-login {
            background-color: #ff5722;
            color: white;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .btn-login:hover {
            background-color: #e64a19;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(255,87,34,0.5);
        }
        .btn-container {
            margin: 70px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            justify-content: center;
        }
        h1 {
            font-size: 3.5rem;
            color: #0277bd;
            margin: 90px 0 70px;
            text-align: center;
            font-weight: 900;
            border-bottom: 7px solid #ffd600;
            padding-bottom: 35px;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            line-height: 1.4;
        }
        h2 {
            font-size: 2.7rem;
            color: #01579b;
            margin: 100px 0 50px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 30px;
            border-left: 9px solid #0277bd;
            padding-left: 35px;
            line-height: 1.5;
        }
        h2::before {
            content: "🚇";
            font-size: 2.8rem;
        }
        h3 {
            font-size: 2.3rem;
            color: #0277bd;
            margin: 80px 0 40px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 25px;
            line-height: 1.5;
        }
        h3::after {
            content: "";
            flex: 1;
            height: 5px;
            background-color: #bbdefb;
            margin-left: 25px;
        }
        h4 {
            font-size: 1.9rem;
            color: #1a237e;
            margin: 55px 0 30px;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h4::before {
            content: "🔹";
            font-size: 1.5rem;
        }
        p {
            margin-bottom: 40px;
            font-size: 1.3rem;
            text-align: justify;
            line-height: 2.0;
            color: #2d3748;
        }
        .highlight {
            font-weight: 700;
            color: #0277bd;
        }
        .keyword {
            font-weight: 900;
            color: #0277bd;
            font-size: 1.5rem;
            display: inline-block;
            margin: 0 3px;
        }
        .quote {
            font-style: italic;
            border-left: 8px solid #ffd600;
            padding: 30px 35px;
            margin: 60px 0;
            background-color: #fff8e1;
            border-radius: 0 20px 20px 0;
            font-size: 1.45rem;
            color: #4a148c;
        }
        .stats-box {
            background-color: #e3f2fd;
            border-radius: 20px;
            padding: 35px;
            margin: 60px 0;
            border: 2px solid #90caf9;
        }
        .stats-box h4 {
            color: #0277bd;
            margin-bottom: 25px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        .stat-item {
            text-align: center;
            padding: 20px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 900;
            color: #0277bd;
            margin-bottom: 10px;
        }
        .stat-label {
            font-size: 1.2rem;
            color: #4a5568;
        }
        .game-img {
            width: 100%;
            border-radius: 30px;
            margin: 70px 0;
            box-shadow: 0 15px 40px rgba(0,0,0,0.35);
            transition: transform 0.6s ease;
            border: 5px solid white;
        }
        .game-img:hover {
            transform: scale(1.06);
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 45px;
            margin: 70px 0;
        }
        .gallery-img {
            width: 100%;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: transform 0.6s ease;
            border: 4px solid white;
        }
        .gallery-img:hover {
            transform: translateY(-20px);
        }
        ul, ol {
            margin: 50px 0 60px 80px;
            font-size: 1.3rem;
            line-height: 2.5;
            color: #2d3748;
        }
        ul {
            list-style-type: disc;
        }
        ol {
            list-style-type: decimal;
        }
        li {
            margin-bottom: 30px;
            padding-left: 15px;
        }
        li strong {
            color: #0277bd;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 70px 0;
            background-color: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 10px 35px rgba(0,0,0,0.25);
        }
        .stats-table th, .stats-table td {
            padding: 30px;
            text-align: left;
            border-bottom: 1px solid #e3f2fd;
        }
        .stats-table th {
            background-color: #0277bd;
            color: white;
            font-weight: 700;
            font-size: 1.4rem;
        }
        .stats-table tr:hover {
            background-color: #f5fafe;
        }
        .stats-table tr:last-child td {
            border-bottom: none;
        }
        .section {
            background-color: white;
            border-radius: 35px;
            padding: 70px;
            margin: 70px 0;
            box-shadow: 0 10px 35px rgba(0,0,0,0.15);
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
            gap: 50px;
            margin: 70px 0;
        }
        .card {
            background-color: #f5fafe;
            border-radius: 30px;
            padding: 50px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
            transition: transform 0.6s ease;
            border-top: 8px solid #0277bd;
        }
        .card:hover {
            transform: translateY(-20px);
            box-shadow: 0 20px 45px rgba(0,0,0,0.25);
        }
        .card-title {
            font-size: 2.0rem;
            color: #0277bd;
            margin-bottom: 40px;
            font-weight: 800;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        .review-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 45px;
            margin: 70px 0;
        }
        .review {
            background-color: #fff3e0;
            border-radius: 25px;
            padding: 45px;
            border-top: 8px solid #ff5722;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .reviewer {
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 25px;
            font-size: 1.5rem;
        }
        .reviewer::before {
            content: "👤";
            font-size: 2.2rem;
        }
        .reviewer-location {
            color: #718096;
            font-size: 1.1rem;
            margin-left: 10px;
        }
        .rating {
            color: #ffd600;
            margin-bottom: 30px;
            font-size: 1.8rem;
            letter-spacing: 5px;
        }
        .guide-tip {
            background-color: #f3e5f5;
            border-left: 9px solid #7b1fa2;
            padding: 35px 40px;
            margin: 60px 0;
            border-radius: 0 22px 22px 0;
        }
        .guide-tip h4 {
            color: #4a148c;
            margin-bottom: 30px;
            font-size: 1.8rem;
        }
        .guide-steps {
            margin-left: 30px;
        }
        .guide-steps li {
            margin-bottom: 25px;
        }
        .events-calendar {
            background-color: #e8f5e9;
            border-radius: 30px;
            padding: 50px;
            margin: 70px 0;
        }
        .event {
            display: flex;
            gap: 45px;
            margin-bottom: 45px;
            padding-bottom: 45px;
            border-bottom: 1px dashed #a5d6a7;
        }
        .event:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .event-date {
            background-color: #0277bd;
            color: white;
            padding: 30px 40px;
            border-radius: 20px;
            font-weight: 700;
            min-width: 220px;
            text-align: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .event-details h4 {
            color: #2d3748;
            margin-bottom: 25px;
            font-size: 1.8rem;
        }
        .event-details p {
            margin-bottom: 30px;
        }
        .event-tag {
            display: inline-block;
            background-color: #90caf9;
            color: #01579b;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            margin-right: 10px;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        .community-links {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin: 50px 0;
        }
        .community-link {
            background-color: #0277bd;
            color: white;
            padding: 20px 40px;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 700;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 20px;
            font-size: 1.4rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .community-link:hover {
            background-color: #01579b;
            transform: translateY(-5px);
        }
        .community-forum {
            background-color: #fafafa;
            border-radius: 30px;
            padding: 50px;
            margin: 70px 0;
        }
        .forum-thread {
            padding: 40px;
            border-bottom: 1px solid #e3f2fd;
        }
        .forum-thread:last-child {
            border-bottom: none;
        }
        .thread-title {
            font-weight: 700;
            color: #0277bd;
            margin-bottom: 25px;
            font-size: 1.6rem;
            text-decoration: none;
            display: inline-block;
        }
        .thread-title:hover {
            color: #01579b;
            text-decoration: underline;
        }
        .thread-meta {
            color: #718096;
            font-size: 1.2rem;
            margin-bottom: 25px;
            display: flex;
            gap: 25px;
        }
        .thread-content {
            color: #4a5568;
            font-size: 1.25rem;
            margin-bottom: 20px;
        }
        .thread-replies {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #0277bd;
            font-weight: 600;
            font-size: 1.2rem;
        }
        footer {
            background-color: #1a202c;
            color: white;
            padding: 100px 0 70px;
            margin-top: 200px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
            gap: 90px;
            margin-bottom: 90px;
        }
        .footer-section h4 {
            font-size: 2.0rem;
            margin-bottom: 45px;
            color: #ffd600;
            border-bottom: 4px solid #ffd600;
            padding-bottom: 30px;
            display: block;
        }
        .footer-section h4::before {
            display: none;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 30px;
        }
        .footer-links li a {
            color: #e2e8f0;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .footer-links li a:hover {
            color: #ffd600;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 50px;
        }
        .tag {
            background-color: #4a5568;
            padding: 18px 30px;
            border-radius: 45px;
            font-size: 1.3rem;
        }
        .tag a {
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .tag a:hover {
            color: #ffd600;
        }
        .game-types {
            margin: 60px 0;
        }
        .recommendation {
            text-align: center;
            font-size: 1.6rem;
            margin: 80px 0;
            color: #e2e8f0;
            line-height: 2.6;
            padding: 0 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 70px;
            border-top: 1px solid #4a5568;
            font-size: 1.35rem;
            color: #a0aec0;
            line-height: 1.8;
        }
        @media (max-width: 1400px) {
            .nav-links {
                gap: 27px;
            }
            h1 {
                font-size: 3.2rem;
            }
            h2 {
                font-size: 2.5rem;
            }
            h3 {
                font-size: 2.1rem;
            }
            .btn {
                padding: 18px 40px;
                font-size: 1.2rem;
            }
        }
        @media (max-width: 1200px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.9rem;
                margin: 80px 0 60px;
            }
            h2 {
                font-size: 2.3rem;
                margin: 90px 0 45px;
            }
            h3 {
                font-size: 1.9rem;
            }
            .card-container, .review-container {
                grid-template-columns: repeat(2, 1fr);
            }
            .section {
                padding: 60px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 22px;
            }
            h1 {
                font-size: 2.6rem;
                margin: 70px 0 50px;
                padding-bottom: 30px;
            }
            h2 {
                font-size: 2.1rem;
                margin: 80px 0 40px;
                padding-left: 30px;
            }
            h3 {
                font-size: 1.8rem;
            }
            p, ul, ol {
                font-size: 1.25rem;
            }
            .btn {
                padding: 17px 38px;
                font-size: 1.15rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 115px;
                left: 0;
                right: 0;
                background-color: #0277bd;
                padding: 60px;
                gap: 45px;
            }
            .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;
            }
            h4 {
                font-size: 1.6rem;
            }
            .btn {
                width: 100%;
                margin: 20px 0;
                padding: 22px 35px;
                justify-content: center;
            }
            .review-container, .card-container, .gallery {
                grid-template-columns: 1fr;
            }
            .event {
                flex-direction: column;
                gap: 35px;
            }
            .event-date {
                width: 100%;
            }
            .section {
                padding: 50px 35px;
            }
            .footer-container {
                gap: 70px;
            }
            ul, ol {
                margin-left: 50px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 2.3rem;
            }
            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: 25px;
                font-size: 1.2rem;
            }
            .section {
                padding: 45px 30px;
            }
            .btn-container {
                gap: 35px;
            }
            .community-link {
                padding: 18px 35px;
                font-size: 1.3rem;
                width: 100%;
                justify-content: center;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }
            .tags {
                gap: 20px;
            }
            .tag {
                padding: 15px 25px;
                font-size: 1.2rem;
            }
        }
