:root {
            --primary: #c00a0a;
            --secondary: #0a1e5e;
            --accent: #f5c518;
            --dark: #121212;
            --light: #f4f4f4;
            --gray: #666;
            --transition: all 0.3s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--dark);
            color: var(--light);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(to bottom, #000, var(--secondary));
            border-bottom: 3px solid var(--primary);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
        }
        .logo span {
            color: var(--primary);
        }
        .search-form {
            display: flex;
            flex-grow: 0.5;
            max-width: 400px;
        }
        .search-form input {
            flex-grow: 1;
            padding: 10px 15px;
            border: 2px solid var(--gray);
            border-radius: 25px 0 0 25px;
            background: rgba(255,255,255,0.1);
            color: white;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 0 25px 25px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ff0000;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            justify-content: center;
            margin-top: 1rem;
            padding: 1rem;
            background: rgba(10, 30, 94, 0.9);
            border-radius: 10px;
        }
        nav ul li a {
            color: white;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        nav ul li a:hover {
            background: var(--primary);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #ccc;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem 0;
        }
        @media (max-width: 768px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 30, 40, 0.8);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        h1 {
            color: var(--accent);
            font-size: 2.8rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
        }
        .meta {
            display: flex;
            gap: 1.5rem;
            color: #aaa;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px dashed var(--gray);
        }
        .meta i {
            color: var(--primary);
            margin-right: 8px;
        }
        h2 {
            color: #4dabf7;
            font-size: 2rem;
            margin: 2.5rem 0 1.2rem;
            padding-bottom: 8px;
            border-bottom: 2px solid var(--secondary);
        }
        h3 {
            color: var(--accent);
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(10, 30, 94, 0.3), transparent);
            border-left: 4px solid var(--primary);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--secondary);
            box-shadow: 0 8px 16px rgba(0,0,0,0.5);
            transition: var(--transition);
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        blockquote {
            font-size: 1.3rem;
            font-style: italic;
            color: #ccc;
            border-left: 5px solid var(--accent);
            padding: 1.5rem;
            margin: 2.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 0 10px 10px 0;
        }
        aside {
            background: rgba(30, 30, 40, 0.8);
            border-radius: 15px;
            padding: 1.5rem;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget-title {
            color: var(--accent);
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 8px;
            border-bottom: 1px solid var(--primary);
        }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            background: rgba(10, 30, 94, 0.3);
            border-radius: 10px;
        }
        .stars {
            font-size: 2rem;
            color: #ffc107;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .score-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 1rem;
            border-radius: 8px;
            border: 1px solid var(--gray);
            background: rgba(255,255,255,0.1);
            color: white;
        }
        .score-form button, .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(to right, var(--primary), #a00808);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: var(--transition);
        }
        .score-form button:hover, .comment-form button:hover {
            background: linear-gradient(to right, #ff0000, #c00a0a);
        }
        .long-tail-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(10, 30, 94, 0.2);
            border-radius: 15px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 8px;
            border-left: 3px solid var(--accent);
        }
        .web-link:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-3px);
            transition: var(--transition);
        }
        footer {
            background: linear-gradient(to top, #000, var(--secondary));
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 3px solid var(--primary);
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .copyright {
            text-align: center;
            color: #aaa;
            padding-top: 1.5rem;
            border-top: 1px solid var(--gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .long-tail-links {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            .search-form {
                order: 3;
                width: 100%;
                max-width: 100%;
                margin-top: 1rem;
            }
            .hamburger {
                display: block;
            }
            nav ul {
                flex-direction: column;
                display: none;
                width: 100%;
                text-align: center;
            }
            nav.active ul {
                display: flex;
            }
            .long-tail-links {
                grid-template-columns: repeat(2, 1fr);
            }
            h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 576px) {
            .long-tail-links {
                grid-template-columns: 1fr;
            }
            .footer-content {
                flex-direction: column;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.8s ease-out;
        }
