* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
            background: #0f172a;
            min-height: 100vh;
            color: #ffffff;
            overflow-x: hidden;
            position: relative;
        }

        /* Background Effects */
        .background-effects {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
        }

        .background-effects::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
            animation: backgroundFloat 12s ease-in-out infinite;
        }

        .background-effects::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(2px 2px at 20px 30px, rgba(59, 130, 246, 0.3), transparent),
                radial-gradient(1px 1px at 40px 70px, rgba(147, 51, 234, 0.2), transparent);
            background-repeat: repeat;
            background-size: 150px 100px;
            animation: floatingParticles 20s linear infinite;
        }

        @keyframes backgroundFloat {
            0%, 100% { transform: translateY(0px); opacity: 1; }
            50% { transform: translateY(-20px); opacity: 0.8; }
        }

        @keyframes floatingParticles {
            0% { transform: translateY(0px) translateX(0px); }
            100% { transform: translateY(-100vh) translateX(50px); }
        }

        /* Navigation Bar */
        .nav-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 23, 42, 0.9);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(59, 130, 246, 0.2);
            padding: 1rem 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .nav-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nav-logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: #ffffff;
            font-weight: 700;
            font-size: 1.2rem;
        }

        .nav-logo-icon {
            width: 2.5rem;
            height: 2.5rem;
            background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0.8rem;
            font-size: 1.2rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-link {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 0.625rem;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }

        .nav-link:hover {
            color: #ffffff;
            background: rgba(59, 130, 246, 0.2);
            border-color: rgba(59, 130, 246, 0.3);
            transform: translateY(-0.125rem);
        }

        /* Page Layout */
        .page-layout {
            max-width: 1500px;
            margin: 0 auto;
            padding: 2rem;
            min-height: 100vh;
            padding-top: 6rem;
        }

        .main-content {
            min-width: 0;
        }

        /* Back Button */
        .back-button {
            display: inline-flex;
            align-items: center;
            padding: 0.8rem 1.5rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 15px;
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .back-button:hover {
            background: rgba(59, 130, 246, 0.2);
            border-color: rgba(59, 130, 246, 0.5);
            transform: translateY(-2px);
            color: #ffffff;
            text-decoration: none;
        }

        /* Article Header */
        .article-header {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 2rem;
            padding: 4rem;
            margin-bottom: 3rem;
            text-align: center;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .article-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg,
                transparent,
                rgba(59, 130, 246, 0.8),
                rgba(147, 51, 234, 0.6),
                rgba(59, 130, 246, 0.8),
                transparent
            );
            animation: borderGlow 3s ease-in-out infinite;
        }

        @keyframes borderGlow {
            0%, 100% { opacity: 0.5; transform: scaleX(0.8); }
            50% { opacity: 1; transform: scaleX(1); }
        }

        .article-category {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: linear-gradient(135deg, #3b82f6 0%, #9333ea 100%);
            border-radius: 15px;
            font-size: 0.9rem;
            color: #ffffff;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
        }

        .article-title {
            color: #ffffff;
            font-weight: 800;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1.2;
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            margin-bottom: 2rem;
        }

        .article-excerpt {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.3rem;
            line-height: 1.7;
            max-width: 800px;
            margin: 0 auto;
        }

        /* Article Content */
        .article-content {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 2rem;
            padding: 4rem;
            margin-bottom: 3rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        /* Content Section - Side by Side Layout */
        .content-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            align-items: stretch;
        }

        .content-section:last-child {
            margin-bottom: 0;
        }

        .content-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .content-text h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .content-text h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 1.5rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
        }

        .content-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .content-text p:last-child {
            margin-bottom: 0;
        }

        .content-image {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .content-image:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .content-image img {
            width: 100%;
            height: auto;
            max-height: 500px;
            object-fit: contain;
            border-radius: 20px;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 10px;
            transition: transform 0.3s ease;
        }

        .content-image:hover img {
            transform: scale(1.05);
        }

        /* Alternate layout for even sections */
        .content-section.reverse {
            grid-template-columns: 1fr 1fr;
        }

        .content-section.reverse .content-text {
            order: 2;
        }

        .content-section.reverse .content-image {
            order: 1;
        }

        .article-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .article-images img {
            width: 100%;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            transition: transform 0.3s ease;
        }

        .article-images img:hover {
            transform: scale(1.03);
        }

        .content-block {
         margin-bottom: 3rem;
        }

        .content-text {
            margin-bottom: 1rem;
        }

        .content-image {
            position: relative;
        }

        .content-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 12px;
            display: block;
            box-shadow: 0 10px 30px rgba(0,0,0,0.4);
            transition: transform 0.3s ease-in-out;
        }

        .content-image img:hover {
            transform: scale(1.05);
        }

        .image-rating {
            position: absolute;
            bottom: 10px;
            right: 20px;
            background: rgba(0,0,0,0.7);
            color: #fff;
            padding: 6px 12px;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1rem;
        }

        .ratings-bar {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 8px;
            flex-wrap: wrap; /* ✅ allow wrapping */
        }

        .rating-item {
            padding: 5px 10px;
            border-radius: 6px;
            font-weight: bold;
            color: white;
            font-size: 0.95rem; /* base size */
        }

        .rating-item.imdb {
            background-color: #f5c518; /* IMDB yellow */
            color: black;
        }

        .rating-item.rottentomatoes {
            background-color: #fa320a; /* Rotten Tomatoes red */
        }

        .rating-item.myanimelist {
            background-color: #2e51a2; /* MyAnimeList blue */
        }

        .rating-item.metacritic {
            color: black;
            background-color: #FFA500;
        }

        .site-footer {
          background-color: #0f172a;
          color: #e2e8f0;
          padding: 30px 20px 10px;
          font-size: 14px;
          z-index: 10;
        }

        .footer-container {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          max-width: 1200px;
          margin: auto;
          gap: 20px;
          z-index: 10;
        }

        .footer-section {
          flex: 1 1 200px;
          z-index: 10;
        }

        .footer-section h3 {
          font-size: 16px;
          margin-bottom: 10px;
          border-bottom: 2px solid #334155;
          padding-bottom: 5px;
        }

        .footer-section ul {
          list-style: none;
          padding: 0;
          margin: 0;
        }

        .footer-section ul li {
          margin-bottom: 8px;
        }

        .footer-section ul li a {
          color: #94a3b8;
          text-decoration: none;
          transition: color 0.2s ease;
        }

        .footer-section ul li a:hover {
          color: #38bdf8;
        }

        .footer-bottom {
          text-align: center;
          padding: 10px;
          margin-top: 20px;
          border-top: 1px solid #334155;
          font-size: 13px;
        }

        /* Related Posts */
        .related-posts {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 2rem;
            padding: 4rem;
            margin-bottom: 3rem;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
        }

        .related-posts h2 {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            margin-bottom: 3rem;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .related-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(15px);
            border: 1px solid rgba(59, 130, 246, 0.25);
            border-radius: 25px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            text-decoration: none;
            color: inherit;
        }

        .related-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            color: inherit;
        }

        .related-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .related-card:hover .related-image {
            transform: scale(1.1);
        }

        .related-info {
            padding: 1.5rem;
        }

        .related-category {
            display: inline-block;
            padding: 0.3rem 0.8rem;
            background: rgba(59, 130, 246, 0.2);
            border: 2px solid rgba(59, 130, 246, 0.4);
            border-radius: 12px;
            font-size: 0.8rem;
            color: #3b82f6;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .related-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 0.5rem;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
            line-height: 1.3;
        }

        .related-excerpt {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* Paragraph Links */
        .paragraph-links {
            margin-top: 0.75rem;
        }

        .paragraph-link {
            display: inline-block;
            margin-right: 1rem;
            color: #3b82f6;
            text-decoration: underline;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .paragraph-link:hover {
            color: #60a5fa;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .content-section {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .content-section.reverse .content-text {
                order: 1;
            }

            .content-section.reverse .content-image {
                order: 2;
            }

            .related-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .nav-content {
                padding: 0 1rem;
            }

            .nav-links {
                display: none;
            }

            .menu-toggle {
                display: block;
            }

            .mobile-menu.show {
                display: flex;
            }

            .nav-logo-text h1 {
                font-size: 1rem;
            }

            .nav-logo-icon {
                width: 2rem;
                height: 2rem;
                font-size: 1rem;
            }

            .page-layout {
                padding: 1rem;
                padding-top: 5rem;
            }

            .article-header {
                padding: 3rem 2rem;
            }

            .article-title {
                font-size: 2.5rem;
            }

            .article-meta {
                flex-direction: column;
                gap: 1rem;
            }

            .article-content .content-text h2 {
                margin-top: 1.5em;
                margin-bottom: 1em;
                font-size: 1.6em;
            }

            .article-content .paragraph-content p {
                margin-bottom: 1em;
                line-height: 1.6;
            }

            .article-content .paragraph-content h4 {
                margin-top: 1.2em;
                margin-bottom: 0.6em;
                font-size: 1.2em;
            }

            .article-content .paragraph-links {
                margin-top: 0.8em;
            }

            .article-content .paragraph-link {
                margin-right: 0.8em;
                color: #1a73e8;
                text-decoration: none;
            }
            .article-content .paragraph-link:hover {
                text-decoration: underline;
            }

            .content-section,
            .content-section.reverse {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .content-text h4 {
                font-size: 1.4rem;
            }

            .content-text p {
                font-size: 1rem;
                line-height: 1.6;
            }

            .content-image {
                flex: none;
                width: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
              }

              .content-image img {
                max-height: none;
                width: 100%;
                height: auto;
                object-fit: contain;
                padding: 8px;
              }

              /* ratings-bar fix */
              .ratings-bar {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px;
                margin-top: 6px;
                width: auto;
                max-width: 90%;
              }

              .rating-item {
                padding: 4px 8px;
                font-size: 0.9rem;
                border-radius: 6px;
                white-space: nowrap;
              }
            }


            .related-posts {
                padding: 3rem 2rem;
            }

            .related-posts h2 {
                font-size: 2rem;
            }

            .related-grid {
                grid-template-columns: 1fr;
                gap: 1rem;
            }

        }

        /* Animation Classes */
        .fade-in {
            animation: fadeIn 0.8s ease-out;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .slide-up {
            animation: slideUp 0.6s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }