* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', 'Noto Sans SC', sans-serif;
        }
        :root {
            --primary: #D4AF37; 
            --secondary: #8B0000; 
            --accent: #228B22; 
            --dark: #1A1A1A; 
            --light: #F9F5F0; 
            --gray: #696969; 
            --white: #FFFFFF;
            --shadow: 0 6px 12px rgba(0,0,0,0.15);
            --transition: all 0.3s ease-in-out;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.8;
            font-size: 16px;
            letter-spacing: 0.3px;
        }
        .container {
            max-width: 1250px;
            margin: 0 auto;
            padding: 0 25px;
        }
        header {
            background-color: var(--dark);
            color: var(--white);
            padding: 20px 0;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 9999;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo span {
            color: var(--secondary);
        }
        .logo emoji {
            font-size: 32px;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
            margin: 0 20px;
        }
        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding-bottom: 5px;
        }
        .nav-links a:hover {
            color: var(--primary);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--primary);
            transition: var(--transition);
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .btn-group {
            display: flex;
            gap: 20px;
        }
        .btn {
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
            border: none;
            cursor: pointer;
            font-size: 16px;
            letter-spacing: 0.5px;
        }
        .btn-download {
            background-color: var(--secondary);
            color: var(--white);
            box-shadow: 0 4px 8px rgba(139, 0, 0, 0.3);
        }
        .btn-download:hover {
            background-color: #6B0000;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(139, 0, 0, 0.4);
        }
        .btn-login {
            background-color: var(--primary);
            color: var(--dark);
            box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
        }
        .btn-login:hover {
            background-color: #B8860B;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(212, 175, 55, 0.4);
        }
        .hamburger {
            display: none;
            font-size: 32px;
            cursor: pointer;
            color: var(--primary);
        }
        .hero {
            background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('https://via.placeholder.com/1920x1080?text=Kebab+Realm+Warlord+Epic+Battle+Scene') center/cover no-repeat;
            color: var(--white);
            padding: 140px 0;
            text-align: center;
            margin-bottom: 70px;
            border-bottom: 5px solid var(--primary);
        }
        .hero h1 {
            font-size: 56px;
            margin-bottom: 30px;
            color: var(--primary);
            line-height: 1.3;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 22px;
            max-width: 900px;
            margin: 0 auto 40px;
            line-height: 1.9;
            color: var(--light);
        }
        .hero .btn-group {
            justify-content: center;
            flex-wrap: wrap;
        }
        .hero-tagline {
            font-size: 18px;
            color: var(--primary);
            margin-bottom: 20px;
            font-style: italic;
        }
        .content-wrapper {
            display: flex;
            gap: 40px;
            margin-bottom: 80px;
        }
        .sidebar {
            width: 320px;
            flex-shrink: 0;
        }
        .info-card {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 30px;
            margin-bottom: 35px;
            border-top: 4px solid var(--secondary);
        }
        .info-card h3 {
            font-size: 22px;
            color: var(--dark);
            margin-bottom: 25px;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .info-card h3 emoji {
            font-size: 26px;
        }
        .info-list {
            list-style: none;
        }
        .info-list li {
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            padding-bottom: 15px;
            border-bottom: 1px dashed var(--gray);
        }
        .info-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .info-list .label {
            font-weight: 600;
            color: var(--secondary);
            min-width: 120px;
        }
        .info-list .value {
            color: var(--dark);
            flex: 1;
        }
        .rating-card {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, #fdf2e9 0%, #fef7fb 100%);
        }
        .rating {
            font-size: 60px;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1;
        }
        .rating-stars {
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 15px;
        }
        .rating-text {
            font-size: 19px;
            color: var(--dark);
            font-weight: 500;
            margin-bottom: 10px;
        }
        .rating-source {
            font-size: 14px;
            color: var(--gray);
            font-style: italic;
        }
        .feature-card ul {
            list-style: none;
        }
        .feature-card li {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .feature-card li emoji {
            font-size: 20px;
            color: var(--accent);
            margin-top: 4px;
        }
        .feature-card li span {
            color: var(--dark);
        }
        .main-content {
            flex: 1;
        }
        .section {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 40px;
            border-left: 6px solid var(--secondary);
        }
        .section h2 {
            font-size: 36px;
            color: var(--dark);
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary);
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .section h2 emoji {
            font-size: 40px;
        }
        .section h3 {
            font-size: 28px;
            color: var(--secondary);
            margin: 40px 0 20px;
            padding-left: 15px;
            border-left: 4px solid var(--primary);
        }
        .section h4 {
            font-size: 22px;
            color: var(--accent);
            margin: 30px 0 15px;
        }
        .section p {
            margin-bottom: 25px;
            text-align: justify;
            font-size: 17px;
            color: var(--dark);
        }
        .section strong {
            color: var(--secondary);
            font-weight: 600;
        }
        .section em {
            color: var(--accent);
            font-style: italic;
        }
        .quote-box {
            background-color: var(--light);
            border-left: 4px solid var(--primary);
            padding: 25px;
            margin: 35px 0;
            border-radius: 0 8px 8px 0;
        }
        .quote-box p {
            font-size: 18px;
            color: var(--dark);
            font-style: italic;
            margin-bottom: 15px;
        }
        .quote-author {
            font-size: 16px;
            color: var(--gray);
            font-weight: 500;
            text-align: right;
        }
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .grid-item {
            background-color: var(--light);
            border-radius: 10px;
            padding: 25px;
            border-top: 3px solid var(--primary);
            transition: var(--transition);
        }
        .grid-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
        }
        .grid-item h4 {
            margin-bottom: 15px;
            color: var(--secondary);
        }
        .grid-item p {
            font-size: 16px;
            margin-bottom: 0;
        }
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .gallery-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-radius: 8px;
            border: 3px solid var(--primary);
            transition: var(--transition);
        }
        .gallery-img:hover {
            transform: scale(1.03);
            box-shadow: var(--shadow);
        }
        .timeline {
            position: relative;
            margin: 50px 0;
            padding-left: 30px;
        }
        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -36px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--secondary);
            border: 3px solid var(--primary);
        }
        .timeline-date {
            font-weight: 600;
            color: var(--secondary);
            font-size: 18px;
            margin-bottom: 10px;
        }
        .timeline-content {
            background-color: var(--light);
            padding: 20px;
            border-radius: 8px;
        }
        .categories-tags {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 35px;
            margin-bottom: 40px;
            border-top: 5px solid var(--accent);
        }
        .categories-tags h3 {
            font-size: 26px;
            color: var(--dark);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .categories-tags h3 emoji {
            font-size: 30px;
        }
        .tags {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
        }
        .tag {
            padding: 10px 20px;
            background-color: var(--light);
            color: var(--dark);
            border-radius: 30px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid var(--primary);
        }
        .tag:hover {
            background-color: var(--primary);
            color: var(--white);
            border-color: var(--primary);
        }
        .categories {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 25px 0;
        }
        .category {
            padding: 10px 20px;
            background-color: var(--light);
            color: var(--dark);
            border-radius: 30px;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: var(--transition);
            border: 1px solid var(--secondary);
        }
        .category:hover {
            background-color: var(--secondary);
            color: var(--white);
            border-color: var(--secondary);
        }
        .recommendation {
            background: linear-gradient(135deg, #faf0e6 0%, #fff8dc 100%);
            border-radius: 12px;
            box-shadow: var(--shadow);
            padding: 40px;
            margin-bottom: 40px;
            border-top: 5px solid var(--primary);
        }
        .recommendation h3 {
            font-size: 28px;
            color: var(--dark);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .recommendation h3 emoji {
            font-size: 34px;
        }
        .recommendation p {
            margin-bottom: 25px;
            line-height: 1.9;
            font-size: 17px;
        }
        .recommendation-list {
            list-style: none;
            margin: 30px 0;
        }
        .recommendation-list li {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            font-size: 17px;
        }
        .recommendation-list li emoji {
            font-size: 24px;
            color: var(--accent);
        }
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 80px 0 40px;
            border-top: 5px solid var(--primary);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 60px;
        }
        .footer-column {
            flex: 1;
            min-width: 250px;
        }
        .footer-logo {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-logo span {
            color: var(--secondary);
        }
        .footer-logo emoji {
            font-size: 36px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links h4 {
            font-size: 20px;
            color: var(--primary);
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .footer-links li {
            margin-bottom: 15px;
        }
        .footer-links a {
            color: var(--light);
            text-decoration: none;
            transition: var(--transition);
            font-size: 16px;
        }
        .footer-links a:hover {
            color: var(--primary);
            padding-left: 5px;
        }
        .footer-contact p {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
        }
        .footer-contact emoji {
            font-size: 20px;
            color: var(--primary);
        }
        .copyright {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 15px;
            color: var(--gray);
            line-height: 1.8;
        }
        .copyright a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }
        .copyright a:hover {
            color: var(--white);
            text-decoration: underline;
        }
        @media (max-width: 1200px) {
            .content-wrapper {
                flex-direction: column;
            }
            .sidebar {
                width: 100%;
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 30px;
            }
            .info-card {
                margin-bottom: 0;
            }
        }
        @media (max-width: 992px) {
            .nav-links {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 20px;
                margin: 20px 0 0;
                padding: 20px 0;
                border-top: 1px solid rgba(255,255,255,0.1);
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 48px;
            }
            .hero p {
                font-size: 20px;
            }
            .section h2 {
                font-size: 32px;
            }
            .section h3 {
                font-size: 26px;
            }
        }
        @media (max-width: 768px) {
            .header-content {
                justify-content: space-between;
            }
            .btn-group {
                margin-top: 20px;
                width: 100%;
                justify-content: center;
            }
            .hero {
                padding: 100px 0;
            }
            .hero h1 {
                font-size: 40px;
            }
            .section {
                padding: 30px;
            }
            .grid-container {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 40px;
            }
            .footer-contact p {
                justify-content: center;
            }
        }
        @media (max-width: 576px) {
            .logo {
                font-size: 24px;
            }
            .btn {
                padding: 10px 20px;
                font-size: 15px;
            }
            .hero h1 {
                font-size: 34px;
            }
            .hero p {
                font-size: 18px;
            }
            .section h2 {
                font-size: 28px;
            }
            .section h3 {
                font-size: 24px;
            }
            .image-gallery {
                grid-template-columns: 1fr;
            }
            .gallery-img {
                height: 180px;
            }
        }
        html {
            scroll-behavior: smooth;
        }
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--light);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--secondary);
        }
