        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.9;
            color: #2d3436;
            background-color: #f7f3ed;
            padding-bottom: 60px;
            font-size: 16px;
        }
        a {
            text-decoration: none;
            color: #0984e3;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #d63031;
            text-decoration: underline;
        }
        .container {
            width: 92%;
            max-width: 1300px;
            margin: 0 auto;
        }
        header {
            background-color: #2c3e50;
            color: #ffffff;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: #fdcb6e;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-family: 'Arial Black', Gadget, sans-serif;
        }
        .logo span {
            color: #e17055;
        }
        nav {
            display: block;
            width: auto;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 28px;
        }
        nav a {
            color: #f8f9fa;
            font-weight: 500;
            font-size: 1rem;
            text-transform: capitalize;
            padding: 5px 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #fdcb6e;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .btn-group {
            display: flex;
            gap: 18px;
            align-items: center;
        }
        .btn {
            padding: 10px 22px;
            border-radius: 35px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 1rem;
            text-align: center;
            display: inline-block;
        }
        .btn-download {
            background-color: #27ae60;
            color: #ffffff;
        }
        .btn-download:hover {
            background-color: #219653;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(39, 174, 96, 0.2);
            text-decoration: none;
            color: white;
        }
        .btn-login {
            background-color: #fdcb6e;
            color: #2c3e50;
        }
        .btn-login:hover {
            background-color: #e1b12c;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(253, 203, 110, 0.2);
            text-decoration: none;
            color: #2c3e50;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffffff;
        }
        main {
            padding: 50px 0;
        }
        h1 {
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 40px;
            text-align: center;
            line-height: 1.5;
            text-transform: capitalize;
            font-weight: 800;
            padding: 0 20px;
        }
        h2 {
            font-size: 2.1rem;
            color: #2c3e50;
            margin: 60px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #fdcb6e;
            text-transform: capitalize;
            font-weight: 700;
        }
        h3 {
            font-size: 1.5rem;
            color: #34495e;
            margin: 40px 0 18px;
            text-transform: capitalize;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: '☕';
            margin-right: 10px;
        }
        h4 {
            font-size: 1.2rem;
            color: #4a6990;
            margin: 30px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.05rem;
            text-align: justify;
            color: #34495e;
        }
        .intro {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            margin-bottom: 60px;
            border-left: 5px solid #e17055;
        }
        .intro p {
            font-size: 1.15rem;
            line-height: 2.1;
            color: #2d3436;
        }
        .highlight {
            font-weight: 700;
            color: #e17055;
        }
        .cultural-tag {
            display: inline-block;
            background-color: #ffeaa7;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.95rem;
            margin-right: 8px;
            margin-bottom: 8px;
            color: #2c3e50;
            font-weight: 500;
        }
        .game-feature {
            display: flex;
            gap: 30px;
            margin: 40px 0 60px;
            flex-wrap: wrap;
        }
        .feature-card {
            flex: 1;
            min-width: 300px;
            background-color: #ffffff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
            border-top: 4px solid #0984e3;
            transition: transform 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
        }
        .feature-card h3 {
            color: #0984e3;
            margin-top: 0;
            margin-bottom: 20px;
        }
        .feature-card p {
            color: #4a6990;
            line-height: 2;
        }
        .gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
            margin: 50px 0 70px;
        }
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
            transition: transform 0.4s ease;
        }
        .gallery-item:hover {
            transform: scale(1.04);
        }
        .gallery-img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            display: block;
        }
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: #ffffff;
            padding: 15px;
            font-size: 0.95rem;
            text-align: center;
        }
        .faq {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
            margin: 60px 0;
        }
        .faq-item {
            margin-bottom: 30px;
            border-bottom: 1px solid #f1f1f1;
            padding-bottom: 20px;
        }
        .faq-question {
            font-weight: 600;
            color: #2c3e50;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.1rem;
        }
        .faq-question::after {
            content: '+';
            font-size: 1.5rem;
            color: #e17055;
            transition: transform 0.3s ease;
        }
        .faq-question.active::after {
            content: '-';
            transform: rotate(0deg);
        }
        .faq-answer {
            margin-top: 15px;
            color: #4a6990;
            font-size: 1.05rem;
            display: none;
        }
        .faq-answer.active {
            display: block;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #fdcb6e;
            padding-left: 20px;
            margin: 40px 0;
            color: #4a6990;
            font-size: 1.1rem;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 10px;
            font-weight: 600;
            color: #2c3e50;
            font-style: normal;
        }
        .tech-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0 60px;
            background-color: #ffffff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        }
        .tech-table th, .tech-table td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        .tech-table th {
            background-color: #2c3e50;
            color: #ffffff;
            font-weight: 600;
            text-transform: capitalize;
        }
        .tech-table tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        .tech-table tr:hover {
            background-color: #f1f2f6;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 60px auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: #e17055;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -17px;
            background-color: #ffffff;
            border: 4px solid #e17055;
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .left {
            left: 0;
        }
        .right {
            left: 50%;
        }
        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid #0984e3;
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent #0984e3;
        }
        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid #0984e3;
            border-width: 10px 10px 10px 0;
            border-color: transparent #0984e3 transparent transparent;
        }
        .right::after {
            left: -16px;
        }
        .timeline-content {
            padding: 25px;
            background-color: white;
            position: relative;
            border-radius: 10px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
        }
        .timeline-date {
            font-weight: 700;
            color: #e17055;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }
        footer {
            background-color: #2c3e50;
            color: #ffffff;
            padding: 70px 0 30px;
            margin-top: 80px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-col h3 {
            color: #fdcb6e;
            margin-bottom: 25px;
            font-size: 1.4rem;
            border-bottom: 2px solid #e17055;
            padding-bottom: 10px;
            display: inline-block;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 15px;
        }
        .footer-col a {
            color: #bdc3c7;
            font-size: 1.05rem;
        }
        .footer-col a:hover {
            color: #fdcb6e;
            text-decoration: none;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            background-color: #34495e;
            padding: 8px 16px;
            border-radius: 25px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #e17055;
            color: #ffffff;
        }
        .recommendation {
            background-color: #34495e;
            padding: 35px;
            border-radius: 12px;
            margin: 40px 0;
            text-align: center;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
        }
        .recommendation p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            color: #f8f9fa;
            text-align: center;
            line-height: 2;
        }
        .recommendation .btn {
            padding: 12px 28px;
            font-size: 1.1rem;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #34495e;
            font-size: 1rem;
            color: #bdc3c7;
            line-height: 1.8;
        }
        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 15px;
        }
        .copyright-links a {
            color: #bdc3c7;
        }
        .copyright-links a:hover {
            color: #fdcb6e;
            text-decoration: none;
        }
        @media (max-width: 1200px) {
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item::before {
                left: 60px;
                border: medium solid #0984e3;
                border-width: 10px 10px 10px 0;
                border-color: transparent #0984e3 transparent transparent;
            }
            .left::after, .right::after {
                left: 15px;
            }
            .right {
                left: 0%;
            }
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .intro {
                padding: 30px;
            }
            .game-feature {
                gap: 25px;
            }
        }
        @media (max-width: 768px) {
            nav {
                display: none;
                width: 100%;
                margin-top: 25px;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                gap: 18px;
            }
            nav li {
                padding: 8px 0;
                border-bottom: 1px solid #34495e;
            }
            .hamburger {
                display: block;
            }
            .btn-group {
                gap: 12px;
            }
            .btn {
                padding: 8px 16px;
                font-size: 0.9rem;
            }
            .logo {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 2.1rem;
                margin-bottom: 30px;
            }
            h2 {
                font-size: 1.6rem;
                margin: 40px 0 20px;
            }
            .intro p {
                font-size: 1.05rem;
                line-height: 2;
            }
            .gallery {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 20px;
            }
            .gallery-img {
                height: 220px;
            }
            .tech-table th, .tech-table td {
                padding: 12px;
                font-size: 0.95rem;
            }
            .footer-container {
                gap: 30px;
            }
        }
        @media (max-width: 576px) {
            .header-container {
                justify-content: space-between;
            }
            .btn-group {
                display: none;
            }
            .btn-group.active {
                display: flex;
                width: 100%;
                margin-top: 20px;
                justify-content: center;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
                padding-bottom: 10px;
            }
            h3 {
                font-size: 1.25rem;
            }
            p {
                font-size: 1rem;
                margin-bottom: 20px;
            }
            .intro {
                padding: 20px;
                border-radius: 8px;
            }
            .game-feature {
                gap: 20px;
            }
            .feature-card {
                min-width: 100%;
                padding: 20px;
            }
            .gallery {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            .gallery-img {
                height: 180px;
            }
            .faq {
                padding: 20px;
            }
            .faq-question {
                font-size: 1rem;
            }
            .recommendation {
                padding: 25px;
            }
            .recommendation p {
                font-size: 1.05rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .copyright {
                font-size: 0.9rem;
            }
            .copyright-links {
                flex-wrap: wrap;
                gap: 15px;
            }
        }
        @media print {
            body {
                background-color: #ffffff;
                color: #000000;
            }
            header, footer, .btn-group, .hamburger {
                display: none;
            }
            a {
                color: #000000;
                text-decoration: underline;
            }
            .container {
                width: 100%;
                padding: 0;
            }
            .intro, .faq, .feature-card, .gallery-item, .tech-table {
                box-shadow: none;
                border: 1px solid #dddddd;
            }
        }
