* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.9;
            color: #2d3436;
            background-color: #fef9f3;
            padding-bottom: 60px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
        .header {
            background-color: #d63031;
            padding: 18px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.15);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 900;
            color: #ffdd59;
            text-decoration: none;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo span {
            color: #ffffff;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
        }
        .nav-links {
            display: flex;
            gap: 35px;
        }
        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 5px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #ffdd59;
            border-bottom: 2px solid #ffdd59;
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #ffffff;
            font-size: 1.8rem;
            cursor: pointer;
            z-index: 1001;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                background-color: #d63031;
                flex-direction: column;
                padding: 100px 30px 50px;
                gap: 25px;
                display: none;
                height: 100vh;
                align-items: center;
                text-align: center;
            }
            .nav-links.active {
                display: flex;
            }
            .menu-toggle {
                display: block;
            }
            .logo {
                font-size: 1.6rem;
            }
        }
        h1 {
            font-size: 2.8rem;
            color: #d63031;
            margin: 50px 0 40px;
            text-align: center;
            font-weight: 900;
            text-shadow: 1px 1px 4px rgba(0,0,0,0.1);
            line-height: 1.3;
        }
        h2 {
            font-size: 2.2rem;
            color: #2d3436;
            margin: 60px 0 30px;
            padding-bottom: 12px;
            border-bottom: 3px solid #ffdd59;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h2::before {
            content: "🥞";
            font-size: 1.8rem;
        }
        h3 {
            font-size: 1.7rem;
            color: #e17055;
            margin: 40px 0 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        h3::before {
            content: "🛡️";
            font-size: 1.4rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #0984e3;
            margin: 30px 0 18px;
            font-weight: 700;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.15rem;
            color: #4a4a4a;
            line-height: 1.9;
        }
        .highlight {
            font-weight: 800;
            color: #d63031;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        strong {
            color: #2d3436;
            font-weight: 800;
        }
        .desi-note {
            background-color: #fff3cd;
            padding: 20px;
            border-left: 5px solid #ffdd59;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
            font-style: italic;
            font-weight: 600;
            color: #2d3436;
        }
        .btn-container {
            display: flex;
            gap: 25px;
            margin: 40px 0;
            flex-wrap: wrap;
            justify-content: center;
        }
        .btn {
            padding: 18px 35px;
            border-radius: 12px;
            font-size: 1.25rem;
            font-weight: 700;
            text-decoration: none;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            flex: 1;
            min-width: 220px;
            max-width: 350px;
        }
        .btn-download {
            background-color: #00b894;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .btn-download::after {
            content: "🔥";
            position: absolute;
            right: 20px;
            animation: pulse 1.5s infinite;
        }
        .btn-download:hover {
            background-color: #009688;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
        }
        .btn-login {
            background-color: #e17055;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .btn-login::after {
            content: "🚪";
            position: absolute;
            right: 20px;
            animation: bounce 2s infinite;
        }
        .btn-login:hover {
            background-color: #d63031;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.18);
        }
        @keyframes pulse {
            0% { opacity: 0.7; }
            50% { opacity: 1; transform: scale(1.2); }
            100% { opacity: 0.7; }
        }
        @keyframes bounce {
            0% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
            100% { transform: translateY(0); }
        }
        .img-container {
            margin: 50px 0;
            text-align: center;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        .img-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-caption {
            background-color: #ffffff;
            padding: 15px;
            font-size: 1rem;
            color: #636e72;
            font-weight: 500;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            background-color: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
        }
        th, td {
            padding: 18px;
            text-align: left;
            border-bottom: 1px solid #f1f1f1;
        }
        th {
            background-color: #2d3436;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
        }
        tr:hover {
            background-color: #f8f9fa;
            transform: scale(1.01);
            transition: transform 0.2s ease;
        }
        tr:nth-child(even) {
            background-color: #fafafa;
        }
        ul, ol {
            margin: 25px 0 25px 50px;
        }
        li {
            margin-bottom: 15px;
            font-size: 1.15rem;
            color: #4a4a4a;
            line-height: 1.8;
        }
        li::marker {
            color: #d63031;
            font-size: 1.3rem;
        }
        .tabs {
            display: flex;
            gap: 12px;
            margin: 40px 0;
            flex-wrap: wrap;
        }
        .tab {
            padding: 12px 25px;
            background-color: #f1f2f6;
            border: none;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            color: #2d3436;
        }
        .tab.active {
            background-color: #d63031;
            color: white;
            box-shadow: 0 4px 12px rgba(214, 48, 49, 0.3);
        }
        .tab:hover:not(.active) {
            background-color: #eccc68;
            color: #2d3436;
        }
        .tab-content {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            margin-bottom: 40px;
        }
        .community-card {
            background-color: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.08);
            margin-bottom: 40px;
            border-top: 5px solid #0984e3;
        }
        .community-card h4 {
            font-size: 1.5rem;
            color: #2d3436;
            margin-bottom: 20px;
        }
        .review {
            border-left: 5px solid #ffdd59;
            padding: 20px 25px;
            margin: 30px 0;
            font-style: italic;
            color: #4a4a4a;
            background-color: #faf6ed;
            border-radius: 0 8px 8px 0;
            position: relative;
        }
        .review::before {
            content: "\"";
            font-size: 4rem;
            color: #ffdd59;
            position: absolute;
            top: -20px;
            left: 10px;
            opacity: 0.3;
        }
        .review-author {
            display: block;
            margin-top: 15px;
            font-weight: 700;
            color: #d63031;
            font-style: normal;
        }
        .footer {
            background-color: #2d3436;
            color: white;
            padding: 60px 0 30px;
            margin-top: 100px;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }
        .footer-section h4 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #ffdd59;
            padding-bottom: 10px;
            border-bottom: 2px solid #4a4a4a;
        }
        .footer-section ul {
            list-style: none;
            margin: 0;
        }
        .footer-section ul li {
            margin-bottom: 15px;
        }
        .footer-section a {
            color: #b2bec3;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        .footer-section a:hover {
            color: #ffdd59;
            padding-left: 5px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 20px;
        }
        .tag {
            padding: 8px 20px;
            background-color: #4a4a4a;
            border-radius: 30px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: #ffdd59;
            color: #2d3436;
            transform: translateY(-2px);
        }
        .game-types {
            margin: 30px 0;
        }
        .game-types h5 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: #ffdd59;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #4a4a4a;
            font-size: 1rem;
            color: #b2bec3;
        }
        .recommendation {
            background-color: #ffdd59;
            color: #2d3436;
            padding: 25px;
            border-radius: 15px;
            margin: 50px 0;
            text-align: center;
            font-weight: 700;
            font-size: 1.3rem;
            box-shadow: 0 6px 15px rgba(255, 221, 89, 0.4);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
                margin: 40px 0 30px;
            }
            h2 {
                font-size: 1.8rem;
                margin: 50px 0 25px;
            }
            h3 {
                font-size: 1.5rem;
                margin: 35px 0 20px;
            }
            h4 {
                font-size: 1.3rem;
            }
            p, li {
                font-size: 1.05rem;
            }
            .btn-container {
                flex-direction: column;
                gap: 20px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            ul, ol {
                margin-left: 30px;
            }
            .review {
                padding: 15px 20px;
            }
            .img-container {
                margin: 30px 0;
            }
            table {
                margin: 30px 0;
            }
            th, td {
                padding: 12px;
                font-size: 1rem;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 1.4rem;
            }
            h1 {
                font-size: 1.9rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            .btn {
                padding: 15px 25px;
                font-size: 1.1rem;
                min-width: 100%;
            }
            .tabs {
                gap: 8px;
            }
            .tab {
                padding: 10px 15px;
                font-size: 0.95rem;
            }
            .tab-content {
                padding: 20px;
            }
        }
