* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', system-ui, sans-serif;
        }
        :root {
            --primary: #0a3d62;
            --secondary: #f9ca24;
            --accent: #eb4d4b;
            --dark: #1e272e;
            --light: #f5f6fa;
            --gray: #808e9b;
            --success: #05c46b;
            --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary), #1a5276);
            color: white;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--secondary);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .logo i {
            color: var(--accent);
        }
        .search-form {
            display: flex;
            flex: 0 1 400px;
        }
        .search-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
        }
        .search-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 0 25px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .search-form button:hover {
            background-color: #ff3838;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            background: none;
            border: none;
            color: white;
        }
        nav {
            background-color: rgba(0, 0, 0, 0.2);
            padding: 0;
        }
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: center;
        }
        .nav-list li {
            position: relative;
        }
        .nav-list a {
            display: block;
            padding: 18px 24px;
            font-weight: 600;
            transition: var(--transition);
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        .nav-list a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--secondary);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--secondary);
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 8px;
        }
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            background: linear-gradient(rgba(10, 61, 98, 0.05), transparent);
        }
        .hero h1 {
            font-size: 3.2rem;
            color: var(--primary);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.3rem;
            color: var(--gray);
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .update-badge {
            display: inline-block;
            background-color: var(--accent);
            color: white;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: bold;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        main {
            padding: 40px 0;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        article {
            background-color: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow);
            margin-bottom: 30px;
        }
        article h2 {
            color: var(--primary);
            font-size: 2.2rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid var(--secondary);
        }
        article h3 {
            color: var(--primary);
            font-size: 1.7rem;
            margin: 35px 0 20px;
        }
        article h4 {
            color: var(--dark);
            font-size: 1.3rem;
            margin: 25px 0 15px;
        }
        article p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(249, 202, 36, 0.15);
            border-left: 5px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .deck-tier {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        .tier-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-radius: 12px;
            padding: 25px;
            box-shadow: var(--shadow);
            border-top: 6px solid;
            transition: var(--transition);
        }
        .tier-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
        }
        .tier-s { border-color: #ff9f43; }
        .tier-a { border-color: #00cec9; }
        .tier-b { border-color: #0984e3; }
        .tier-c { border-color: #a29bfe; }
        .tier-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }
        .tier-header h4 {
            margin: 0;
            font-size: 1.4rem;
        }
        .win-rate {
            background-color: var(--dark);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.9rem;
        }
        .deck-list {
            list-style: none;
            margin-top: 15px;
        }
        .deck-list li {
            padding: 8px 0;
            border-bottom: 1px dashed #eee;
            display: flex;
            justify-content: space-between;
        }
        .feature-img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 12px;
            margin: 30px 0;
            box-shadow: var(--shadow);
            border: 5px solid white;
        }
        aside {
            position: sticky;
            top: 150px;
            height: fit-content;
        }
        .sidebar-widget {
            background-color: white;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--secondary);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2.5rem;
            color: var(--gray);
            margin: 20px 0;
            cursor: pointer;
        }
        .stars i {
            transition: var(--transition);
            margin: 0 3px;
        }
        .stars i:hover,
        .stars i.active {
            color: var(--secondary);
        }
        .comment-form textarea,
        .rating-form input,
        .rating-form select {
            width: 100%;
            padding: 15px;
            margin-bottom: 15px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            resize: vertical;
        }
        .comment-form button,
        .rating-form button {
            width: 100%;
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 10px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover,
        .rating-form button:hover {
            background-color: #1a5276;
        }
        .popular-decks ul {
            list-style: none;
        }
        .popular-decks li {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }
        .popular-decks li:last-child {
            border-bottom: none;
        }
        .popular-decks i {
            color: var(--secondary);
            margin-right: 15px;
            font-size: 1.2rem;
        }
        .footer-links {
            background-color: var(--dark);
            padding: 50px 0 30px;
            margin-top: 50px;
        }
        .web-link-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }
        .web-link {
            background-color: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            transition: var(--transition);
        }
        .web-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--secondary);
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
        }
        .web-link p {
            color: var(--gray);
            font-size: 0.95rem;
        }
        footer {
            background-color: #1a1a1a;
            color: #aaa;
            padding: 40px 0 20px;
            text-align: center;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid #333;
            flex-wrap: wrap;
        }
        .social-links {
            display: flex;
            gap: 20px;
            font-size: 1.5rem;
        }
        .social-links a {
            transition: var(--transition);
        }
        .social-links a:hover {
            color: var(--secondary);
            transform: scale(1.2);
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            aside {
                position: static;
            }
            .hero h1 {
                font-size: 2.8rem;
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                flex: 1 0 100%;
                margin-top: 15px;
            }
            .mobile-toggle {
                display: block;
            }
            nav {
                display: none;
                padding: 0;
            }
            .nav-list {
                flex-direction: column;
            }
            .nav-list a {
                padding: 15px 20px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            nav.active {
                display: block;
            }
            .hero h1 {
                font-size: 2.3rem;
            }
            article {
                padding: 30px 20px;
            }
            .deck-tier {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
            }
        }
        .text-center { text-align: center; }
        .mb-20 { margin-bottom: 20px; }
        .mb-30 { margin-bottom: 30px; }
        .emoji { font-size: 1.2em; }
        .bold { font-weight: 800; color: var(--primary); }
        .keyword { background-color: rgba(249, 202, 36, 0.3); padding: 2px 6px; border-radius: 4px; font-weight: 600; }
