:root {
            --primary: #6A0DAD; 
            --secondary: #D4AF37; 
            --accent: #F5F5DC; 
            --background: #F8F4E9; 
            --text: #333333; 
            --light-text: #666666; 
            --highlight: #B8860B; 
            --success: #228B22; 
            --white: #FFFFFF;
            --shadow: 0 4px 18px rgba(0,0,0,0.12);
            --transition: all 0.35s ease-in-out;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--background);
            color: var(--text);
            line-height: 1.9;
            padding: 0;
            margin: 0;
            font-size: 16.5px;
        }
        .container {
            max-width: 1350px;
            margin: 0 auto;
            padding: 0 30px;
        }
        header {
            background-color: var(--white);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 9999;
            padding: 18px 0;
            border-bottom: 2px solid var(--secondary);
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 0.8px;
            display: flex;
            align-items: center;
            text-transform: uppercase;
        }
        .logo span {
            color: var(--secondary);
            margin-left: 10px;
            font-style: italic;
        }
        .logo i {
            margin-right: 12px;
            color: var(--highlight);
        }
        .nav-links {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .nav-links li {
            margin-left: 42px;
            position: relative;
        }
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 550;
            transition: var(--transition);
            padding: 12px 0;
            display: inline-block;
            font-size: 17.5px;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .btn {
            padding: 14px 30px;
            border-radius: 10px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 16.5px;
            display: inline-block;
            text-align: center;
            text-transform: uppercase;
            letter-spacing: 0.6px;
        }
        .btn-download {
            background-color: var(--primary);
            color: var(--white);
            margin-right: 18px;
            box-shadow: 0 5px 0 #550A8A;
        }
        .btn-download:hover {
            background-color: #5B0A9E;
            transform: translateY(-4px);
            box-shadow: 0 7px 0 #4A0878;
        }
        .btn-download:active {
            transform: translateY(0);
            box-shadow: 0 4px 0 #4A0878;
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--white);
            box-shadow: 0 5px 0 #B8860B;
        }
        .btn-login:hover {
            background-color: #C9B037;
            transform: translateY(-4px);
            box-shadow: 0 7px 0 #A07608;
        }
        .btn-login:active {
            transform: translateY(0);
            box-shadow: 0 4px 0 #A07608;
        }
        .hamburger {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: var(--primary);
            background: none;
            border: none;
        }
        .hero {
            padding: 100px 0 90px;
            text-align: center;
            background: linear-gradient(135deg, var(--background), var(--accent) 100%);
            border-radius: 20px;
            margin: 50px 0;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="150" height="150" viewBox="0 0 150 150"><rect width="150" height="150" fill="%23D4AF37" opacity="0.05"/><circle cx="75" cy="75" r="60" fill="%236A0DAD" opacity="0.03"/><path d="M0,75 Q37.5,37.5 75,75 Q112.5,112.5 150,75" stroke="%23B8860B" stroke-width="2" fill="none" opacity="0.06"/>');
            background-repeat: repeat;
            background-size: 250px;
            z-index: 0;
        }
        .hero-content {
            position: relative;
            z-index: 1;
        }
        .hero h1 {
            font-size: 58px;
            color: var(--primary);
            margin-bottom: 35px;
            line-height: 1.6;
            font-weight: 800;
            text-shadow: 0 4px 8px rgba(0,0,0,0.08);
            text-transform: capitalize;
        }
        .hero h1 span {
            color: var(--secondary);
        }
        .hero p {
            font-size: 24px;
            max-width: 1050px;
            margin: 0 auto 45px;
            color: var(--light-text);
            font-weight: 450;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        .hero-tagline {
            font-size: 21px;
            color: var(--text);
            margin-top: 35px;
            font-weight: 550;
            font-style: italic;
        }
        .content-section {
            background-color: var(--white);
            border-radius: 20px;
            padding: 70px;
            margin-bottom: 55px;
            box-shadow: var(--shadow);
            border-top: 6px solid var(--primary);
        }
        .content-section h2 {
            font-size: 42px;
            color: var(--primary);
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 4px solid var(--highlight);
            font-weight: 750;
            position: relative;
            text-transform: capitalize;
        }
        .content-section h2::after {
            content: '';
            position: absolute;
            width: 110px;
            height: 4px;
            background-color: var(--secondary);
            bottom: -4px;
            left: 0;
        }
        .content-section h3 {
            font-size: 32px;
            color: var(--secondary);
            margin: 55px 0 30px;
            font-weight: 650;
            display: flex;
            align-items: center;
            text-transform: capitalize;
        }
        .content-section h3 i {
            margin-right: 20px;
            color: var(--primary);
        }
        .content-section h4 {
            font-size: 26px;
            color: var(--highlight);
            margin: 45px 0 22px;
            font-weight: 650;
            text-transform: capitalize;
        }
        .content-section p {
            margin-bottom: 35px;
            font-size: 20px;
            color: var(--text);
            text-align: justify;
        }
        .content-section p:first-of-type {
            margin-top: 20px;
        }
        .content-section ul {
            margin: 35px 0 40px 55px;
            list-style-type: disc;
        }
        .content-section ul ul {
            margin: 20px 0 20px 45px;
            list-style-type: circle;
        }
        .content-section li {
            margin-bottom: 22px;
            font-size: 20px;
            color: var(--text);
            padding-left: 15px;
        }
        .content-section ol {
            margin: 35px 0 40px 55px;
            list-style-type: decimal;
        }
        .content-section ol li {
            margin-bottom: 22px;
            font-size: 20px;
            color: var(--text);
            padding-left: 15px;
        }
        .image-container {
            text-align: center;
            margin: 70px 0;
            padding: 25px;
            background-color: var(--accent);
            border-radius: 15px;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow);
            border: 2px solid #eee;
        }
        .image-caption {
            margin-top: 25px;
            font-style: italic;
            color: var(--light-text);
            font-size: 19px;
            max-width: 950px;
            margin-left: auto;
            margin-right: auto;
        }
        .highlight-box {
            background-color: rgba(212, 175, 55, 0.12);
            padding: 35px;
            border-left: 8px solid var(--secondary);
            margin: 55px 0;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        }
        .highlight-box p {
            margin: 0;
            font-weight: 550;
            font-size: 21px;
            color: var(--text);
            line-height: 1.9;
        }
        .highlight-box p::before {
            content: '📜 ';
            font-size: 28px;
            vertical-align: middle;
        }
        .quote-author {
            display: block;
            margin-top: 25px;
            font-size: 19px;
            color: var(--light-text);
            font-style: italic;
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 55px 0;
            font-size: 19px;
        }
        .comparison-table th, .comparison-table td {
            padding: 25px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
        }
        .comparison-table th {
            background-color: var(--primary);
            color: var(--white);
            font-weight: 650;
            font-size: 20px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
        }
        .comparison-table tr:hover {
            background-color: rgba(212, 175, 55, 0.04);
        }
        .comparison-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin: 55px 0;
        }
        .feature-card {
            background-color: var(--accent);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 5px solid var(--primary);
        }
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }
        .feature-card h4 {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 25px;
            font-weight: 650;
            display: flex;
            align-items: center;
        }
        .feature-card h4 i {
            margin-right: 15px;
            color: var(--secondary);
        }
        .feature-card p {
            font-size: 19px;
            color: var(--text);
            margin-bottom: 0;
        }
        .stats-section {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin: 70px 0;
            gap: 40px;
        }
        .stat-box {
            text-align: center;
            background-color: var(--accent);
            padding: 40px;
            border-radius: 15px;
            flex: 1;
            min-width: 250px;
            box-shadow: var(--shadow);
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .stat-number {
            font-size: 55px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.4;
        }
        .stat-label {
            font-size: 22px;
            color: var(--text);
            font-weight: 550;
            text-transform: capitalize;
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid #eee;
            margin: 55px 0 45px;
        }
        .tab {
            padding: 18px 35px;
            background-color: #f5f5f5;
            border: none;
            cursor: pointer;
            font-size: 19px;
            font-weight: 550;
            transition: var(--transition);
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
            margin-right: 10px;
            text-transform: capitalize;
        }
        .tab.active {
            background-color: var(--primary);
            color: var(--white);
        }
        .tab:hover:not(.active) {
            background-color: #e9e9e9;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .quote-box {
            background-color: rgba(106, 13, 173, 0.05);
            padding: 40px;
            border-radius: 15px;
            margin: 60px 0;
            text-align: center;
            position: relative;
        }
        .quote-box p {
            font-size: 24px;
            font-weight: 550;
            color: var(--primary);
            line-height: 2.1;
            font-style: italic;
            margin-bottom: 30px;
        }
        .quote-box::before {
            content: '"';
            font-size: 80px;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
            top: -20px;
            left: 30px;
        }
        .quote-box::after {
            content: '"';
            font-size: 80px;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
            bottom: -40px;
            right: 30px;
        }
        .quote-attribution {
            font-size: 20px;
            color: var(--light-text);
            font-weight: 500;
        }
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 70px auto;
        }
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--secondary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            background-color: inherit;
            width: 50%;
        }
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            right: -17px;
            background-color: var(--white);
            border: 4px solid var(--primary);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        .left {
            left: 0;
        }
        .right {
            left: 50%;
        }
        .left::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            right: 30px;
            border: medium solid var(--highlight);
            border-width: 10px 0 10px 10px;
            border-color: transparent transparent transparent var(--highlight);
        }
        .right::before {
            content: " ";
            height: 0;
            position: absolute;
            top: 22px;
            width: 0;
            z-index: 1;
            left: 30px;
            border: medium solid var(--highlight);
            border-width: 10px 10px 10px 0;
            border-color: transparent var(--highlight) transparent transparent;
        }
        .right::after {
            left: -16px;
        }
        .timeline-content {
            padding: 30px;
            background-color: var(--accent);
            position: relative;
            border-radius: 12px;
            box-shadow: var(--shadow);
        }
        .timeline-date {
            font-size: 22px;
            font-weight: 650;
            color: var(--primary);
            margin-bottom: 15px;
        }
        .timeline-text {
            font-size: 19px;
            color: var(--text);
        }
        footer {
            background-color: var(--text);
            color: var(--white);
            padding: 90px 0 60px;
            margin-top: 80px;
            border-top: 8px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 70px;
            margin-bottom: 70px;
        }
        .footer-column h3 {
            font-size: 26px;
            margin-bottom: 35px;
            color: var(--secondary);
            font-weight: 650;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(255,255,255,0.18);
            text-transform: capitalize;
        }
        .footer-column ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .footer-column li {
            margin-bottom: 25px;
        }
        .footer-column a {
            color: #ccc;
            text-decoration: none;
            transition: var(--transition);
            font-size: 19px;
        }
        .footer-column a:hover {
            color: var(--secondary);
            padding-left: 10px;
        }
        .recommendation-box {
            background-color: rgba(212, 175, 55, 0.1);
            padding: 40px;
            border-radius: 15px;
            margin: 55px 0;
            border: 1px solid rgba(212, 175, 55, 0.2);
        }
        .recommendation-box h4 {
            color: var(--secondary);
            font-size: 24px;
            margin-bottom: 25px;
            font-weight: 650;
            text-transform: capitalize;
        }
        .recommendation-box p {
            color: #ddd;
            font-size: 20px;
            line-height: 1.9;
            margin-bottom: 0;
        }
        .copyright {
            text-align: center;
            padding-top: 60px;
            border-top: 1px solid rgba(255,255,255,0.18);
            font-size: 18px;
            color: #aaa;
            line-height: 1.9;
        }
        .copyright a {
            color: var(--secondary);
            text-decoration: none;
        }
        .copyright a:hover {
            text-decoration: underline;
        }
        .game-categories {
            margin: 35px 0;
        }
        .game-categories h4 {
            font-size: 22px;
            color: var(--secondary);
            margin-bottom: 25px;
            font-weight: 550;
            text-transform: capitalize;
        }
        .category-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .category-tag {
            background-color: rgba(255,255,255,0.12);
            padding: 12px 25px;
            border-radius: 30px;
            font-size: 17px;
        }
        .category-tag a {
            color: #ccc;
            text-decoration: none;
        }
        .category-tag a:hover {
            color: var(--secondary);
            padding-left: 0;
        }
        @media (max-width: 1400px) {
            .content-section {
                padding: 60px;
            }
            .hero h1 {
                font-size: 52px;
            }
        }
        @media (max-width: 1200px) {
            .nav-links li {
                margin-left: 35px;
            }
            .hero h1 {
                font-size: 48px;
            }
            .hero p {
                font-size: 22px;
            }
            .content-section h2 {
                font-size: 38px;
            }
            .content-section h3 {
                font-size: 29px;
            }
            .stat-number {
                font-size: 50px;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                box-shadow: 0 15px 15px rgba(0,0,0,0.18);
                padding: 35px;
                border-radius: 0 0 20px 20px;
            }
            .nav-links li {
                margin: 20px 0;
                padding: 15px 0;
                border-bottom: 1px solid #f0f0f0;
            }
            .nav-links li:last-child {
                border-bottom: none;
            }
            .nav-links li a {
                font-size: 19px;
            }
            .hamburger {
                display: block;
            }
            .nav-links.active {
                display: flex;
            }
            .hero {
                padding: 80px 0 70px;
            }
            .hero h1 {
                font-size: 44px;
            }
            .hero p {
                font-size: 21px;
            }
            .content-section {
                padding: 55px;
            }
            .content-section h2 {
                font-size: 36px;
                margin-bottom: 35px;
            }
            .content-section h3 {
                font-size: 27px;
                margin: 45px 0 25px;
            }
            .btn {
                padding: 13px 27px;
                font-size: 16px;
            }
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            .timeline-item::before {
                left: 60px;
                border: medium solid var(--highlight);
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--highlight) transparent transparent;
            }
            .left::after, .right::after {
                left: 15px;
            }
            .right {
                left: 0%;
            }
        }
        @media (max-width: 768px) {
            .navbar {
                justify-content: space-between;
            }
            .button-group {
                display: flex;
                margin-top: 25px;
                width: 100%;
                justify-content: center;
            }
            .btn-download {
                margin-right: 15px;
            }
            .hero {
                padding: 70px 0 60px;
                margin: 35px 0;
            }
            .hero h1 {
                font-size: 38px;
            }
            .hero p {
                font-size: 20px;
                margin-bottom: 35px;
            }
            .content-section {
                padding: 45px;
            }
            .content-section h2 {
                font-size: 32px;
                margin-bottom: 30px;
            }
            .content-section h3 {
                font-size: 25px;
                margin: 40px 0 20px;
            }
            .content-section p {
                font-size: 19px;
            }
            .content-section li {
                font-size: 19px;
            }
            .image-container {
                margin: 50px 0;
                padding: 20px;
            }
            .highlight-box {
                padding: 30px;
                margin: 45px 0;
            }
            .highlight-box p {
                font-size: 20px;
            }
            .comparison-table th, .comparison-table td {
                padding: 20px;
                font-size: 17px;
            }
            .feature-cards {
                gap: 30px;
            }
            .stat-box {
                padding: 35px;
                min-width: 220px;
            }
            .stat-number {
                font-size: 45px;
            }
            .footer-content {
                gap: 50px;
            }
            .quote-box p {
                font-size: 22px;
            }
        }
        @media (max-width: 576px) {
            .navbar {
                padding: 15px 0;
            }
            .logo {
                font-size: 28px;
            }
            .button-group {
                flex-direction: column;
                gap: 15px;
            }
            .btn-download {
                margin-right: 0;
                width: 100%;
            }
            .btn-login {
                width: 100%;
            }
            .hero {
                padding: 60px 0 50px;
                margin: 25px 0;
            }
            .hero h1 {
                font-size: 34px;
                line-height: 1.5;
            }
            .hero p {
                font-size: 18px;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 18px;
            }
            .content-section {
                padding: 35px;
                margin-bottom: 40px;
            }
            .content-section h2 {
                font-size: 29px;
            }
            .content-section h3 {
                font-size: 23px;
            }
            .content-section h4 {
                font-size: 22px;
            }
            .content-section ul, .content-section ol {
                margin-left: 35px;
            }
            .content-section li {
                font-size: 18px;
                margin-bottom: 18px;
            }
            .highlight-box {
                padding: 25px;
            }
            .highlight-box p {
                font-size: 19px;
            }
            .image-caption {
                font-size: 17px;
            }
            .stat-box {
                padding: 30px;
                min-width: 180px;
            }
            .stat-number {
                font-size: 40px;
            }
            .stat-label {
                font-size: 20px;
            }
            .footer {
                padding: 70px 0 50px;
            }
            .footer-content {
                gap: 40px;
            }
            .footer-column h3 {
                font-size: 24px;
            }
            .footer-column a {
                font-size: 18px;
            }
            .copyright {
                font-size: 17px;
                padding-top: 50px;
            }
            .quote-box {
                padding: 30px;
            }
            .quote-box p {
                font-size: 20px;
            }
            .timeline-content {
                padding: 25px;
            }
            .timeline-date {
                font-size: 20px;
            }
            .timeline-text {
                font-size: 18px;
            }
        }
        ::-webkit-scrollbar {
            width: 14px;
        }
        ::-webkit-scrollbar-track {
            background: var(--background);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }
        .text-primary {
            color: var(--primary);
        }
        .text-secondary {
            color: var(--secondary);
        }
        .text-highlight {
            color: var(--highlight);
        }
        .font-bold {
            font-weight: 650;
        }
        .mb-0 {
            margin-bottom: 0;
        }
        .mt-0 {
            margin-top: 0;
        }
        .mb-10 {
            margin-bottom: 10px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mt-20 {
            margin-top: 20px;
        }
        .text-center {
            text-align: center;
        }
        .italic {
            font-style: italic;
        }
        .underline {
            text-decoration: underline;
        }
        .desi-note {
            background-color: rgba(184, 134, 11, 0.08);
            padding: 20px;
            border-radius: 8px;
            margin: 25px 0;
            font-size: 19px;
            border-left: 4px solid var(--highlight);
        }
