        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            scroll-behavior: smooth;
        }
        body {
            line-height: 1.8;
            color: #2d2d2d;
            background-color: #f5f2e9;
            padding-bottom: 4rem;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            transform: translateX(3px);
        }
        button {
            cursor: pointer;
            border: none;
            border-radius: 6px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            font-weight: 600;
        }
        img {
            max-width: 100%;
            height: auto;
            object-fit: cover;
            border-radius: 8px;
            loading: lazy; 
            border: 1px solid #eee;
        }
        h1, h2, h3, h4, h5 {
            font-weight: 700;
            margin-bottom: 1.2rem;
            color: #1e3a28; 
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin: 2.5rem 0;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
            color: #14291d;
            border-bottom: 4px solid #e6b325; 
            padding-bottom: 1rem;
            display: inline-block;
            width: 100%;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #d63333; 
            padding-left: 1rem;
            margin-top: 3.5rem;
            color: #14291d;
        }
        h3 {
            font-size: 1.6rem;
            color: #d63333;
            margin-top: 2.2rem;
            display: flex;
            align-items: center;
        }
        h3::before {
            content: "🛡️";
            margin-right: 0.8rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #1e3a28;
            margin-top: 1.8rem;
        }
        p {
            margin: 1.2rem 0;
            font-size: 1.05rem;
            line-height: 1.9;
            text-align: justify;
            color: #333;
            max-width: 100%;
        }
        .highlight {
            background-color: #fff8e0; 
            padding: 0.3rem 0.6rem;
            border-radius: 4px;
            font-weight: 600;
            color: #8a6e04;
            border: 1px solid #ffe082;
        }
        .desi-term {
            font-style: italic;
            font-weight: 600;
            color: #d63333;
        }
        .indian-english {
            font-weight: 600;
            color: #1e3a28;
        }
        .navbar {
            background-color: #121212;
            color: #ffffff;
            padding: 1.2rem 2rem;
            position: sticky;
            top: 0;
            z-index: 9999;
            display: flex;
            justify-content: space-between;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #e6b325;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: #d63333;
            margin-left: 0.5rem;
        }
        .nav-links {
            display: flex;
            gap: 2.2rem;
            list-style: none;
        }
        .nav-links li a {
            font-weight: 500;
            font-size: 1.05rem;
            position: relative;
            padding-bottom: 0.3rem;
        }
        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #e6b325;
            transition: width 0.3s ease;
        }
        .nav-links li a:hover {
            color: #e6b325;
        }
        .nav-links li a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 0.9rem 1.8rem;
            font-size: 1.05rem;
            border-radius: 6px;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: #d63333;
            color: white;
            box-shadow: 0 4px 8px rgba(214, 51, 51, 0.3);
        }
        .btn-download:hover {
            background-color: #b02a2a;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(214, 51, 51, 0.4);
        }
        .btn-login {
            background-color: #e6b325;
            color: #121212;
            margin-left: 1.2rem;
            box-shadow: 0 4px 8px rgba(230, 179, 37, 0.3);
        }
        .btn-login:hover {
            background-color: #c99e1f;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(230, 179, 37, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #e6b325;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://host.com/images/tripura-top-gladiator-hero.jpg') center/cover no-repeat;
            height: 85vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            padding: 0 2rem;
            margin-bottom: 3rem;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
            color: white;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.6);
            border-bottom: none;
            padding-bottom: 0;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin-bottom: 2.5rem;
            line-height: 2;
            color: #f8f9fa;
            text-align: center;
        }
        .hero-buttons {
            display: flex;
            gap: 1.8rem;
            flex-wrap: wrap;
            justify-content: center;
        }
        .infobox {
            float: right;
            width: 320px;
            background-color: #ffffff;
            border: 1px solid #e9ecef;
            border-radius: 10px;
            padding: 1.5rem;
            margin: 0 0 2rem 2rem;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .infobox-title {
            font-size: 1.4rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1.2rem;
            color: #14291d;
            border-bottom: 3px solid #e6b325;
            padding-bottom: 0.7rem;
        }
        .infobox-image {
            width: 100%;
            border-radius: 8px;
            margin-bottom: 1.2rem;
            border: 2px solid #f1f1f1;
        }
        .infobox-details {
            list-style: none;
        }
        .infobox-details li {
            margin: 1rem 0;
            display: flex;
            justify-content: space-between;
            padding: 0.3rem 0;
            border-bottom: 1px solid #f5f5f5;
        }
        .infobox-details li:last-child {
            border-bottom: none;
        }
        .infobox-details li span:first-child {
            font-weight: 600;
            color: #1e3a28;
            width: 45%;
        }
        .infobox-details li span:last-child {
            width: 55%;
            text-align: right;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .gameplay-modes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .mode-card {
            background-color: white;
            border-radius: 10px;
            padding: 1.8rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-top: 4px solid #d63333;
        }
        .mode-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.12);
        }
        .mode-card h3 {
            margin-bottom: 1.2rem;
            color: #14291d;
        }
        .mode-card ul {
            list-style: disc;
            padding-left: 1.8rem;
            margin: 1.2rem 0;
        }
        .mode-card li {
            margin: 0.8rem 0;
            font-size: 1.02rem;
        }
        .mode-card .mode-icon {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #d63333;
        }
        .characters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
            margin: 3rem 0;
        }
        .character-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-bottom: 4px solid #e6b325;
        }
        .character-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        .character-image {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-bottom: 2px solid #f1f1f1;
        }
        .character-info {
            padding: 1.8rem;
        }
        .character-info h3 {
            margin-bottom: 0.8rem;
            color: #14291d;
        }
        .character-state {
            color: #d63333;
            font-weight: 600;
            margin-bottom: 1.2rem;
            display: block;
            font-size: 1.05rem;
        }
        .character-ability {
            background-color: #f8f9fa;
            padding: 1rem;
            border-radius: 6px;
            margin-top: 1rem;
        }
        .character-ability h4 {
            margin-bottom: 0.8rem;
            color: #1e3a28;
            font-size: 1.1rem;
        }
        .development-timeline {
            position: relative;
            margin: 4rem 0;
            padding-left: 3rem;
        }
        .development-timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background-color: #e6b325;
            border-radius: 2px;
        }
        .timeline-event {
            position: relative;
            margin-bottom: 3rem;
            background-color: white;
            padding: 1.8rem;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .timeline-event::before {
            content: '';
            position: absolute;
            left: -3.5rem;
            top: 1.5rem;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: #d63333;
            border: 4px solid #e6b325;
            z-index: 1;
        }
        .timeline-date {
            font-weight: 700;
            color: #1e3a28;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            display: inline-block;
            background-color: #fff8e0;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
        }
        .reviews-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .review-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 5px solid #d63333;
            position: relative;
        }
        .review-card::before {
            content: '"';
            position: absolute;
            top: -15px;
            left: 20px;
            font-size: 4rem;
            color: #f1f1f1;
            font-family: Georgia, serif;
        }
        .review-source {
            font-weight: 700;
            color: #1e3a28;
            margin-bottom: 0.8rem;
            font-size: 1.1rem;
        }
        .review-rating {
            color: #e6b325;
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .review-text {
            font-style: italic;
            color: #495057;
            line-height: 1.9;
        }
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.8rem;
            margin: 3rem 0;
        }
        .platform-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .platform-card:hover {
            transform: scale(1.05);
        }
        .platform-icon {
            font-size: 3rem;
            margin-bottom: 1.2rem;
            color: #d63333;
        }
        .platform-name {
            font-weight: 600;
            color: #14291d;
            font-size: 1.1rem;
            margin-bottom: 0.8rem;
        }
        .platform-specs {
            font-size: 0.95rem;
            color: #6c757d;
        }
        .expansion-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .expansion-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .expansion-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .expansion-info {
            padding: 1.8rem;
        }
        .expansion-date {
            color: #d63333;
            font-weight: 600;
            margin-bottom: 0.8rem;
            font-size: 0.95rem;
        }
        .expansion-features {
            list-style: circle;
            padding-left: 1.5rem;
            margin-top: 1rem;
        }
        .expansion-features li {
            margin: 0.6rem 0;
        }
        .impact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .impact-card {
            background-color: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-top: 4px solid #1e3a28;
        }
        .impact-icon {
            font-size: 2.5rem;
            color: #d63333;
            margin-bottom: 1.2rem;
        }
        .map-sections {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .map-card {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        .map-image {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .map-info {
            padding: 1.5rem;
        }
        .map-info h3 {
            margin-bottom: 0.8rem;
            color: #14291d;
        }
        .map-features {
            list-style: square;
            padding-left: 1.5rem;
            margin-top: 1rem;
        }
        .map-features li {
            margin: 0.5rem 0;
            font-size: 1.02rem;
        }
        .monetization-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .monetization-card {
            background-color: white;
            padding: 1.8rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            border-left: 4px solid #e6b325;
        }
        .monetization-card h3 {
            margin-bottom: 1.2rem;
            color: #14291d;
        }
        .monetization-list {
            list-style: disc;
            padding-left: 1.8rem;
        }
        .monetization-list li {
            margin: 0.8rem 0;
            font-size: 1.02rem;
        }
        .footer {
            background-color: #121212;
            color: #f8f9fa;
            padding: 4rem 2rem;
            margin-top: 6rem;
        }
        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            color: #e6b325;
            margin-bottom: 1.8rem;
            border-bottom: 3px solid #d63333;
            padding-bottom: 0.8rem;
            display: inline-block;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin: 1rem 0;
        }
        .footer-links li a:hover {
            color: #e6b325;
            padding-left: 0.5rem;
        }
        .recommendation {
            background-color: #242424;
            padding: 2rem;
            border-radius: 10px;
            margin-top: 1.5rem;
            border: 1px solid #444;
        }
        .recommendation h4 {
            color: #e6b325;
            margin-bottom: 1.2rem;
            font-size: 1.3rem;
        }
        .recommendation p {
            color: #e9ecef;
            line-height: 1.9;
        }
        .game-categories {
            margin-top: 1.5rem;
        }
        .game-categories h4 {
            color: #e6b325;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .categories-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .category-tag {
            background-color: #3a3a3a;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.95rem;
        }
        .category-tag:hover {
            background-color: #e6b325;
            color: #121212;
        }
        .tags-container {
            margin-top: 1.5rem;
        }
        .tags-container h4 {
            color: #e6b325;
            margin-bottom: 1rem;
            font-size: 1.1rem;
        }
        .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }
        .tag {
            background-color: #3a3a3a;
            padding: 0.4rem 0.8rem;
            border-radius: 4px;
            font-size: 0.9rem;
        }
        .tag:hover {
            background-color: #d63333;
            color: white;
        }
        .copyright {
            text-align: center;
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
            font-size: 0.95rem;
            color: #aaa;
            line-height: 1.8;
        }
        @media (max-width: 1200px) {
            .infobox {
                width: 300px;
            }
            .hero h1 {
                font-size: 3rem;
            }
        }
        @media (max-width: 992px) {
            .infobox {
                float: none;
                width: 100%;
                margin: 0 0 2.5rem 0;
            }
            .nav-links {
                gap: 1.8rem;
            }
            .btn {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }
            .hero h1 {
                font-size: 2.7rem;
            }
            .hero p {
                font-size: 1.2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #121212;
                padding: 2rem;
                gap: 1.8rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .button-group {
                display: none;
            }
            .mobile-buttons {
                display: flex;
                gap: 1rem;
                margin-top: 1rem;
            }
            .hero {
                height: auto;
                padding: 4rem 1.5rem;
            }
            .hero h1 {
                font-size: 2.3rem;
                margin-bottom: 1.5rem;
            }
            .hero p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            .hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 350px;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .development-timeline {
                padding-left: 2rem;
            }
            .timeline-event::before {
                left: -2.5rem;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 1rem 1.5rem;
            }
            .logo {
                font-size: 1.5rem;
            }
            .container {
                padding: 0 1.5rem;
            }
            .gameplay-modes, .characters-grid, .reviews-container, .platforms-grid, .impact-grid, .expansion-grid, .map-sections, .monetization-grid {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
                padding-left: 0.8rem;
            }
            h3 {
                font-size: 1.3rem;
            }
            p {
                font-size: 1rem;
                line-height: 1.8;
            }
            .infobox {
                padding: 1.2rem;
            }
            .character-image {
                height: 200px;
            }
            .timeline-event {
                padding: 1.5rem;
            }
            .review-card {
                padding: 1.5rem;
            }
            .footer {
                padding: 3rem 1.5rem;
            }
            .footer-container {
                gap: 2rem;
            }
        }
        :focus-visible {
            outline: 3px solid #e6b325;
            outline-offset: 2px;
        }
        @media print {
            body {
                background-color: white;
                color: black;
            }
            .navbar, .hero, .btn, .footer {
                display: none;
            }
            .infobox {
                float: none;
                width: 100%;
                margin: 0 0 2rem 0;
                border: 1px solid #ccc;
            }
        }
