* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #d4af37; 
            --secondary: #1a237e; 
            --accent: #b71c1c; 
            --light: #f5f5f5;
            --dark: #212121;
            --text: #333333;
            --border: #e0e0e0;
        }
        body {
            background-color: var(--light);
            color: var(--text);
            line-height: 1.8;
            padding-bottom: 50px;
        }
        header {
            background: linear-gradient(135deg, var(--secondary), var(--dark));
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.2);
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: white;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            font-size: 1rem;
        }
        nav a:hover {
            color: var(--primary);
        }
        .nav-buttons {
            display: flex;
            gap: 15px;
        }
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }
        .btn-download {
            background-color: var(--primary);
            color: var(--dark);
        }
        .btn-download:hover {
            background-color: #b8860b;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
        }
        .btn-login {
            background-color: transparent;
            color: white;
            border: 2px solid var(--primary);
        }
        .btn-login:hover {
            background-color: rgba(212, 175, 55, 0.1);
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .hero {
            background: url('https://via.placeholder.com/1920x600?text=Valiant+Vishwa+Epic+Showdown+Hero+Image') center/cover no-repeat;
            padding: 80px 0;
            text-align: center;
            color: white;
            position: relative;
        }
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
        }
        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            line-height: 1.8;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .main-content {
            padding: 60px 0;
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
        }
        .content-section {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        }
        h2 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 2rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 10px;
        }
        h3 {
            color: var(--accent);
            margin: 20px 0 15px;
            font-size: 1.5rem;
        }
        h4 {
            color: var(--secondary);
            margin: 15px 0 10px;
            font-size: 1.2rem;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(212, 175, 55, 0.1);
            border-left: 4px solid var(--primary);
            padding: 15px;
            margin: 25px 0;
            border-radius: 0 5px 5px 0;
        }
        .highlight strong {
            color: var(--secondary);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #666;
            font-size: 0.9rem;
        }
        .feature-list {
            list-style: none;
            margin: 20px 0 30px;
        }
        .feature-list li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }
        .feature-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        .table-container {
            overflow-x: auto;
            margin: 30px 0;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid var(--border);
        }
        th {
            background-color: var(--secondary);
            color: white;
        }
        tr:hover {
            background-color: rgba(0,0,0,0.02);
        }
        .quote {
            font-style: italic;
            color: #555;
            padding: 20px;
            border-left: 4px solid var(--accent);
            margin: 30px 0;
            background-color: rgba(183, 28, 28, 0.05);
        }
        .quote-author {
            display: block;
            text-align: right;
            margin-top: 10px;
            font-weight: bold;
            color: var(--accent);
        }
        .sidebar-widget h3 {
            border-bottom: 2px solid var(--primary);
            padding-bottom: 10px;
            margin-bottom: 15px;
        }
        .game-meta {
            list-style: none;
        }
        .game-meta li {
            margin-bottom: 10px;
            display: flex;
            justify-content: space-between;
            padding-bottom: 10px;
            border-bottom: 1px dashed var(--border);
        }
        .game-meta li:last-child {
            border-bottom: none;
        }
        .game-meta strong {
            color: var(--secondary);
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }
        .tag {
            padding: 8px 15px;
            background-color: rgba(26, 35, 126, 0.1);
            color: var(--secondary);
            border-radius: 20px;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }
        .tag:hover {
            background-color: var(--secondary);
            color: white;
        }
        .download-widget {
            background: linear-gradient(135deg, var(--primary), #b8860b);
            color: white;
            text-align: center;
            padding: 30px 20px;
        }
        .download-widget h3 {
            color: white;
            border-bottom: 2px solid rgba(255,255,255,0.3);
        }
        .download-widget p {
            color: rgba(255,255,255,0.9);
            margin-bottom: 20px;
            text-align: center;
        }
        .btn-sidebar {
            background-color: white;
            color: var(--secondary);
            width: 100%;
        }
        .btn-sidebar:hover {
            background-color: var(--light);
        }
        .categories {
            margin: 40px 0;
        }
        .category-list {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        .category {
            padding: 10px 20px;
            background-color: rgba(183, 28, 28, 0.1);
            color: var(--accent);
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .category:hover {
            background-color: var(--accent);
            color: white;
        }
        .recommendations {
            background-color: rgba(26, 35, 126, 0.05);
            padding: 40px 0;
            margin: 60px 0;
            border-radius: 10px;
        }
        .recommendations h2 {
            text-align: center;
            margin-bottom: 40px;
        }
        .game-cards {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }
        .game-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
        }
        .game-card:hover {
            transform: translateY(-10px);
        }
        .game-card-img {
            height: 150px;
            overflow: hidden;
        }
        .game-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .game-card:hover .game-card-img img {
            transform: scale(1.1);
        }
        .game-card-content {
            padding: 20px;
        }
        .game-card h3 {
            margin-top: 0;
            font-size: 1.3rem;
        }
        .game-card p {
            font-size: 0.95rem;
            color: #666;
            margin-bottom: 15px;
        }
        .btn-card {
            display: block;
            width: 100%;
            background-color: var(--secondary);
            color: white;
            text-align: center;
            padding: 10px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.3s ease;
        }
        .btn-card:hover {
            background-color: #0d1b66;
        }
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h3 {
            color: var(--primary);
            margin-bottom: 20px;
            font-size: 1.4rem;
            border-bottom: 2px solid rgba(212, 175, 55, 0.3);
            padding-bottom: 10px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.5);
        }
        .footer-bottom p {
            text-align: center;
            margin-bottom: 10px;
        }
        .copyright {
            font-size: 0.9rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        @media (max-width: 768px) {
            nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: var(--secondary);
                padding: 20px;
                gap: 15px;
                box-shadow: 0 5px 10px rgba(0,0,0,0.2);
            }
            nav ul.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .nav-buttons {
                display: none;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero p {
                font-size: 1rem;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .logo {
                font-size: 1.5rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            h3 {
                font-size: 1.3rem;
            }
        }
        @media (max-width: 480px) {
            .hero {
                padding: 60px 0;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }
            .btn {
                width: 100%;
            }
            .content-section {
                padding: 20px;
            }
            .footer-content {
                gap: 20px;
            }
        }
