* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'Noto Sans Devanagari', 'Nirmala UI', sans-serif;
        }
        :root {
            --primary: #1a365d;
            --secondary: #d4af37;
            --accent: #b91c1c;
            --light: #f8f9fa;
            --dark: #0f172a;
            --gray: #64748b;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            color: #e2e8f0;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: var(--secondary);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #fbbf24;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(to right, var(--accent), #991b1b);
            color: white;
            padding: 12px 28px;
            border-radius: 6px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(185, 28, 28, 0.3);
            text-decoration: none;
        }
        header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--secondary);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2rem;
            font-weight: 900;
            background: linear-gradient(45deg, #d4af37, #fbbf24);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav {
            display: flex;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--secondary);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(30, 41, 59, 0.7);
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        main {
            flex: 1;
            padding: 40px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 30px;
            background: linear-gradient(rgba(26, 54, 93, 0.8), rgba(15, 23, 42, 0.9)), url('https://www.playwarshipsworld.com/images/yamato-header-bg.jpg') center/cover;
            border-radius: 12px;
            border: 2px solid var(--secondary);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: #fbbf24;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
            color: #94a3b8;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 41, 59, 0.7);
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        h2 {
            font-size: 2.5rem;
            color: #60a5fa;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--accent);
        }
        h3 {
            font-size: 1.8rem;
            color: #fbbf24;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(212, 175, 55, 0.15);
            border-left: 4px solid var(--secondary);
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background: rgba(15, 23, 42, 0.8);
            border-radius: 8px;
            overflow: hidden;
        }
        .stats-table th, .stats-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #334155;
        }
        .stats-table th {
            background: var(--primary);
            color: var(--secondary);
            font-weight: 700;
        }
        .stats-table tr:hover {
            background: rgba(212, 175, 55, 0.1);
        }
        .image-wrapper {
            margin: 30px 0;
            text-align: center;
        }
        .article-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--secondary);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            transition: transform 0.5s;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .caption {
            margin-top: 10px;
            font-style: italic;
            color: #94a3b8;
        }
        aside {
            background: rgba(30, 41, 59, 0.7);
            padding: 25px;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 40px;
        }
        .widget-title {
            font-size: 1.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--accent);
        }
        .search-box {
            display: flex;
            margin-bottom: 30px;
        }
        .search-box input {
            flex: 1;
            padding: 14px;
            border: 2px solid var(--primary);
            border-radius: 6px 0 0 6px;
            background: #1e293b;
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            background: var(--accent);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            font-size: 1.2rem;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #fbbf24;
            margin: 15px 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            padding: 15px;
            background: #1e293b;
            border: 2px solid var(--primary);
            border-radius: 6px;
            color: white;
            font-size: 1rem;
            min-height: 150px;
            resize: vertical;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #cbd5e1;
        }
        .form-group input {
            width: 100%;
            padding: 12px;
            background: #1e293b;
            border: 2px solid var(--primary);
            border-radius: 6px;
            color: white;
        }
        .long-tail-links {
            background: rgba(15, 23, 42, 0.9);
            padding: 40px 0;
            margin-top: 60px;
            border-top: 2px solid var(--secondary);
            border-bottom: 2px solid var(--secondary);
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: rgba(30, 41, 59, 0.7);
            padding: 15px;
            border-radius: 8px;
            transition: var(--transition);
            border-left: 4px solid transparent;
        }
        .web-link:hover {
            border-left-color: var(--secondary);
            transform: translateX(5px);
            background: rgba(30, 41, 59, 0.9);
        }
        footer {
            background: #0f172a;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 1px solid #334155;
        }
        .copyright {
            color: #94a3b8;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #334155;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            nav {
                display: none;
                width: 100%;
                flex-direction: column;
                gap: 15px;
                margin-top: 20px;
                padding: 20px;
                background: rgba(15, 23, 42, 0.98);
                border-radius: 8px;
                border: 1px solid var(--secondary);
            }
            nav.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.4rem;
            }
            article, aside {
                padding: 25px;
            }
            .article-header {
                padding: 20px;
            }
            .content-grid {
                gap: 30px;
            }
        }
        @media print {
            body {
                background: white;
                color: black;
            }
            .hamburger, .search-box, .rating-widget, .comment-form, .long-tail-links {
                display: none;
            }
        }
