        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a0e17;
            --secondary-dark: #1a2238;
            --accent-red: #c62828;
            --accent-gold: #ffb74d;
            --accent-alien: #4db6ac;
            --text-primary: #f5f5f5;
            --text-secondary: #b0bec5;
            --border-color: #37474f;
            --section-padding: 2rem;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: var(--accent-red);
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        .flex {
            display: flex;
            flex-wrap: wrap;
        }
        .grid {
            display: grid;
            gap: 1.5rem;
        }
        .btn {
            display: inline-block;
            padding: 0.75rem 1.5rem;
            background: linear-gradient(135deg, var(--accent-red), #8e0000);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
            transition: var(--transition);
        }
        .btn:hover {
            background: linear-gradient(135deg, #d32f2f, var(--accent-red));
            transform: translateY(-2px);
            text-decoration: none;
        }
        .section-title {
            color: var(--accent-gold);
            border-left: 5px solid var(--accent-alien);
            padding-left: 1rem;
            margin: 2rem 0 1.5rem;
            font-size: 1.8rem;
        }
        .highlight {
            background-color: rgba(198, 40, 40, 0.1);
            border-left: 4px solid var(--accent-red);
            padding: 1rem;
            margin: 1.5rem 0;
        }
        .site-header {
            background-color: var(--secondary-dark);
            border-bottom: 2px solid var(--accent-red);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            padding: 1rem 0;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2rem;
            font-weight: 900;
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .my-logo:hover {
            color: var(--accent-red);
            text-decoration: none;
        }
        .search-box {
            flex-grow: 1;
            max-width: 400px;
            margin: 0 2rem;
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 4px 0 0 4px;
            background-color: rgba(255,255,255,0.1);
            color: white;
        }
        .search-btn {
            background-color: var(--accent-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        .search-btn:hover {
            background-color: #d32f2f;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        .main-nav {
            background-color: rgba(10, 14, 23, 0.95);
            border-top: 1px solid var(--border-color);
        }
        .nav-list {
            list-style: none;
            justify-content: center;
        }
        .nav-item {
            position: relative;
        }
        .nav-link {
            display: block;
            padding: 1rem 1.5rem;
            color: var(--text-primary);
            font-weight: 600;
        }
        .nav-link:hover {
            background-color: var(--accent-red);
            color: white;
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(26, 34, 56, 0.5);
            font-size: 0.9rem;
        }
        .breadcrumb-list {
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb-item {
            display: inline;
            margin-right: 0.5rem;
        }
        .breadcrumb-item:not(:last-child)::after {
            content: '>';
            margin-left: 0.5rem;
            color: var(--text-secondary);
        }
        .main-content {
            padding: var(--section-padding) 0;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        .article-content {
            background-color: var(--secondary-dark);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .article-meta {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-bottom: 2rem;
            border-bottom: 1px dashed var(--border-color);
            padding-bottom: 1rem;
        }
        .article-meta i {
            margin-right: 0.5rem;
        }
        h1 {
            color: var(--accent-alien);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            margin: 3rem 0 1.5rem;
            color: var(--accent-gold);
        }
        h3 {
            font-size: 1.5rem;
            margin: 2.5rem 0 1rem;
            color: var(--text-primary);
        }
        h4 {
            font-size: 1.2rem;
            margin: 2rem 0 1rem;
            color: var(--text-secondary);
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .featured-image {
            margin: 2rem 0;
            border: 3px solid var(--accent-alien);
            border-radius: 8px;
            overflow: hidden;
        }
        .featured-image figcaption {
            padding: 0.75rem;
            background-color: rgba(77, 182, 172, 0.1);
            font-style: italic;
            text-align: center;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--secondary-dark);
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
        }
        .widget-title {
            color: var(--accent-gold);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent-red);
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.75rem;
            padding-bottom: 0.75rem;
            border-bottom: 1px dotted var(--border-color);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.5rem;
            color: var(--accent-gold);
            margin: 1rem 0;
        }
        .stars i {
            cursor: pointer;
            margin: 0 2px;
        }
        .comments-section {
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 2px solid var(--border-color);
        }
        .comment-form {
            margin-top: 2rem;
            background-color: rgba(26, 34, 56, 0.7);
            padding: 1.5rem;
            border-radius: 8px;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.75rem;
            background-color: rgba(255,255,255,0.1);
            border: 1px solid var(--border-color);
            border-radius: 4px;
            color: white;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .site-footer {
            background-color: var(--secondary-dark);
            border-top: 3px solid var(--accent-red);
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-links h4 {
            color: var(--accent-gold);
            margin-bottom: 1.5rem;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        friend-link {
            display: inline-block;
            background-color: rgba(77, 182, 172, 0.2);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            margin: 0.25rem;
            font-size: 0.9rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-secondary);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            .search-box {
                order: 3;
                flex-basis: 100%;
                max-width: 100%;
                margin: 1rem 0 0;
            }
            .main-nav {
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .nav-list {
                flex-direction: column;
            }
            .header-top {
                flex-wrap: wrap;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
        }
        @media (max-width: 576px) {
            .footer-content {
                grid-template-columns: 1fr;
            }
            .article-content {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.5s ease forwards;
        }
