:root {
            --primary: #1a242f;
            --secondary: #e63946;
            --accent: #ffb703;
            --light: #f8f9fa;
            --dark: #1a242f;
            --shadow: 0 3px 6px rgba(0,0,0,0.15);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
        }
        body {
            background-color: #f5f5f5;
            color: var(--dark);
            padding-bottom: 60px;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--primary);
            color: white;
            padding: 25px 0;
            box-shadow: var(--shadow);
        }
        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 0.5px;
        }
        .logo span {
            color: var(--light);
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }
        .nav-links a:hover {
            color: var(--accent);
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s ease;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--light);
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)), url('https://via.placeholder.com/1200x450?text=Kochi+Battle+Gladiator') center/cover;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
            border-radius: 8px;
            margin-top: 20px;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 25px;
            color: var(--accent);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        .hero p {
            max-width: 850px;
            margin: 0 auto 30px;
            font-size: 1.2rem;
            line-height: 1.8;
        }
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 6px;
            margin: 10px 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }
        .btn:hover {
            background-color: #d62828;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0,0,0,0.15);
        }
        .btn-download {
            background-color: var(--accent);
            color: var(--dark);
        }
        .btn-download:hover {
            background-color: #e9c46a;
        }
        main {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 35px;
        }
        .content {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .sidebar {
            background-color: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            height: fit-content;
        }
        h1, h2, h3 {
            margin-bottom: 25px;
            color: var(--primary);
            font-weight: 600;
        }
        h1 {
            font-size: 2.2rem;
            border-bottom: 3px solid var(--accent);
            padding-bottom: 15px;
            margin-top: 10px;
        }
        h2 {
            font-size: 1.8rem;
            margin-top: 40px;
            color: var(--secondary);
            position: relative;
            padding-left: 15px;
        }
        h2::before {
            content: '▶';
            color: var(--accent);
            position: absolute;
            left: 0;
        }
        h3 {
            font-size: 1.4rem;
            margin-top: 30px;
            color: var(--primary);
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.05rem;
        }
        ul, ol {
            margin-left: 35px;
            margin-bottom: 25px;
        }
        ul li, ol li {
            margin-bottom: 10px;
        }
        .info-box {
            background-color: #f8f9fa;
            padding: 25px;
            border-left: 5px solid var(--accent);
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }
        .info-box h3 {
            margin-top: 0;
            color: var(--primary);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .caption {
            font-size: 0.95rem;
            color: #555;
            margin-top: 15px;
            font-style: italic;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        tr:hover {
            background-color: #f9f9f9;
        }
        .game-types a, .tags a {
            display: inline-block;
            background-color: var(--primary);
            color: white;
            padding: 8px 15px;
            border-radius: 25px;
            text-decoration: none;
            margin: 8px 5px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }
        .game-types a:hover, .tags a:hover {
            background-color: var(--accent);
            color: var(--dark);
            transform: translateY(-2px);
        }
        .recommendation {
            background-color: #e7f5ff;
            padding: 25px;
            border-radius: 10px;
            margin: 35px 0;
            border: 1px solid #b2ebf2;
            box-shadow: 0 3px 8px rgba(0,0,0,0.08);
        }
        footer {
            background-color: var(--primary);
            color: white;
            text-align: center;
            padding: 30px 0;
            margin-top: 60px;
            border-top: 5px solid var(--accent);
        }
        .external-link {
            color: var(--accent);
            font-weight: bold;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        .external-link:hover {
            text-decoration: underline;
            color: #e9c46a;
        }
        .highlight {
            background-color: rgba(255, 183, 3, 0.1);
            padding: 2px 5px;
            border-radius: 3px;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 90px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                padding: 25px;
                box-shadow: var(--shadow);
                z-index: 100;
            }
            .nav-links li {
                margin: 15px 0;
                padding-bottom: 5px;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .hamburger {
                display: block;
            }
            .nav-active {
                display: flex;
            }
            main {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero {
                padding: 70px 0;
            }
            .content {
                padding: 25px;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }
