:root {
            --primary: #cc0000;
            --secondary: #1a1a1a;
            --accent: #ffcc00;
            --light: #f5f5f5;
            --dark: #333;
            --text: #222;
            --gray: #777;
            --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: var(--font-main);
            line-height: 1.8;
            color: var(--text);
            background: linear-gradient(135deg, #0c0c0c 0%, #1f1f1f 100%);
            color: var(--light);
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: var(--accent);
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ff9900;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .header {
            background: var(--secondary);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.5rem;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(255, 204, 0, 0.3);
        }
        .logo a:hover {
            color: #ff3333;
        }
        .nav-desktop {
            display: flex;
            gap: 30px;
        }
        .nav-desktop a {
            color: var(--light);
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: var(--primary);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: var(--light);
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--secondary);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--light);
            padding: 12px 0;
            border-bottom: 1px solid #444;
        }
        .breadcrumb {
            padding: 10px 0;
            background: #222;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb span {
            color: var(--gray);
        }
        .hero {
            text-align: center;
            padding: 40px 20px;
            background: radial-gradient(circle, #2a2a2a 0%, #0a0a0a 100%);
            border-bottom: 3px solid var(--primary);
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--accent);
            text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #ccc;
        }
        .content {
            display: grid;
            grid-template-columns: 3fr 1fr;
            gap: 40px;
            padding: 40px 0;
        }
        .main-article {
            background: rgba(30,30,30,0.9);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.6);
        }
        .article-section {
            margin-bottom: 50px;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            border-left: 5px solid var(--accent);
            padding-left: 15px;
            margin: 30px 0 20px;
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            color: #ddd;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.1);
            border-left: 4px solid var(--accent);
            padding: 15px;
            margin: 20px 0;
            font-weight: bold;
        }
        .article-img {
            width: 100%;
            max-width: 800px;
            height: auto;
            border-radius: 8px;
            margin: 25px auto;
            display: block;
            border: 3px solid var(--primary);
            transition: transform 0.3s ease;
        }
        .article-img:hover {
            transform: scale(1.02);
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .sidebar {
            background: rgba(30,30,30,0.9);
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.5);
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: var(--primary);
            padding-bottom: 10px;
            border-bottom: 2px solid var(--gray);
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        input, textarea, select {
            padding: 12px;
            border: 1px solid #555;
            border-radius: 5px;
            background: #222;
            color: var(--light);
            font-family: var(--font-main);
        }
        button {
            padding: 12px 20px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        button:hover {
            background: #ff3333;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent);
        }
        .longtail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            padding: 40px 20px;
            background: #1a1a1a;
        }
        .web-link {
            background: #2a2a2a;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            background: #333;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ccc;
            font-weight: 600;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        .footer {
            background: var(--secondary);
            padding: 30px 0;
            text-align: center;
            color: #aaa;
            border-top: 2px solid var(--primary);
        }
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
            .longtail-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .longtail-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .longtail-links {
                grid-template-columns: 1fr;
            }
            .logo a {
                font-size: 2rem;
            }
        }
