        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #c00a0a;
            --secondary: #1a1a2e;
            --accent: #ffcc00;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 20% 30%, rgba(28, 28, 50, 0.8) 0%, transparent 20%), radial-gradient(circle at 80% 80%, rgba(192, 10, 10, 0.1) 0%, transparent 20%);
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ffdb4d;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(26, 26, 46, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: 'Arial Black', Impact, sans-serif;
            font-size: 2.2rem;
            color: var(--accent);
            text-shadow: 3px 3px 0 var(--primary), 6px 6px 10px rgba(0, 0, 0, 0.8);
            letter-spacing: 1.5px;
            text-decoration: none;
        }
        .my-logo:hover {
            text-decoration: none;
            color: #ffdb4d;
            text-shadow: 3px 3px 0 #b30808, 6px 6px 15px rgba(0, 0, 0, 0.9);
        }
        .my-logo span {
            color: var(--primary);
        }
        nav ul {
            display: flex;
            list-style: none;
        }
        nav ul li {
            margin-left: 25px;
            position: relative;
        }
        nav ul li a {
            color: var(--light);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            border-bottom: 2px solid transparent;
        }
        nav ul li a:hover,
        nav ul li a.active {
            color: var(--accent);
            border-bottom-color: var(--accent);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--light);
            background: none;
            border: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(33, 37, 41, 0.8);
            border-bottom: 1px solid var(--gray);
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: var(--accent);
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--gray);
            margin: 0 8px;
        }
        main {
            padding: 30px 0;
            min-height: 80vh;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(192, 10, 10, 0.3);
        }
        h1, h2, h3, h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            margin-top: 0;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 15px;
            text-align: center;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            border-left: 5px solid var(--primary);
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
            color: #ff9966;
        }
        h4 {
            font-size: 1.5rem;
            margin-top: 1.5rem;
            color: #66ccff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #b3d4fc;
            margin-bottom: 2rem;
            padding: 15px;
            background: rgba(192, 10, 10, 0.1);
            border-left: 4px solid var(--accent);
            border-radius: 0 8px 8px 0;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.1);
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid var(--accent);
            margin: 20px 0;
        }
        b, strong {
            color: var(--accent);
            font-weight: 700;
        }
        em {
            color: #ff9966;
            font-style: italic;
        }
        .feature-img {
            width: 100%;
            margin: 25px 0;
            border: 3px solid var(--primary);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.7);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: var(--gray);
            margin-top: 8px;
            font-size: 0.95rem;
        }
        ul, ol {
            margin-left: 30px;
            margin-bottom: 1.5rem;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .search-box, .comment-form, .rating-form {
            background-color: rgba(33, 37, 41, 0.9);
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid var(--gray);
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
            color: var(--primary);
        }
        form {
            display: flex;
            flex-direction: column;
        }
        input, textarea, select {
            padding: 12px 15px;
            margin-bottom: 15px;
            border: 1px solid var(--gray);
            border-radius: 6px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--light);
            font-size: 1rem;
            transition: var(--transition);
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(255, 204, 0, 0.2);
        }
        button {
            padding: 12px 25px;
            background: linear-gradient(to right, var(--primary), #8b0000);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: var(--transition);
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(to right, #d11a1a, var(--primary));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(192, 10, 10, 0.4);
        }
        aside {
            background-color: rgba(26, 26, 46, 0.7);
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 204, 0, 0.2);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        aside h3 {
            color: var(--primary);
            border-bottom: 2px solid var(--accent);
            padding-bottom: 10px;
            margin-top: 0;
        }
        .sidebar-links {
            list-style: none;
            margin-left: 0;
        }
        .sidebar-links li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        }
        .sidebar-links a {
            display: block;
            padding: 8px 12px;
            background: rgba(192, 10, 10, 0.1);
            border-radius: 6px;
            color: #b3d4fc;
        }
        .sidebar-links a:hover {
            background: rgba(192, 10, 10, 0.3);
            color: white;
            text-decoration: none;
            transform: translateX(5px);
        }
        footer {
            background-color: var(--secondary);
            padding: 40px 0 20px;
            border-top: 3px solid var(--primary);
            margin-top: 50px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: var(--accent);
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 6px;
            transition: var(--transition);
        }
        friend-link:hover {
            background: rgba(255, 204, 0, 0.1);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            h4 { font-size: 1.3rem; }
            .header-container { flex-wrap: wrap; }
            nav {
                width: 100%;
                order: 3;
                margin-top: 15px;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                align-items: center;
            }
            nav ul li {
                margin: 10px 0;
                margin-left: 0;
                width: 100%;
                text-align: center;
            }
            .hamburger {
                display: block;
            }
            .content-wrapper {
                gap: 20px;
            }
            article, aside {
                padding: 20px;
            }
        }
