* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }
        body {
            background-color: #f5f3ef;
            color: #2c2c2c;
            line-height: 1.8;
            padding-bottom: 80px;
            font-size: 16px;
        }
        .container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: #1a3d72;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 0;
            z-index: 9999;
            box-shadow: 0 3px 12px rgba(0,0,0,0.18);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: #ffd700;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .logo span {
            color: #ffffff;
        }
        .nav-links {
            display: flex;
            gap: 35px;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }
        .nav-links a:hover {
            color: #ffd700;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 2.2rem;
            cursor: pointer;
            color: white;
        }
        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 12px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s ease;
            border: none;
            cursor: pointer;
            text-align: center;
            font-size: 1.1rem;
            box-shadow: 0 5px 10px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: #22c55e;
            color: white;
            margin-right: 15px;
        }
        .btn-download:hover {
            background-color: #16a34a;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(34, 197, 94, 0.25);
        }
        .btn-login {
            background-color: #ffd700;
            color: #1a3d72;
        }
        .btn-login:hover {
            background-color: #e6c200;
            transform: translateY(-4px);
            box-shadow: 0 8px 16px rgba(255, 215, 0, 0.25);
        }
        .btn-container {
            margin: 50px 0;
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            align-items: center;
            justify-content: center;
        }
        h1 {
            font-size: 3rem;
            color: #1a3d72;
            margin: 60px 0 40px;
            text-align: center;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.1);
            line-height: 1.4;
        }
        h2 {
            font-size: 2.3rem;
            color: #2c2c2c;
            margin: 70px 0 30px;
            padding-bottom: 15px;
            border-bottom: 4px solid #1a3d72;
            line-height: 1.5;
        }
        h3 {
            font-size: 1.7rem;
            color: #1a3d72;
            margin: 50px 0 25px;
            line-height: 1.5;
        }
        h4 {
            font-size: 1.4rem;
            color: #2c2c2c;
            margin: 35px 0 20px;
            line-height: 1.5;
        }
        p {
            margin-bottom: 30px;
            font-size: 1.1rem;
            text-align: justify;
            line-height: 1.9;
        }
        strong {
            color: #1a3d72;
            font-weight: 700;
        }
        .img-container {
            margin: 60px 0;
            text-align: center;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.18);
            transition: transform 0.4s ease;
        }
        .img-responsive:hover {
            transform: scale(1.03);
        }
        ul, ol {
            margin: 30px 0 40px 50px;
        }
        li {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .section {
            background-color: white;
            border-radius: 25px;
            padding: 50px;
            margin-bottom: 60px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
        footer {
            background-color: #2c2c2c;
            color: white;
            padding: 70px 0 40px;
            margin-top: 100px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 60px;
            margin-bottom: 60px;
        }
        .footer-col h4 {
            font-size: 1.5rem;
            margin-bottom: 30px;
            color: #ffd700;
            padding-bottom: 15px;
            border-bottom: 2px solid rgba(255,255,255,0.15);
        }
        .footer-col a {
            color: #f0f0f0;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            transition: color 0.3s ease;
            font-size: 1.1rem;
        }
        .footer-col a:hover {
            color: #ffd700;
            padding-left: 8px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 25px;
        }
        .game-types {
            margin: 40px 0;
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
            font-size: 1.05rem;
            color: #b0b0b0;
        }
        .daman-promo {
            background-color: #e8f0fe;
            color: #1a3d72;
            padding: 30px;
            border-radius: 20px;
            margin: 50px 0;
            text-align: center;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        @media (max-width: 992px) {
            .nav-links {
                gap: 25px;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            h3 {
                font-size: 1.6rem;
            }
            .section {
                padding: 40px;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                right: 0;
                background-color: #1a3d72;
                padding: 40px;
                gap: 25px;
                box-shadow: 0 15px 15px rgba(0,0,0,0.15);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
                margin: 50px 0 35px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 60px 0 25px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 45px 0 20px;
            }
            .btn {
                padding: 14px 28px;
                font-size: 1.05rem;
            }
            .section {
                padding: 35px;
            }
            ul, ol {
                margin: 25px 0 35px 35px;
            }
            .footer-container {
                gap: 40px;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 1.7rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 20px;
            }
            .btn-download {
                margin-right: 0;
                width: 100%;
            }
            .btn-login {
                width: 100%;
            }
            .section {
                padding: 30px;
            }
            p {
                font-size: 1.05rem;
            }
            .footer-col {
                text-align: center;
            }
            .tags {
                justify-content: center;
            }
        }
