        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0f0f1a;
            --primary-gray: #1a1a2e;
            --accent-yellow: #f5c518;
            --accent-light: #e6e6e6;
            --text-primary: #f0f0f0;
            --text-secondary: #b0b0b0;
            --highlight-blue: #3d7ea6;
            --highlight-red: #c62e2e;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-primary);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px rgba(245, 197, 24, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(to right, var(--highlight-blue), #2a5a7a);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(61, 126, 166, 0.4);
        }
        .section-padding {
            padding: 60px 0;
        }
        .text-center { text-align: center; }
        .text-highlight { color: var(--accent-yellow); }
        .site-header {
            background-color: var(--primary-gray);
            border-bottom: 3px solid var(--accent-yellow);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--accent-yellow);
            text-transform: uppercase;
            letter-spacing: 2px;
            font-family: 'Impact', 'Arial Black', sans-serif;
            text-shadow: 2px 2px 4px #000;
        }
        .logo a span {
            color: var(--text-primary);
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-yellow);
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-yellow);
        }
        .mobile-nav {
            display: none;
            background-color: var(--primary-gray);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #333;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            border-left: 4px solid transparent;
            transition: all 0.3s;
        }
        .mobile-nav a:hover {
            border-left-color: var(--accent-yellow);
            background-color: rgba(255,255,255,0.05);
        }
        .breadcrumb {
            background-color: rgba(26, 26, 46, 0.8);
            padding: 12px 0;
            font-size: 0.9rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent-yellow);
        }
        .hero {
            background: linear-gradient(rgba(15, 15, 26, 0.9), rgba(26, 26, 46, 0.9)), url('https://images.unsplash.com/photo-1635805737707-575885ab0820?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            color: var(--accent-yellow);
            text-shadow: 3px 3px 6px #000;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
            color: var(--text-secondary);
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto 0;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 16px 20px;
            border: 2px solid var(--highlight-blue);
            border-radius: 4px 0 0 4px;
            background-color: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-box button {
            padding: 0 30px;
            background-color: var(--highlight-blue);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background-color 0.3s;
        }
        .search-box button:hover {
            background-color: #2a5a7a;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: rgba(26, 26, 46, 0.6);
            border-radius: 8px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .article-section {
            margin-bottom: 60px;
        }
        .article-section h2 {
            font-size: 2.2rem;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--accent-yellow);
            color: var(--accent-light);
        }
        .article-section h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: var(--accent-yellow);
        }
        .article-section p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: var(--text-primary);
        }
        .article-section ul, .article-section ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        .article-section li {
            margin-bottom: 10px;
        }
        .featured-image {
            margin: 30px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            border: 1px solid #333;
        }
        .featured-image figcaption {
            padding: 15px;
            background-color: rgba(0,0,0,0.5);
            font-style: italic;
            color: var(--text-secondary);
            text-align: center;
        }
        .info-box {
            background: linear-gradient(135deg, var(--primary-gray), #252547);
            border-left: 5px solid var(--accent-yellow);
            padding: 25px;
            margin: 30px 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box h4 {
            color: var(--accent-yellow);
            margin-bottom: 15px;
            font-size: 1.4rem;
        }
        .sidebar {
            background-color: rgba(26, 26, 46, 0.6);
            border-radius: 8px;
            padding: 25px;
            align-self: start;
            position: sticky;
            top: 120px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .sidebar-widget {
            margin-bottom: 35px;
        }
        .sidebar-widget h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--highlight-blue);
            color: var(--accent-light);
        }
        .sidebar-links ul {
            list-style: none;
        }
        .sidebar-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed #444;
        }
        .interactive-section {
            background-color: rgba(15, 15, 26, 0.8);
            border-radius: 8px;
            padding: 30px;
            margin: 40px 0;
            border: 1px solid #333;
        }
        .rating-form, .comment-form {
            margin-top: 25px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 2rem;
            color: #444;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: var(--accent-yellow);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 14px;
            background-color: rgba(255,255,255,0.1);
            border: 1px solid #444;
            border-radius: 4px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .footer-links {
            background-color: var(--primary-gray);
            padding: 50px 0 30px;
            border-top: 2px solid #333;
        }
        .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: 18px;
            border-radius: 6px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(61, 126, 166, 0.2);
        }
        .web-link a {
            color: var(--text-primary);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--accent-yellow);
        }
        .site-footer {
            background-color: #0a0a12;
            padding: 40px 0 20px;
            text-align: center;
            border-top: 1px solid #333;
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #333;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: block; }
            .main-content { gap: 25px; }
            .article-content { padding: 25px; }
            .sidebar { position: static; }
            .article-section h2 { font-size: 1.9rem; }
            .search-box { flex-direction: column; }
            .search-box input { border-radius: 4px; margin-bottom: 10px; }
            .search-box button { border-radius: 4px; padding: 16px; }
        }
