* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #fdf2f8;
            color: #2d3748;
            line-height: 1.9;
            padding-bottom: 80px;
            font-size: 17px;
            word-spacing: 1.2px;
            letter-spacing: 0.3px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #ff2d55, #ffd60a, #ff2d55);
            padding: 20px 0;
            box-shadow: 0 4px 18px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 36px;
            font-weight: 900;
            color: #1a365d;
            text-decoration: none;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.18);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: #ffffff;
            background-color: #1a365d;
            padding: 6px 15px;
            border-radius: 10px;
            border: 2px solid #ffd60a;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
            align-items: center;
        }
        .nav-links li a {
            text-decoration: none;
            color: #1a365d;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            padding: 8px 0;
            border-bottom: 4px solid transparent;
        }
        .nav-links li a:hover {
            color: #ffffff;
            border-bottom: 4px solid #ffffff;
        }
        .daman-link {
            background-color: #1a365d;
            color: #ffffff !important;
            padding: 14px 28px;
            border-radius: 12px;
            border-bottom: none !important;
            font-weight: 800;
            font-size: 19px;
            box-shadow: 0 4px 10px rgba(26, 54, 93, 0.5);
        }
        .daman-link:hover {
            background-color: #2a4365 !important;
            color: #ffffff !important;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(26, 54, 93, 0.6);
        }
        .btn-nav {
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 800;
            font-size: 19px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        .btn-login-nav {
            background-color: #1a365d;
            color: white !important;
            border-bottom: none !important;
        }
        .btn-login-nav:hover {
            background-color: #2a4365 !important;
            color: white !important;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(26, 54, 93, 0.6);
        }
        .btn-download-nav {
            background-color: #ffffff;
            color: #ff2d55 !important;
            border-bottom: none !important;
        }
        .btn-download-nav:hover {
            background-color: #f8f8f8 !important;
            color: #e02448 !important;
            transform: translateY(-4px);
            box-shadow: 0 6px 15px rgba(255, 45, 85, 0.5);
        }
        .hamburger {
            display: none;
            font-size: 36px;
            cursor: pointer;
            color: #1a365d;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100px;
                left: 0;
                right: 0;
                background: #ffffff;
                padding: 35px;
                box-shadow: 0 12px 25px rgba(0,0,0,0.2);
                gap: 30px;
                border-top: 5px solid #ff2d55;
                border-radius: 0 0 20px 20px;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .logo {
                font-size: 28px;
            }
            .btn-nav {
                width: 100%;
                text-align: center;
            }
            .daman-link {
                width: 100%;
                text-align: center;
            }
        }
        h1 {
            font-size: 48px;
            color: #1a365d;
            margin: 70px 0 50px;
            text-align: center;
            font-weight: 900;
            border-bottom: 6px solid #ff2d55;
            padding-bottom: 30px;
            text-transform: uppercase;
            line-height: 1.7;
        }
        h2 {
            font-size: 38px;
            color: #1a365d;
            margin: 80px 0 35px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 20px;
            text-transform: capitalize;
            border-left: 7px solid #ffd60a;
            padding-left: 25px;
        }
        h2::before {
            content: "🎬";
            font-size: 42px;
        }
        h3 {
            font-size: 32px;
            color: #2d3748;
            margin: 60px 0 30px;
            font-weight: 700;
            padding-left: 22px;
            border-left: 5px solid #ff2d55;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        h3::before {
            content: "🏎️";
            font-size: 34px;
        }
        h4 {
            font-size: 26px;
            color: #1a365d;
            margin: 45px 0 25px;
            font-weight: 600;
            text-transform: capitalize;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h4::before {
            content: "🌟";
        }
        p {
            margin-bottom: 30px;
            font-size: 19px;
            text-align: justify;
            line-height: 2.0;
            color: #2d3748;
        }
        .highlight {
            background-color: #feeafa;
            padding: 7px 15px;
            border-radius: 10px;
            font-weight: 800;
            color: #c53030;
            border: 2px solid #ffc1e9;
            font-size: 20px;
        }
        .keyword {
            font-weight: 900;
            color: #ff2d55;
            font-size: 21px;
            text-shadow: 0.7px 0.7px 1.5px rgba(0,0,0,0.18);
        }
        .btn-container {
            display: flex;
            gap: 35px;
            justify-content: center;
            margin: 70px 0;
            flex-wrap: wrap;
        }
        .btn {
            padding: 25px 45px;
            font-size: 24px;
            font-weight: 900;
            border: none;
            border-radius: 15px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            box-shadow: 0 8px 20px rgba(0,0,0,0.25);
            min-width: 300px;
        }
        .btn-download {
            background-color: #ff2d55;
            color: white;
        }
        .btn-download:hover {
            background-color: #e02448;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(255, 45, 85, 0.6);
        }
        .btn-login {
            background-color: #1a365d;
            color: white;
        }
        .btn-login:hover {
            background-color: #2a4365;
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(26, 54, 93, 0.6);
        }
        .img-container {
            display: flex;
            justify-content: center;
            margin: 60px 0;
        }
        .img-responsive {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            border: 5px solid #ffd60a;
        }
        .img-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            margin: 60px 0;
        }
        .img-grid-item {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            border: 5px solid #ffd60a;
            transition: transform 0.4s ease;
        }
        .img-grid-item:hover {
            transform: translateY(-10px);
        }
        .img-grid-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .img-grid-item img:hover {
            transform: scale(1.08);
        }
        .img-caption {
            text-align: center;
            padding: 20px;
            background-color: #ffffff;
            font-weight: 600;
            color: #1a365d;
            font-size: 19px;
        }
        ul, ol {
            margin: 35px 0 45px 70px;
            font-size: 19px;
            line-height: 2.2;
            color: #2d3748;
        }
        li {
            margin-bottom: 25px;
            position: relative;
            padding-left: 15px;
        }
        ul li::before {
            content: "🎥";
            position: absolute;
            left: -40px;
            top: 4px;
            font-size: 22px;
        }
        ol li::before {
            content: counter(ol-counter) ".";
            counter-increment: ol-counter;
            position: absolute;
            left: -40px;
            top: 4px;
            font-weight: 800;
            color: #ff2d55;
            font-size: 22px;
        }
        ol {
            counter-reset: ol-counter;
        }
        .card-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 70px 0;
        }
        .card {
            background-color: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            transition: transform 0.4s ease;
            border-top: 7px solid #ff2d55;
        }
        .card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.25);
        }
        .card-title {
            font-size: 26px;
            color: #1a365d;
            margin-bottom: 30px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .card-title::before {
            content: "🎮";
        }
        .card-meta {
            color: #4a5568;
            font-size: 17px;
            margin-bottom: 20px;
            font-style: italic;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .card-meta::before {
            content: "📅";
        }
        .tabs {
            display: flex;
            gap: 20px;
            margin: 60px 0;
            flex-wrap: wrap;
            overflow-x: auto;
            padding-bottom: 15px;
        }
        .tab {
            padding: 18px 35px;
            background-color: #fef7fb;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            white-space: nowrap;
            color: #1a365d;
        }
        .tab.active {
            background-color: #ff2d55;
            color: white;
        }
        .tab:hover:not(.active) {
            background-color: #fce4ec;
            transform: translateY(-4px);
        }
        .tab-content {
            background-color: white;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin-bottom: 60px;
            border-left: 7px solid #ffd60a;
        }
        .section-highlight {
            background-color: #feeafa;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin: 70px 0;
            border: 3px solid #ffd60a;
        }
        .section-highlight p {
            font-size: 22px;
            line-height: 2.1;
            text-align: center;
        }
        .section-highlight strong {
            color: #ff2d55;
            font-size: 24px;
        }
        .game-types {
            background-color: white;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin: 80px 0;
        }
        .game-types h3 {
            margin-top: 0;
            margin-bottom: 35px;
        }
        .type-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 35px;
        }
        .type-link {
            text-decoration: none;
            color: #1a365d;
            font-weight: 700;
            padding: 15px 32px;
            border: 3px solid #ffd60a;
            border-radius: 12px;
            transition: all 0.3s ease;
            font-size: 19px;
        }
        .type-link:hover {
            background-color: #ffd60a;
            color: #1a365d;
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(255, 214, 10, 0.5);
        }
        .tags {
            background-color: white;
            padding: 45px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            margin: 70px 0;
        }
        .tags h3 {
            margin-top: 0;
            margin-bottom: 35px;
        }
        .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            margin-top: 35px;
        }
        .tag-link {
            text-decoration: none;
            color: #1a365d;
            font-weight: 700;
            padding: 12px 30px;
            border: 3px solid #ff2d55;
            border-radius: 35px;
            transition: all 0.3s ease;
            font-size: 18px;
        }
        .tag-link:hover {
            background-color: #ff2d55;
            color: white;
            border-color: #ff2d55;
            transform: translateY(-4px);
            box-shadow: 0 6px 18px rgba(255, 45, 85, 0.5);
        }
        footer {
            background-color: #1a365d;
            color: white;
            padding: 80px 0 50px;
            margin-top: 120px;
        }
        .footer-container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        .footer-section {
            margin-bottom: 25px;
        }
        .footer-section h3 {
            color: #ffd60a;
            border-left: 6px solid #ff2d55;
            margin-bottom: 35px;
            padding-left: 25px;
        }
        .footer-recommendation {
            background-color: rgba(255, 255, 255, 0.12);
            padding: 35px;
            border-radius: 20px;
            text-align: center;
            font-size: 22px;
            line-height: 2.1;
        }
        .footer-recommendation strong {
            color: #ffd60a;
            font-size: 24px;
        }
        .copyright {
            text-align: center;
            font-size: 20px;
            opacity: 0.9;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.25);
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 38px;
                margin: 60px 0 40px;
                padding-bottom: 25px;
            }
            h2 {
                font-size: 32px;
                margin: 70px 0 30px;
                padding-left: 20px;
                gap: 15px;
            }
            h2::before {
                font-size: 36px;
            }
            h3 {
                font-size: 28px;
                margin: 50px 0 25px;
                padding-left: 20px;
                gap: 12px;
            }
            h3::before {
                font-size: 30px;
            }
            h4 {
                font-size: 24px;
                margin: 40px 0 22px;
            }
            p, ul, ol {
                font-size: 18px;
                line-height: 1.9;
            }
            .btn {
                padding: 22px 40px;
                font-size: 22px;
                width: 100%;
                min-width: auto;
            }
            .card-container {
                gap: 35px;
            }
            .card {
                padding: 35px;
            }
            ul, ol {
                margin: 30px 0 40px 55px;
            }
            li {
                margin-bottom: 22px;
            }
            .img-container {
                margin: 50px 0;
            }
            .img-grid {
                gap: 30px;
                margin: 50px 0;
            }
            .img-grid-item img {
                height: 230px;
            }
            .btn-container {
                gap: 30px;
                margin: 60px 0;
            }
            .tabs {
                gap: 18px;
                margin: 50px 0;
            }
            .tab {
                padding: 15px 30px;
                font-size: 17px;
            }
            .tab-content {
                padding: 35px;
            }
            .section-highlight {
                padding: 35px;
                margin: 60px 0;
            }
            .game-types, .tags {
                padding: 35px;
                margin: 70px 0;
            }
            .type-links, .tag-links {
                gap: 20px;
                margin-top: 30px;
            }
            .type-link {
                padding: 12px 28px;
                font-size: 18px;
            }
            .tag-link {
                padding: 10px 25px;
                font-size: 17px;
            }
        }
        @media (max-width: 480px) {
            .logo {
                font-size: 24px;
            }
            h1 {
                font-size: 34px;
                margin: 50px 0 35px;
                padding-bottom: 20px;
            }
            h2 {
                font-size: 28px;
                margin: 60px 0 25px;
            }
            .img-grid-item img {
                height: 200px;
            }
            .footer-container {
                gap: 40px;
            }
            .footer-recommendation {
                padding: 30px;
                font-size: 20px;
            }
        }
