* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            scroll-behavior: smooth;
        }
        :root {
            --primary: #1a5d1a;
            --secondary: #2c3e50;
            --accent: #d4af37;
            --light: #f8f9fa;
            --dark: #1a1a1a;
            --gray: #6c757d;
            --tan: #d2b48c;
            --rust: #b7410e;
            --spacing: 1.5rem;
            --border-radius: 10px;
            --shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        body {
            background-color: #faf6ed;
            color: var(--dark);
            line-height: 1.8;
            font-size: 16px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        header {
            background-color: var(--secondary);
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 15px rgba(0,0,0,0.15);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.9rem;
            font-weight: 700;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
            font-family: 'Georgia', serif;
        }
        .logo span {
            color: white;
            font-family: 'Georgia', serif;
        }
        .nav-links {
            display: flex;
            gap: 2.2rem;
            align-items: center;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease, transform 0.3s ease;
            font-size: 1.05rem;
        }
        .nav-links a:hover {
            color: var(--accent);
            transform: translateY(-2px);
        }
        .btn {
            padding: 0.9rem 1.8rem;
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            font-size: 1.05rem;
        }
        .btn-primary {
            background-color: var(--primary);
            color: white;
            border: 2px solid transparent;
        }
        .btn-primary:hover {
            background-color: #144614;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(26,93,26,0.3);
        }
        .btn-secondary {
            background-color: var(--accent);
            color: var(--dark);
            margin-left: 1.2rem;
            border: 2px solid transparent;
        }
        .btn-secondary:hover {
            background-color: #c29d28;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(212,175,55,0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .hero {
            background: linear-gradient(rgba(44,62,80,0.9), rgba(26,26,26,0.95)), url('https://via.placeholder.com/1920x1080?text=Rashtrakuta+Bow+Ruler+Epic+Battle') center/cover no-repeat;
            color: white;
            padding: 8rem 0 7rem;
            text-align: center;
            margin-bottom: 4rem;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            position: relative;
            overflow: hidden;
        }
        .hero::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://via.placeholder.com/200x200?text=Arrow+Pattern');
            background-repeat: repeat;
            background-size: 100px;
            opacity: 0.05;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.8rem;
            color: var(--accent);
            text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
            font-family: 'Georgia', serif;
            line-height: 1.3;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 3rem;
            opacity: 0.95;
            line-height: 1.9;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.8rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }
        .hero-tags {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
            margin-top: 3rem;
        }
        .hero-tag {
            background-color: rgba(255,255,255,0.1);
            color: var(--light);
            padding: 0.5rem 1.2rem;
            border-radius: 25px;
            font-size: 0.95rem;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2.5rem;
            margin-bottom: 5rem;
        }
        .content-section {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            margin-bottom: 3rem;
            border: 1px solid #eee;
        }
        .content-section h2 {
            color: var(--secondary);
            margin-bottom: 2rem;
            padding-bottom: 0.8rem;
            border-bottom: 3px solid var(--accent);
            font-size: 2.2rem;
            font-family: 'Georgia', serif;
        }
        .content-section h3 {
            color: var(--primary);
            margin: 2.5rem 0 1.2rem;
            font-size: 1.7rem;
            font-family: 'Georgia', serif;
        }
        .content-section h4 {
            color: var(--rust);
            margin: 1.8rem 0 0.8rem;
            font-size: 1.3rem;
            font-family: 'Georgia', serif;
        }
        .content-section p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.05rem;
        }
        .content-section img {
            max-width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
            border: 1px solid #eee;
        }
        .content-section img.align-left {
            float: left;
            width: 40%;
            margin-right: 1.5rem;
            margin-bottom: 1rem;
        }
        .content-section img.align-right {
            float: right;
            width: 40%;
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }
        .content-section::after {
            content: "";
            display: table;
            clear: both;
        }
        .feature-list {
            list-style: none;
            margin: 2rem 0;
        }
        .feature-list li {
            margin-bottom: 1.3rem;
            padding-left: 2rem;
            position: relative;
            font-size: 1.05rem;
        }
        .feature-list li::before {
            content: "🏹";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-size: 1.2rem;
        }
        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background-color: var(--light);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 3px 10px rgba(0,0,0,0.08);
            border-left: 4px solid var(--accent);
        }
        .stat-card h4 {
            color: var(--secondary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        .stat-card .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2.5rem 0;
        }
        .character-card {
            background: var(--light);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid #eee;
        }
        .character-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        .character-card img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            margin: 0;
            border-bottom: 2px solid var(--accent);
        }
        .character-info {
            padding: 1.5rem;
        }
        .character-info h4 {
            color: var(--secondary);
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }
        .character-info .character-class {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            margin-bottom: 1rem;
        }
        .character-info p {
            font-size: 1rem;
            color: var(--gray);
            margin-bottom: 1rem;
            line-height: 1.7;
        }
        .character-abilities {
            margin-top: 1rem;
        }
        .ability {
            display: flex;
            align-items: center;
            margin-bottom: 0.8rem;
        }
        .ability-icon {
            color: var(--accent);
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }
        .strategy-tip {
            background-color: rgba(212,175,55,0.08);
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .strategy-tip h4 {
            color: var(--secondary);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
        }
        .strategy-tip h4::after {
            content: "🎯";
            margin-left: 0.8rem;
        }
        .quote-box {
            background-color: rgba(26,93,26,0.05);
            border-radius: var(--border-radius);
            padding: 1.8rem;
            margin: 2.5rem 0;
            position: relative;
        }
        .quote-box::before {
            content: """;
            position: absolute;
            top: -15px;
            left: 20px;
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.3;
            font-family: 'Georgia', serif;
        }
        .quote-box p {
            font-style: italic;
            color: var(--secondary);
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 1rem;
            color: var(--gray);
            font-weight: 500;
        }
        .timeline {
            position: relative;
            margin: 3rem 0;
            padding-left: 2rem;
        }
        .timeline::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background-color: var(--tan);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: -2.35rem;
            top: 0;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background-color: var(--primary);
            border: 3px solid white;
            box-shadow: 0 0 0 3px var(--tan);
        }
        .timeline-date {
            font-weight: 700;
            color: var(--rust);
            margin-bottom: 0.5rem;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2.5rem 0;
        }
        .comparison-table th, .comparison-table td {
            padding: 1.2rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .comparison-table th {
            background-color: var(--light);
            color: var(--secondary);
            font-weight: 600;
        }
        .comparison-table tr:hover {
            background-color: rgba(212,175,55,0.03);
        }
        .comparison-table .highlight {
            color: var(--primary);
            font-weight: 500;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border: 1px solid #eee;
        }
        .sidebar-widget h3 {
            color: var(--secondary);
            margin-bottom: 1.3rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--tan);
            font-size: 1.4rem;
            font-family: 'Georgia', serif;
        }
        .game-meta {
            list-style: none;
        }
        .game-meta li {
            display: flex;
            justify-content: space-between;
            padding: 0.8rem 0;
            border-bottom: 1px solid #f0f0f0;
            font-size: 1.05rem;
        }
        .game-meta li:last-child {
            border-bottom: none;
        }
        .game-meta strong {
            color: var(--primary);
            min-width: 120px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 0.9rem;
            margin-top: 1.2rem;
        }
        .tag-cloud a {
            background-color: var(--light);
            color: var(--secondary);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .tag-cloud a:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        .download-box {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            text-align: center;
            box-shadow: 0 6px 18px rgba(26,93,26,0.25);
        }
        .download-box h3 {
            color: white;
            margin-bottom: 1.2rem;
            border-bottom: none;
            font-size: 1.6rem;
        }
        .download-box p {
            margin-bottom: 1.8rem;
            font-size: 1.05rem;
            opacity: 0.9;
        }
        .download-stats {
            display: flex;
            justify-content: space-around;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.2);
        }
        .download-stat {
            text-align: center;
        }
        .download-stat .stat {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.3rem;
        }
        .download-stat .label {
            font-size: 0.85rem;
            opacity: 0.8;
        }
        .platform-badges {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .platform-badge {
            background-color: rgba(255,255,255,0.1);
            padding: 0.6rem 1rem;
            border-radius: var(--border-radius);
            font-size: 0.9rem;
        }
        .related-games {
            list-style: none;
        }
        .related-game {
            display: flex;
            align-items: center;
            padding: 1rem 0;
            border-bottom: 1px solid #f0f0f0;
            transition: transform 0.3s ease;
        }
        .related-game:last-child {
            border-bottom: none;
        }
        .related-game:hover {
            transform: translateX(5px);
        }
        .related-game img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin-right: 1rem;
        }
        .related-game-info h4 {
            margin: 0 0 0.3rem 0;
            font-size: 1.05rem;
            color: var(--secondary);
        }
        .related-game-info p {
            margin: 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        footer {
            background-color: var(--secondary);
            color: white;
            padding: 5rem 0 2.5rem;
            margin-top: 4rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-column h3 {
            color: var(--accent);
            margin-bottom: 1.8rem;
            font-size: 1.5rem;
            font-family: 'Georgia', serif;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid rgba(255,255,255,0.1);
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 1rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.3s ease;
            display: inline-block;
            font-size: 1.05rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            transform: translateX(5px);
        }
        .game-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .game-categories a {
            background-color: rgba(255,255,255,0.1);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            text-decoration: none;
            font-size: 1rem;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .game-categories a:hover {
            background-color: var(--accent);
            color: var(--dark);
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: rgba(255,255,255,0.07);
            padding: 2rem;
            border-radius: var(--border-radius);
            margin-top: 1.5rem;
            border-left: 4px solid var(--accent);
        }
        .recommendation h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-family: 'Georgia', serif;
        }
        .recommendation p {
            font-size: 1.05rem;
            line-height: 1.8;
            opacity: 0.9;
        }
        .social-links {
            display: flex;
            gap: 1.2rem;
            margin-top: 1.5rem;
        }
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .social-link:hover {
            background-color: var(--accent);
            color: var(--dark);
            transform: translateY(-3px);
        }
        .newsletter {
            margin-top: 1.5rem;
        }
        .newsletter p {
            margin-bottom: 1rem;
            font-size: 1.05rem;
            color: #ddd;
        }
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
        }
        .newsletter-input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: none;
            border-radius: var(--border-radius);
            font-size: 1rem;
        }
        .newsletter-btn {
            padding: 0.9rem 1.5rem;
            background-color: var(--accent);
            color: var(--dark);
            border: none;
            border-radius: var(--border-radius);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .newsletter-btn:hover {
            background-color: #c29d28;
            transform: translateY(-2px);
        }
        .copyright {
            text-align: center;
            padding-top: 2.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 1rem;
            color: #bbb;
            line-height: 1.8;
        }
        .copyright-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }
        .copyright-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .copyright-links a:hover {
            color: var(--accent);
        }
        @media (max-width: 1200px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .sidebar {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            .hero h1 {
                font-size: 3rem;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: var(--secondary);
                padding: 1.5rem;
                gap: 1.5rem;
                box-shadow: 0 8px 15px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .header-buttons {
                margin-top: 1rem;
                width: 100%;
                display: flex;
                justify-content: center;
            }
            .btn-secondary {
                margin-left: 0.8rem;
            }
            .content-section img.align-left,
            .content-section img.align-right {
                float: none;
                width: 100%;
                margin-left: 0;
                margin-right: 0;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 6rem 0 5rem;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
            .hero p {
                font-size: 1.15rem;
            }
            .content-section {
                padding: 2rem;
            }
            .content-section h2 {
                font-size: 1.9rem;
            }
            .content-section h3 {
                font-size: 1.5rem;
            }
            .character-grid {
                grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 576px) {
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.7rem;
            }
            .btn {
                padding: 0.7rem 1.3rem;
                font-size: 1rem;
                width: 100%;
                margin-left: 0 !important;
                margin-bottom: 0.8rem;
            }
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .content-section {
                padding: 1.5rem;
            }
            .content-section h2 {
                font-size: 1.7rem;
                margin-bottom: 1.5rem;
            }
            .content-section h3 {
                font-size: 1.4rem;
                margin-top: 2rem;
            }
            .stat-grid {
                grid-template-columns: 1fr;
            }
            .character-card img {
                height: 180px;
            }
            .newsletter-form {
                flex-direction: column;
            }
            .copyright-links {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }
        }
        .text-primary {
            color: var(--primary);
        }
        .text-accent {
            color: var(--accent);
        }
        .text-rust {
            color: var(--rust);
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-1 {
            margin-bottom: 0.5rem;
        }
        .mb-2 {
            margin-bottom: 1rem;
        }
        .mb-3 {
            margin-bottom: 1.5rem;
        }
        .mb-4 {
            margin-bottom: 2rem;
        }
        .mt-1 {
            margin-top: 0.5rem;
        }
        .mt-2 {
            margin-top: 1rem;
        }
        .mt-3 {
            margin-top: 1.5rem;
        }
        .mt-4 {
            margin-top: 2rem;
        }
        .text-center {
            text-align: center;
        }
        .font-bold {
            font-weight: 700;
        }
        .font-medium {
            font-weight: 500;
        }
