:root {
            --primary-red: #e62429;
            --secondary-blue: #0067b0;
            --dark-bg: #111;
            --light-text: #f5f5f5;
            --gray-bg: #2a2a2a;
            --accent-yellow: #ffd700;
            --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.7;
            color: var(--light-text);
            background-color: var(--dark-bg);
            overflow-x: hidden;
        }
        a {
            color: var(--accent-yellow);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--primary-red);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--dark-bg), #222);
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, var(--primary-red), var(--accent-yellow));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
            transition: transform 0.3s ease;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            font-size: 1.1rem;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: var(--primary-red);
            color: white;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--light-text);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            border-bottom: 1px solid #333;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1635805737707-575885ab0820?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center/cover;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 10px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            color: white;
            text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #eee;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 3rem;
        }
        @media (max-width: 768px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main article {
            background-color: var(--gray-bg);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.4);
        }
        article h1, article h2, article h3, article h4 {
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            color: var(--accent-yellow);
            line-height: 1.3;
        }
        article h1 { font-size: 2.8rem; border-left: 6px solid var(--primary-red); padding-left: 1rem; }
        article h2 { font-size: 2.2rem; border-bottom: 2px solid #444; padding-bottom: 0.5rem; }
        article h3 { font-size: 1.8rem; }
        article h4 { font-size: 1.5rem; color: #ccc; }
        article p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            color: #e0e0e0;
        }
        article strong {
            color: var(--primary-red);
            font-weight: 700;
        }
        article em {
            color: #aaa;
            font-style: italic;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--secondary-blue);
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .info-box {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border-left: 5px solid var(--secondary-blue);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .quote {
            font-size: 1.3rem;
            font-style: italic;
            color: #b0d7ff;
            text-align: center;
            padding: 2rem;
            border-top: 2px dashed #444;
            border-bottom: 2px dashed #444;
            margin: 2.5rem 0;
        }
        aside.sidebar {
            background-color: #1e1e1e;
            padding: 2rem;
            border-radius: 10px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            color: var(--primary-red);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #444;
        }
        .search-form {
            display: flex;
            margin-bottom: 1rem;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem 1rem;
            border: 2px solid #444;
            background-color: #333;
            color: white;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #c51a1f;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 1.8rem;
            color: #555;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        .stars .star {
            margin: 0 0.2rem;
            transition: color 0.2s;
        }
        .stars .star:hover,
        .stars .star.active {
            color: var(--accent-yellow);
        }
        .rating-form button {
            background-color: var(--secondary-blue);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            width: 100%;
            transition: background 0.3s;
        }
        .rating-form button:hover {
            background-color: #00518c;
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 1rem;
            background-color: #333;
            border: 2px solid #444;
            border-radius: 5px;
            color: white;
            font-family: inherit;
            font-size: 1rem;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            background-color: var(--primary-red);
            color: white;
            border: none;
            padding: 0.8rem 1.8rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background-color: #c51a1f;
        }
        .site-footer {
            background-color: #0a0a0a;
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary-red);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-red);
            margin-bottom: 1rem;
        }
        friend-links {
            display: block;
            background-color: #151515;
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        friend-links h4 {
            color: var(--accent-yellow);
            margin-bottom: 1rem;
        }
        friend-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        friend-links a {
            background-color: #222;
            padding: 0.6rem 1.2rem;
            border-radius: 5px;
            display: inline-block;
            transition: all 0.3s;
        }
        friend-links a:hover {
            background-color: var(--primary-red);
            transform: translateY(-3px);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.8rem; }
            article h1 { font-size: 2.3rem; }
            article h2 { font-size: 1.9rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #222;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
                border-top: 2px solid var(--primary-red);
            }
            .main-nav ul.active { display: flex; }
            .main-nav li { margin: 0.5rem 0; }
            .header-content { padding: 0 1rem; }
            .hero { padding: 2.5rem 1rem; }
            .hero h1 { font-size: 2.3rem; }
            .hero p { font-size: 1.1rem; }
            main article { padding: 1.5rem; }
            article h1 { font-size: 2rem; }
            article h2 { font-size: 1.7rem; }
            .content-wrapper { gap: 2rem; }
            aside.sidebar { position: static; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.9rem; }
            .my-logo { font-size: 1.7rem; }
            article h1 { font-size: 1.8rem; }
            article h2 { font-size: 1.5rem; }
        }
        .text-center { text-align: center; }
        .mt-2 { margin-top: 2rem; }
        .mb-2 { margin-bottom: 2rem; }
        .last-updated {
            font-size: 0.9rem;
            color: #aaa;
            font-style: italic;
            text-align: right;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #444;
        }
