* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background-color: #f5f7fa;
            background-image: linear-gradient(to bottom, #0a0e2a 0%, #1a1f3c 30%, #f5f7fa 30%);
            background-attachment: fixed;
        }
        a {
            text-decoration: none;
            color: #007bff;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff6b00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 14, 42, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: #ff6b00;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 0 10px rgba(255, 107, 0, 0.7);
        }
        .logo a:hover {
            color: #ffd700;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: #ff6b00;
            color: #0a0e2a;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #1a1f3c;
            color: #ccc;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #ffd700;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .hero {
            text-align: center;
            padding: 3rem 1rem;
            color: white;
            background: linear-gradient(rgba(10,14,42,0.8), rgba(26,31,60,0.9)), url('https://via.placeholder.com/1200x400/1a1f3c/ff6b00?text=Transformers+Robots+in+Disguise') center/cover no-repeat;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 15px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1rem;
        }
        .search-form button {
            background: #ff6b00;
            color: white;
            border: none;
            padding: 15px 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #ff8b33;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        .main-article {
            background: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .article-section {
            margin-bottom: 3rem;
        }
        .article-section h2 {
            color: #0a0e2a;
            border-left: 5px solid #ff6b00;
            padding-left: 15px;
            margin-bottom: 1.5rem;
            font-size: 2rem;
        }
        .article-section h3 {
            color: #1a1f3c;
            margin: 1.5rem 0 1rem;
            font-size: 1.5rem;
        }
        .article-section p {
            margin-bottom: 1.2rem;
            text-align: justify;
        }
        .article-section emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .highlight {
            background-color: #fff9e6;
            padding: 1.5rem;
            border-left: 4px solid #ffd700;
            margin: 1.5rem 0;
            font-weight: bold;
        }
        .featured-image {
            float: right;
            margin: 0 0 1.5rem 1.5rem;
            max-width: 400px;
            border-radius: 8px;
            border: 3px solid #ff6b00;
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget h3 {
            color: #0a0e2a;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #ff6b00;
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: #ffd700;
        }
        .rating-form input,
        .comment-form input,
        .comment-form textarea {
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 120px;
            resize: vertical;
        }
        .widget button {
            background: #0a0e2a;
            color: white;
            border: none;
            padding: 12px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .widget button:hover {
            background: #ff6b00;
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            margin: 3rem 0;
            padding: 2rem;
            background: #1a1f3c;
            border-radius: 10px;
        }
        .web-link a {
            display: block;
            padding: 12px;
            background: #2a3152;
            color: #ffd700;
            text-align: center;
            border-radius: 5px;
            transition: all 0.3s;
        }
        .web-link a:hover {
            background: #ff6b00;
            color: #0a0e2a;
            transform: translateY(-3px);
        }
        .site-footer {
            background-color: #0a0e2a;
            color: #aaa;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #ffd700;
            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;
        }
        .footer-links a:hover {
            color: #ff6b00;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3152;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
            .longtail-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .main-nav ul {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background-color: #0a0e2a;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .main-nav.active ul {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .main-article {
                padding: 1.5rem;
            }
            .longtail-links {
                grid-template-columns: 1fr;
            }
            .featured-image {
                float: none;
                margin: 1rem auto;
                max-width: 100%;
            }
        }
