:root {
            --primary-color: #1a5c38;
            --secondary-color: #ff9500;
            --accent-color: #d4af37;
            --text-color: #333333;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
            --white: #ffffff;
            --shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: var(--text-color);
            background-color: var(--light-bg);
            padding-bottom: 50px;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 15px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--accent-color);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--white);
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        .nav-links a:hover {
            color: var(--secondary-color);
        }
        .daman-link {
            color: var(--accent-color) !important;
            font-weight: 600 !important;
        }
        .btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: var(--secondary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 5px;
            font-weight: 600;
            transition: background-color 0.3s ease;
            border: none;
            cursor: pointer;
            text-align: center;
        }
        .btn:hover {
            background-color: #e68900;
            color: var(--white);
        }
        .btn-login {
            background-color: var(--accent-color);
            margin-left: 15px;
        }
        .btn-login:hover {
            background-color: #b8860b;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--white);
            cursor: pointer;
        }
        .hero {
            background: linear-gradient(rgba(26, 92, 56, 0.8), rgba(26, 92, 56, 0.9)), url('https://host.com/fortress-raider-pro-hero.jpg') center/cover no-repeat;
            color: var(--white);
            padding: 80px 0;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent-color);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            opacity: 0.9;
        }
        .btn-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .main-content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 30px;
            margin-bottom: 50px;
        }
        .content-section {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .sidebar-widget {
            background: var(--white);
            padding: 20px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary-color);
        }
        .game-meta {
            list-style: none;
        }
        .game-meta li {
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            padding-bottom: 8px;
            border-bottom: 1px dashed #eee;
        }
        .game-meta li:last-child {
            border-bottom: none;
        }
        .game-meta strong {
            color: var(--primary-color);
        }
        h1, h2, h3, h4, h5 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 700;
        }
        h2 {
            font-size: 2rem;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--secondary-color);
            margin-top: 40px;
        }
        h3 {
            font-size: 1.5rem;
            margin-top: 30px;
            color: var(--dark-bg);
        }
        h4 {
            font-size: 1.2rem;
            margin-top: 25px;
            color: var(--primary-color);
        }
        p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            text-align: justify;
            line-height: 1.9;
        }
        ul, ol {
            margin-bottom: 20px;
            padding-left: 25px;
        }
        li {
            margin-bottom: 10px;
            line-height: 1.8;
        }
        .game-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: var(--shadow);
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
        }
        th, td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        th {
            background-color: var(--primary-color);
            color: var(--white);
        }
        tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        .highlight {
            background-color: #fff8e1;
            border-left: 4px solid var(--secondary-color);
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 500;
        }
        .tip-box {
            background-color: #e8f5e9;
            border-left: 4px solid var(--accent-color);
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
            display: flex;
            align-items: flex-start;
        }
        .tip-box i {
            color: var(--accent-color);
            font-size: 1.5rem;
            margin-right: 10px;
            margin-top: 3px;
        }
        .tip-box p {
            margin-bottom: 0;
        }
        .tabs {
            display: flex;
            border-bottom: 1px solid #ddd;
            margin: 30px 0;
        }
        .tab-btn {
            padding: 12px 20px;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 600;
            color: var(--dark-bg);
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }
        .tab-btn.active {
            border-bottom: 3px solid var(--secondary-color);
            color: var(--primary-color);
        }
        .tab-btn:hover {
            color: var(--primary-color);
            background-color: #f1f1f1;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        footer {
            background-color: var(--dark-bg);
            color: var(--white);
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        .footer-column h3 {
            color: var(--accent-color);
            margin-bottom: 20px;
            font-size: 1.3rem;
            border-bottom: 2px solid var(--secondary-color);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--secondary-color);
            padding-left: 5px;
        }
        .game-categories, .game-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .game-categories a, .game-tags a {
            background-color: rgba(255,255,255,0.1);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.9rem;
        }
        .recommendation {
            background-color: rgba(255,149,0,0.1);
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
        }
        .recommendation h4 {
            color: var(--secondary-color);
            margin-bottom: 10px;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 1024px) {
            .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: 70px;
                left: 0;
                right: 0;
                background-color: var(--primary-color);
                padding: 20px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                margin: 10px 0;
            }
            .mobile-menu-btn {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            .btn {
                width: 80%;
                max-width: 300px;
            }
            .footer-content {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.5rem;
            }
            .hero {
                padding: 50px 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .content-section {
                padding: 20px;
            }
            h2 {
                font-size: 1.6rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: #14472e;
        }
        .text-center {
            text-align: center;
        }
        .text-primary {
            color: var(--primary-color);
        }
        .text-secondary {
            color: var(--secondary-color);
        }
        .text-accent {
            color: var(--accent-color);
        }
        .font-bold {
            font-weight: 700;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mb-20 {
            margin-bottom: 20px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .space-y-10 > * {
            margin-bottom: 10px;
        }
