        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.85;
            color: #2d2d2d;
            background-color: #f8f9fa;
            padding-bottom: 60px;
            font-size: 16px;
        }
        header {
            background: linear-gradient(135deg, #1a2a6c, #b21f1f);
            color: #ffffff;
            padding: 18px 0;
            box-shadow: 0 3px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 9999;
            transition: padding 0.3s ease;
        }
        .container {
            width: 92%;
            max-width: 1280px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            color: #ffdd00;
            text-decoration: none;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.35);
            letter-spacing: 0.5px;
        }
        .logo span {
            color: #ffffff;
            font-weight: 600;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 6px 12px;
            border-radius: 6px;
            text-transform: capitalize;
        }
        nav a:hover {
            color: #ffdd00;
            background-color: rgba(255,255,255,0.12);
            transform: translateY(-1px);
        }
        .daman-link {
            color: #ffdd00;
            font-weight: 600;
            border: 1px solid rgba(255,221,0,0.4);
        }
        .daman-link:hover {
            color: #ffffff;
            background-color: rgba(255,221,0,0.2);
            border-color: rgba(255,221,0,0.6);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffffff;
            background: transparent;
            border: none;
        }
        .btn-container {
            display: flex;
            gap: 20px;
            margin: 30px auto;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn {
            padding: 14px 30px;
            border-radius: 35px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            font-size: 1.05rem;
            text-align: center;
            min-width: 180px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .btn-download {
            background-color: #ff5722;
            color: #ffffff;
        }
        .btn-download:hover {
            background-color: #e64a19;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255,87,34,0.3);
        }
        .btn-login {
            background-color: #2196f3;
            color: #ffffff;
        }
        .btn-login:hover {
            background-color: #1976d2;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(33,150,243,0.3);
        }
        .main-content {
            padding: 45px 0;
        }
        h1 {
            font-size: 2.8rem;
            color: #1a2a6c;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 800;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            font-size: 2.1rem;
            color: #b21f1f;
            margin: 50px 0 25px;
            padding-bottom: 12px;
            border-bottom: 3px solid #ffdd00;
            font-weight: 700;
        }
        h3 {
            font-size: 1.6rem;
            color: #1a2a6c;
            margin: 35px 0 18px;
            font-weight: 600;
        }
        h4 {
            font-size: 1.3rem;
            color: #b21f1f;
            margin: 25px 0 12px;
            font-weight: 600;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.08rem;
            text-align: justify;
            line-height: 1.9;
            color: #333333;
        }
        strong {
            color: #b21f1f;
            font-weight: 600;
        }
        em {
            color: #1a2a6c;
            font-style: italic;
        }
        .image-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin: 35px 0;
            justify-content: center;
        }
        .game-image {
            width: 100%;
            max-width: 600px;
            border-radius: 12px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.18);
            transition: transform 0.4s ease;
            object-fit: cover;
        }
        .game-image:hover {
            transform: scale(1.03);
        }
        ul, ol {
            margin: 25px 0 25px 45px;
            font-size: 1.08rem;
            line-height: 2.1;
            color: #333333;
        }
        li {
            margin-bottom: 12px;
            position: relative;
        }
        ul li::before {
            content: "•";
            color: #ff5722;
            font-weight: bold;
            position: absolute;
            left: -20px;
        }
        ol li {
            counter-increment: item;
        }
        ol li::before {
            content: counter(item) ".";
            color: #1a2a6c;
            font-weight: bold;
            position: absolute;
            left: -25px;
        }
        .highlight-box {
            background-color: #fff8e6;
            border-left: 6px solid #ffdd00;
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 10px 10px 0;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
        }
        .highlight-box p {
            margin-bottom: 0;
            font-weight: 500;
            color: #5d4037;
            font-size: 1.1rem;
        }
        .stat-box {
            background-color: #e3f2fd;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.07);
        }
        .stat-item {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }
        .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: #1a2a6c;
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 1rem;
            color: #333333;
        }
        .quote {
            font-style: italic;
            border-left: 4px solid #ff5722;
            padding-left: 20px;
            margin: 30px 0;
            color: #444444;
            font-size: 1.1rem;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 10px;
            font-weight: 600;
            color: #1a2a6c;
            font-style: normal;
        }
        footer {
            background-color: #1a2a6c;
            color: #ffffff;
            padding: 60px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 45px;
        }
        .footer-section {
            flex: 1;
            min-width: 280px;
        }
        .footer-section h3 {
            color: #ffdd00;
            margin-bottom: 25px;
            font-size: 1.4rem;
            border-bottom: 2px solid rgba(255,221,0,0.3);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #e0e0e0;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.02rem;
        }
        .footer-links a:hover {
            color: #ffdd00;
            padding-left: 8px;
        }
        .recommendation {
            background-color: rgba(255,221,0,0.1);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .recommendation h4 {
            color: #ffdd00;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        .recommendation p {
            color: #f0f0f0;
            margin-bottom: 15px;
        }
        .copyright {
            text-align: center;
            padding-top: 35px;
            margin-top: 35px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 0.95rem;
            color: #b0b0b0;
        }
        @media (max-width: 992px) {
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .image-container {
                gap: 20px;
            }
            .game-image {
                max-width: 100%;
            }
        }
        @media (max-width: 768px) {
            header {
                padding: 15px 0;
            }
            .header-content {
                flex-direction: column;
                gap: 20px;
            }
            nav ul {
                flex-direction: column;
                gap: 15px;
                text-align: center;
                display: none;
                width: 100%;
                padding: 15px 0;
                background-color: rgba(26,42,108,0.95);
                border-radius: 10px;
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 22px;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
                margin: 40px 0 20px;
            }
            h3 {
                font-size: 1.4rem;
                margin: 30px 0 15px;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            .btn {
                width: 100%;
                min-width: auto;
            }
            .footer-content {
                flex-direction: column;
                gap: 35px;
            }
            ul, ol {
                margin-left: 30px;
            }
            p {
                font-size: 1.05rem;
            }
        }
        @media (max-width: 576px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .highlight-box {
                padding: 20px;
            }
            .stat-box {
                gap: 15px;
            }
            .stat-value {
                font-size: 1.7rem;
            }
        }
        .section-spacing {
            margin-bottom: 60px;
        }
        .paragraph-spacing {
            margin-bottom: 28px;
        }
        .emoji {
            margin-right: 10px;
            font-size: 1.3rem;
        }
        html {
            scroll-behavior: smooth;
        }
        a:focus, button:focus {
            outline: 3px solid #ffdd00;
            outline-offset: 2px;
        }
