* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #2e7d32;
            --secondary: #ffb74d;
            --accent: #1565c0;
            --dark: #1e272e;
            --light: #f5f6fa;
            --gray: #e0e0e0;
            --text: #2d3436;
            --success: #4caf50;
            --warning: #ff9800;
            --info: #2196f3;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.8;
            font-size: 16px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: white;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        header.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            padding: 10px 0;
        }
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: -0.7px;
            display: flex;
            align-items: center;
        }
        .logo span {
            color: var(--secondary);
            margin: 0 5px;
        }
        .logo i {
            margin-right: 10px;
            font-size: 1.5rem;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
        }
        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--primary);
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .btn {
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        .btn-download {
            background-color: var(--success);
            color: white;
            margin-right: 12px;
        }
        .btn-download:hover {
            background-color: #388e3c;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
        }
        .btn-login {
            background-color: var(--accent);
            color: white;
        }
        .btn-login:hover {
            background-color: #0d47a1;
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
            transition: color 0.3s ease;
        }
        .hamburger:hover {
            color: var(--primary);
        }
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 0 0 30px 30px;
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
        }
        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://host.com/images/himalayan-wave-rider-hero-pattern.png');
            background-size: 50px;
            opacity: 0.1;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 25px;
            text-shadow: 0 3px 6px rgba(0,0,0,0.2);
            position: relative;
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 900px;
            margin: 0 auto 40px;
            opacity: 0.95;
            position: relative;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            position: relative;
        }
        .hero-tagline {
            font-style: italic;
            font-size: 1.1rem;
            margin-top: 20px;
            opacity: 0.9;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 35px;
            margin-bottom: 80px;
        }
        .content-section {
            background: white;
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 3px 20px rgba(0,0,0,0.06);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .sidebar-card {
            background: white;
            padding: 25px;
            border-radius: 16px;
            box-shadow: 0 3px 20px rgba(0,0,0,0.06);
            transition: transform 0.3s ease;
        }
        .sidebar-card:hover {
            transform: translateY(-5px);
        }
        .sidebar-card h3 {
            font-size: 1.4rem;
            margin-top: 0;
            margin-bottom: 15px;
        }
        .sidebar-stats {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .sidebar-stat {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px solid var(--gray);
        }
        .sidebar-stat span:first-child {
            font-weight: 500;
        }
        .sidebar-stat span:last-child {
            color: var(--primary);
            font-weight: 600;
        }
        .sidebar-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 15px;
        }
        .sidebar-download {
            background-color: var(--light);
            border-radius: 12px;
            padding: 20px;
            margin-top: 15px;
            text-align: center;
        }
        .sidebar-download .btn {
            width: 100%;
            margin-right: 0;
            margin-bottom: 10px;
        }
        .sidebar-review {
            padding: 15px;
            background-color: #f9f9f9;
            border-radius: 10px;
            margin-bottom: 15px;
        }
        .reviewer {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-top: 10px;
        }
        .reviewer img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            object-fit: cover;
        }
        .reviewer-info {
            flex: 1;
        }
        .reviewer-name {
            font-weight: 600;
            font-size: 0.95rem;
        }
        .reviewer-rating {
            color: var(--secondary);
            font-size: 0.9rem;
        }
        h2 {
            color: var(--dark);
            font-size: 2.2rem;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--gray);
            position: relative;
        }
        h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            bottom: -3px;
            left: 0;
            background-color: var(--primary);
        }
        h3 {
            color: var(--primary);
            font-size: 1.6rem;
            margin: 40px 0 20px;
            position: relative;
            padding-left: 20px;
        }
        h3:before {
            content: '⛰️';
            position: absolute;
            left: 0;
            top: 2px;
        }
        h4 {
            color: var(--dark);
            font-size: 1.3rem;
            margin: 25px 0 15px;
            font-weight: 600;
        }
        p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 1.05rem;
        }
        .image-container {
            margin: 40px 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        .image-container img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }
        .image-container:hover img {
            transform: scale(1.02);
        }
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0,0,0,0.7);
            color: white;
            padding: 12px 15px;
            font-size: 0.95rem;
            text-align: center;
        }
        .feature-list {
            list-style: none;
            margin: 25px 0 35px;
        }
        .feature-list li {
            margin-bottom: 18px;
            padding-left: 30px;
            position: relative;
            font-size: 1.05rem;
        }
        .feature-list li:before {
            content: "✅";
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--success);
        }
        .table-container {
            overflow-x: auto;
            margin: 35px 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        th, td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid var(--gray);
        }
        th {
            background-color: var(--light);
            font-weight: 600;
            color: var(--dark);
            font-size: 1.05rem;
        }
        tr:hover {
            background-color: #f9f9f9;
        }
        .quote {
            font-style: italic;
            border-left: 5px solid var(--secondary);
            padding: 20px 25px;
            margin: 35px 0;
            background-color: #fff8e1;
            border-radius: 0 10px 10px 0;
            font-size: 1.1rem;
            position: relative;
        }
        .quote:after {
            content: '"';
            position: absolute;
            bottom: -20px;
            right: 20px;
            font-size: 5rem;
            color: var(--secondary);
            opacity: 0.2;
            line-height: 0;
        }
        .quote-author {
            display: block;
            margin-top: 15px;
            font-weight: 600;
            color: var(--dark);
            font-style: normal;
        }
        .highlight {
            background-color: #e8f5e9;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
            color: var(--primary);
        }
        .stat-box {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin: 35px 0;
        }
        .stat-item {
            flex: 1;
            min-width: 150px;
            background-color: var(--light);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        .stat-value {
            font-size: 2.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        .stat-label {
            font-size: 0.95rem;
            color: var(--text);
        }
        .tabs {
            display: flex;
            border-bottom: 2px solid var(--gray);
            margin-bottom: 30px;
            overflow-x: auto;
            padding-bottom: 5px;
        }
        .tab {
            padding: 12px 25px;
            cursor: pointer;
            border-bottom: 3px solid transparent;
            transition: all 0.3s ease;
            white-space: nowrap;
            font-weight: 500;
        }
        .tab.active {
            border-bottom-color: var(--primary);
            color: var(--primary);
            font-weight: 600;
        }
        .tab:hover:not(.active) {
            border-bottom-color: var(--gray);
            color: var(--dark);
        }
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .tab-content.active {
            display: block;
        }
        .progress-container {
            width: 100%;
            height: 8px;
            background: transparent;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1001;
        }
        .progress-bar {
            height: 8px;
            background: var(--primary);
            width: 0%;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 40px;
            position: relative;
        }
        footer:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-column h3 {
            color: white;
            font-size: 1.4rem;
            margin: 0 0 25px;
            padding-left: 0;
            border-bottom: 2px solid rgba(255,255,255,0.1);
            padding-bottom: 12px;
        }
        .footer-column h3:before {
            display: none;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .game-categories, .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 15px;
        }
        .category-tag {
            background-color: rgba(255,255,255,0.1);
            padding: 8px 15px;
            border-radius: 25px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            color: white;
            text-decoration: none;
        }
        .category-tag:hover {
            background-color: var(--primary);
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: rgba(255,183,77,0.1);
            border-left: 5px solid var(--secondary);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 12px 12px 0;
        }
        .recommendation h3 {
            color: var(--secondary);
            margin-top: 0;
            padding-left: 0;
        }
        .recommendation h3:before {
            display: none;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
            color: rgba(255,255,255,0.5);
            line-height: 1.6;
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(255,255,255,0.1);
            color: white;
            transition: all 0.3s ease;
        }
        .social-links a:hover {
            background-color: var(--primary);
            transform: translateY(-3px);
        }
        .badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-right: 8px;
            margin-bottom: 8px;
        }
        .badge-primary {
            background-color: #e8f5e9;
            color: var(--primary);
        }
        .badge-secondary {
            background-color: #fff8e1;
            color: var(--secondary);
        }
        .badge-accent {
            background-color: #e3f2fd;
            color: var(--accent);
        }
        @media (max-width: 1199px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: white;
                padding: 30px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                border-radius: 0 0 16px 16px;
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin-bottom: 15px;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.4rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            .content-section {
                padding: 30px;
            }
            .sidebar-card {
                padding: 20px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 0.95rem;
            }
        }
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .btn-download {
                margin-right: 0;
            }
            .stat-box {
                gap: 15px;
            }
            .stat-item {
                min-width: 120px;
                padding: 15px;
            }
            .stat-value {
                font-size: 1.8rem;
            }
            .tabs {
                padding-bottom: 10px;
            }
            .tab {
                padding: 10px 15px;
                font-size: 0.9rem;
            }
            .copyright {
                font-size: 0.85rem;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: #c1c1c1;
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }
        .skip-link {
            position: absolute;
            top: -40px;
            left: 0;
            background: var(--primary);
            color: white;
            padding: 8px;
            z-index: 100;
        }
        .skip-link:focus {
            top: 0;
        }
