  /* --- CSS Variables --- */
        :root {
            --primary: #008f39; /* NGO Green (Consistent) */
            --primary-dark: #006b2b;
            --accent: #c0392b; /* Kabaddi Red */
            --accent-hover: #a93226;
            --dark: #1a1a1a;
            --light: #f9f9f9;
            --white: #ffffff;
            --text-gray: #555;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: var(--white);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }

        img {
            max-width: 100%;
            display: block;
            object-fit: cover;
        }

        /* --- Nav --- */
        nav {
            background: var(--white);
            padding: 15px 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            text-transform: uppercase;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            margin-left: 20px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover, .nav-links a.active { color: var(--accent); }

        /* --- Hero Section --- */
        .kabaddi-hero {
            position: relative;
            height: 70vh;
            background-image: url('https://picsum.photos/seed/kabaddi_tackle/1920/1080');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(192, 57, 43, 0.8));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            padding: 20px;
        }

        .hero-tag {
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 4px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 15px;
            display: inline-block;
            border: 1px solid rgba(255,255,255,0.3);
        }

        .hero-title {
            font-size: 3.5rem;
            margin-bottom: 10px;
            line-height: 1.1;
            text-transform: uppercase;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
        }

        /* --- Section Styles --- */
        section {
            padding: 80px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--dark);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-header h2::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--accent);
            margin: 10px auto 0;
        }

        /* --- Mission --- */
        .mission-box {
            background: #fdedec; /* Light Red bg */
            padding: 40px;
            border-radius: 12px;
            border-left: 5px solid var(--accent);
            text-align: center;
        }
        .mission-box p { font-size: 1.1rem; color: #444; max-width: 800px; margin: 0 auto; }
        .mission-box strong { color: var(--accent); }

        /* --- Format & Rules --- */
        .rules-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .rule-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #eee;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .rule-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.08);
            border-bottom: 4px solid var(--accent);
        }

        .rule-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .rule-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .rule-desc { color: var(--text-gray); font-size: 0.95rem; }

        /* --- Teams Section --- */
        .teams-banner {
            background: var(--dark);
            color: white;
            padding: 60px 20px;
            text-align: center;
            border-radius: 15px;
            margin: 40px 0;
        }
        
        .team-names-display {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .team-badge {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            padding: 15px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
        }

        /* --- Venue --- */
        .venue-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .venue-info ul {
            list-style: none;
            margin-top: 20px;
        }

        .venue-info li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
            font-size: 1.1rem;
        }

        .venue-info li::before {
            content: '🥋'; /* Judo/Gi emoji represents martial art/combat gear */
            position: absolute;
            left: 0;
            font-size: 1.2rem;
        }

        /* --- Registration CTA --- */
        .registration-section {
            background: linear-gradient(135deg, var(--accent), #922b21);
            color: white;
            border-radius: 20px;
            text-align: center;
            padding: 60px 20px;
        }

        .registration-section h2 { color: white; }
        .registration-section p { max-width: 600px; margin: 20px auto; font-size: 1.1rem; }
        
        .reg-btn {
            background: white;
            color: var(--accent);
            border: none;
            padding: 15px 40px;
            font-size: 1.2rem;
            font-weight: 800;
            border-radius: 50px;
            cursor: pointer;
            margin-top: 20px;
            transition: transform 0.2s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        .reg-btn:hover { transform: scale(1.05); }

        /* --- Footer --- */
        footer {
            background: #111;
            color: #888;
            text-align: center;
            padding: 40px 20px;
            margin-top: 60px;
        }

        footer a { color: #fff; text-decoration: none; }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title { font-size: 2.2rem; }
            .venue-container { grid-template-columns: 1fr; }
            .nav-links { display: none; }
        }