* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', sans-serif;
        }
        :root {
            --primary: #2E7D32;
            --secondary: #FF9800;
            --accent: #2196F3;
            --light: #f8f9fa;
            --dark: #212121;
            --gray: #757575;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --transition: all 0.3s ease;
        }
        body {
            background-color: #fff;
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--secondary);
        }
        .logo span {
            color: var(--accent);
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: var(--transition);
        }
        .desktop-nav a:hover {
            background: var(--primary);
            color: white;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--dark);
        }
        @media (max-width: 768px) {
            .mobile-toggle {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: white;
            padding: 1rem;
            border-top: 1px solid #eee;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 1rem;
            border-bottom: 1px solid #f0f0f0;
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background: var(--light);
        }
        .breadcrumb {
            background: var(--light);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .breadcrumb a {
            color: var(--primary);
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        main {
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            border-radius: 12px;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 1rem;
            color: var(--gray);
            margin-top: 1rem;
            flex-wrap: wrap;
        }
        .meta i {
            margin-right: 5px;
        }
        .content-section {
            margin-bottom: 3rem;
        }
        h2 {
            font-size: 2rem;
            color: var(--secondary);
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            font-size: 1.5rem;
            color: var(--primary);
            margin: 1.5rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #FFF9C4;
            padding: 1.5rem;
            border-left: 5px solid var(--secondary);
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
        }
        .image-wrapper {
            margin: 2rem auto;
            text-align: center;
            max-width: 800px;
        }
        .image-wrapper img {
            width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .image-wrapper img:hover {
            transform: scale(1.01);
        }
        .image-caption {
            font-style: italic;
            color: var(--gray);
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .tips-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .tip-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-top: 4px solid var(--accent);
        }
        .tip-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .tip-card h4 {
            color: var(--primary);
            margin-bottom: 0.8rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .interaction-section {
            background: var(--light);
            padding: 2rem;
            border-radius: 12px;
            margin: 3rem 0;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .interaction-card {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow);
        }
        .interaction-card h3 {
            margin-top: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(33,150,243,0.2);
        }
        button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        button:hover {
            background: #1B5E20;
            transform: translateY(-2px);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            font-size: 1.5rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star:hover,
        .star.active {
            color: #FFC107;
        }
        .web-links {
            background: #f1f8e9;
            padding: 2rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
        }
        .web-link {
            background: white;
            padding: 1rem;
            border-radius: 6px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--primary);
            color: white;
        }
        .web-link a {
            display: block;
            font-weight: 500;
        }
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: var(--secondary);
            margin-bottom: 1.2rem;
            font-size: 1.2rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        .footer-links a {
            color: #ccc;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .keyword {
            background: #E3F2FD;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
            font-weight: 600;
            color: var(--primary);
        }
        .player-quote {
            font-style: italic;
            border-left: 4px solid var(--secondary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: var(--gray);
        }
        .level-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            box-shadow: var(--shadow);
            border-radius: 8px;
            overflow: hidden;
        }
        .level-table th, .level-table td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .level-table th {
            background: var(--primary);
            color: white;
        }
        .level-table tr:hover {
            background: #f5f5f5;
        }
        @media (max-width: 768px) {
            .level-table {
                display: block;
                overflow-x: auto;
            }
        }
