:root {
            --primary: #1a5c38;
            --secondary: #ff9a00;
            --accent: #d40000;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --spacing: 1.5rem;
            --border-radius: 8px;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #f5f5f0;
            color: var(--dark);
            line-height: 1.8;
            padding-bottom: 4rem;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--spacing);
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--secondary);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1.05rem;
        }
        nav a:hover {
            color: var(--secondary);
        }
        .btn {
            padding: 0.8rem 1.5rem;
            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;
        }
        .btn-download {
            background-color: var(--accent);
            color: white;
            margin-right: 1rem;
        }
        .btn-download:hover {
            background-color: #b30000;
            transform: translateY(-2px);
        }
        .btn-login {
            background-color: var(--secondary);
            color: var(--dark);
        }
        .btn-login:hover {
            background-color: #e68a00;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(26, 92, 56, 0.8), rgba(26, 92, 56, 0.9)), url('https://host.com/images/morjim-hero.jpg') center/cover no-repeat;
            color: white;
            padding: 6rem 0;
            text-align: center;
            border-radius: 0 0 var(--border-radius) var(--border-radius);
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: var(--secondary);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            opacity: 0.9;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 2rem;
        }
        .content-section {
            background: white;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            margin-bottom: 2rem;
        }
        .content-section h2 {
            color: var(--primary);
            font-size: 2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid var(--secondary);
        }
        .content-section h3 {
            color: var(--accent);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        .content-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .content-section img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
            margin: 1.5rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .feature-list {
            list-style: none;
            margin: 1.5rem 0;
        }
        .feature-list li {
            padding: 0.8rem 0 0.8rem 2rem;
            position: relative;
            border-bottom: 1px solid #eee;
        }
        .feature-list li:before {
            content: "✅";
            position: absolute;
            left: 0;
            color: var(--primary);
        }
        .quote {
            font-style: italic;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-left: 4px solid var(--secondary);
            margin: 2rem 0;
            border-radius: 0 var(--border-radius) var(--border-radius) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background-color: #f0f8f0;
            padding: 1.5rem;
            border-radius: var(--border-radius);
            text-align: center;
            border: 1px solid #e0e9e0;
        }
        .stat-card h4 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }
        .stat-card .stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--accent);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: var(--border-radius);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .widget-links {
            list-style: none;
        }
        .widget-links li {
            margin-bottom: 0.8rem;
        }
        .widget-links a {
            color: var(--dark);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .widget-links a:before {
            content: "🔗";
        }
        .widget-links a:hover {
            color: var(--accent);
            padding-left: 0.5rem;
        }
        .daman-badge {
            background-color: var(--secondary);
            color: var(--dark);
            padding: 0.5rem 1rem;
            border-radius: var(--border-radius);
            font-weight: 600;
            display: inline-block;
            margin: 1rem 0;
        }
        .tabs {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #eee;
            padding-bottom: 0.5rem;
        }
        .tab {
            padding: 0.8rem 1.5rem;
            cursor: pointer;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            background-color: #f8f9fa;
            border: 1px solid #eee;
            border-bottom: none;
            transition: all 0.3s ease;
        }
        .tab.active {
            background-color: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .bottom-section {
            background: var(--dark);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 4rem;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
        }
        .bottom-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .bottom-column h3 {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .game-categories, .game-tags {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .game-categories li, .game-tags li {
            background-color: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .game-categories a, .game-tags a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .game-categories a:hover, .game-tags a:hover {
            color: var(--secondary);
        }
        .recommendation {
            background-color: rgba(255, 154, 0, 0.1);
            padding: 1.5rem;
            border-radius: var(--border-radius);
            border-left: 4px solid var(--secondary);
            margin-top: 1rem;
        }
        .recommendation h4 {
            color: var(--secondary);
            margin-bottom: 0.8rem;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .header-content {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                margin-top: 1rem;
            }
            nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            .hero {
                padding: 4rem 0;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .content-section {
                padding: 1.8rem;
            }
            .content-section h2 {
                font-size: 1.8rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .btn {
                width: 100%;
                margin-bottom: 1rem;
            }
            .hero-buttons {
                flex-direction: column;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
            .bottom-grid {
                gap: 2rem;
            }
        }
