        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #FF6B35;
            --secondary: #004E89;
            --accent: #00A896;
            --dark: #1A1A2E;
            --light: #F8F9FA;
            --gray: #6C757D;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
            --border-radius: 12px;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            min-height: 100vh;
        }
        h1, h2, h3, h4 {
            color: var(--dark);
            margin-bottom: 1rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            color: var(--primary);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            background: linear-gradient(45deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
            margin-top: 2.5rem;
            color: var(--secondary);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            color: #444;
            text-align: justify;
        }
        .header {
            background: linear-gradient(135deg, var(--dark) 0%, #16213E 100%);
            color: white;
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        .logo:hover {
            transform: scale(1.05);
            color: var(--primary);
        }
        .logo span {
            color: var(--primary);
            background: white;
            padding: 2px 8px;
            border-radius: 6px;
            margin-left: 5px;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .nav-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 25px;
            transition: var(--transition);
            position: relative;
        }
        .nav-link:hover {
            background: var(--primary);
            transform: translateY(-2px);
        }
        .nav-link i {
            margin-right: 8px;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            gap: 1rem;
            background: var(--dark);
            padding: 2rem;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            box-shadow: var(--shadow);
            transform: translateY(-10px);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
            margin-left: 1rem;
        }
        .search-input {
            padding: 0.8rem 1.2rem;
            border: 2px solid var(--primary);
            border-radius: 25px;
            font-size: 1rem;
            min-width: 250px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
        }
        .search-input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }
        .search-button {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .search-button:hover {
            background: var(--accent);
            transform: rotate(15deg);
        }
        .breadcrumb {
            background: linear-gradient(90deg, var(--light), #e9ecef);
            padding: 1rem 2rem;
            border-bottom: 1px solid #dee2e6;
        }
        .breadcrumb-list {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            font-size: 0.95rem;
        }
        .breadcrumb-item a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        .breadcrumb-item a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        .breadcrumb-item::after {
            content: "›";
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .breadcrumb-item:last-child::after {
            content: "";
        }
        .main-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        .article-content {
            background: white;
            padding: 3rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .featured-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: var(--border-radius);
            margin: 2rem 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
        }
        .featured-image:hover {
            transform: scale(1.01);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }
        .game-info-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .info-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            transition: var(--transition);
            cursor: pointer;
        }
        .info-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        }
        .info-card h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }
        .tips-container {
            background: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
            padding: 2.5rem;
            border-radius: var(--border-radius);
            margin: 3rem 0;
            border-left: 5px solid var(--accent);
        }
        .tip-item {
            background: white;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 10px;
            box-shadow: var(--shadow);
            display: flex;
            gap: 1rem;
            align-items: flex-start;
            transition: var(--transition);
        }
        .tip-item:hover {
            transform: translateX(10px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }
        .tip-icon {
            background: var(--accent);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 2rem;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
        }
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .star-rating {
            display: flex;
            gap: 0.5rem;
            justify-content: center;
            direction: rtl;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: #FFD700;
        }
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        .form-input,
        .form-textarea {
            padding: 1rem;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: inherit;
        }
        .form-input:focus,
        .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: linear-gradient(45deg, var(--primary), #FF8C42);
            color: white;
            border: none;
            padding: 1.2rem 2rem;
            border-radius: 25px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .submit-button:hover {
            background: linear-gradient(45deg, var(--secondary), #0066CC);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 78, 137, 0.2);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            padding: 1.2rem;
            border-radius: 10px;
            text-align: center;
            transition: var(--transition);
        }
        .web-link a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        .web-link:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 25px rgba(245, 87, 108, 0.3);
        }
        .footer {
            background: linear-gradient(135deg, var(--dark) 0%, #0F3460 100%);
            color: white;
            padding: 4rem 2rem 2rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: none;
            padding-left: 0;
        }
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-links a:hover {
            color: var(--primary);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 3rem;
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #aaa;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.3em;
            margin: 0 5px;
            vertical-align: middle;
        }
        .highlight {
            background: linear-gradient(120deg, #FFD166 0%, #FFD166 100%);
            background-repeat: no-repeat;
            background-size: 100% 40%;
            background-position: 0 90%;
            padding: 0 3px;
            font-weight: 700;
        }
        .stat-badge {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
            margin: 0 5px;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 1.9rem;
            }
            .featured-image {
                height: 400px;
            }
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .nav-mobile {
                display: flex;
            }
            .search-form {
                order: 3;
                width: 100%;
                margin: 1rem 0 0;
            }
            .search-input {
                min-width: 100%;
            }
            .article-content {
                padding: 2rem 1.5rem;
            }
            .game-info-grid {
                grid-template-columns: 1fr;
            }
            .featured-image {
                height: 300px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.6rem;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
        }
        @media (max-width: 480px) {
            .main-container {
                padding: 1rem;
            }
            .article-content {
                padding: 1.5rem 1rem;
            }
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.4rem;
            }
            .featured-image {
                height: 250px;
            }
            .tip-item {
                flex-direction: column;
                text-align: center;
            }
        }
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .fade-in {
            animation: fadeIn 0.6s ease forwards;
        }
        @media print {
            .header, .sidebar, .footer, .search-form,
            .rating-form, .comment-form, .hamburger {
                display: none !important;
            }
            body {
                background: white;
                color: black;
            }
            .article-content {
                box-shadow: none;
                padding: 0;
            }
            a {
                color: black;
                text-decoration: underline;
            }
        }
