        * { margin: 0; padding: 0; box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 50%, #0f0f0f 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4, .logo { font-family: 'Impact', 'Haettenschweiler', 'Arial Narrow Bold', sans-serif; color: #c00; text-shadow: 2px 2px 4px #000; letter-spacing: 1px; }
        h1 { font-size: 3.5rem; margin-bottom: 1.5rem; border-bottom: 3px solid #c00; padding-bottom: 0.5rem; }
        h2 { font-size: 2.5rem; margin: 2.5rem 0 1.2rem; color: #f44; }
        h3 { font-size: 1.8rem; margin: 2rem 0 1rem; color: #f77; }
        h4 { font-size: 1.4rem; margin: 1.5rem 0 0.8rem; color: #fa7; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        a { color: #f44; text-decoration: none; transition: color 0.3s, text-shadow 0.3s; }
        a:hover { color: #fff; text-shadow: 0 0 8px #f00; }
        .lead { font-size: 1.3rem; color: #ccc; font-weight: 300; }
        .highlight { background-color: rgba(255, 68, 68, 0.15); padding: 0.2rem 0.5rem; border-left: 3px solid #f44; }
        .bold { font-weight: 700; color: #fff; }
        .last-update { font-style: italic; color: #aaa; font-size: 0.9rem; margin-top: 3rem; padding-top: 1rem; border-top: 1px dashed #444; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        main { flex: 1; padding: 30px 0; }
        header { background: rgba(10, 10, 10, 0.95); padding: 15px 0; border-bottom: 2px solid #c00; position: sticky; top: 0; z-index: 1000; backdrop-filter: blur(10px); }
        .header-container { display: flex; justify-content: space-between; align-items: center; }
        .logo a { font-size: 2.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 3px; color: #c00; text-shadow: 0 0 10px #f00, 2px 2px 0 #000; }
        .logo a:hover { color: #fff; text-shadow: 0 0 15px #f00, 3px 3px 0 #000; }
        .desktop-nav ul { display: flex; list-style: none; gap: 30px; }
        .desktop-nav a { font-size: 1.1rem; padding: 8px 5px; position: relative; }
        .desktop-nav a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #c00; transition: width 0.3s; }
        .desktop-nav a:hover::after { width: 100%; }
        .hamburger { display: none; font-size: 1.8rem; background: none; border: none; color: #c00; cursor: pointer; }
        .mobile-nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: rgba(20, 20, 20, 0.98); flex-direction: column; padding: 20px; box-shadow: 0 10px 15px rgba(0,0,0,0.5); }
        .mobile-nav.active { display: flex; }
        .mobile-nav ul { list-style: none; }
        .mobile-nav li { margin: 15px 0; }
        .mobile-nav a { font-size: 1.2rem; display: block; padding: 10px; border-left: 3px solid transparent; }
        .mobile-nav a:hover { border-left-color: #c00; background: rgba(255,68,68,0.1); }
        .breadcrumb { padding: 15px 0; font-size: 0.9rem; color: #999; background: rgba(30,30,30,0.7); margin-bottom: 30px; }
        .breadcrumb a { color: #ccc; }
        .breadcrumb span { color: #f44; }
        .functional-section { background: rgba(40, 40, 40, 0.8); border-radius: 10px; padding: 25px; margin: 40px 0; border: 1px solid #555; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
        .functional-title { font-size: 1.5rem; margin-bottom: 20px; color: #f44; display: flex; align-items: center; gap: 10px; }
        .functional-title i { font-size: 1.3rem; }
        .form-group { margin-bottom: 20px; }
        label { display: block; margin-bottom: 8px; color: #ccc; }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background: rgba(60, 60, 60, 0.8);
            border: 1px solid #666;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s, box-shadow 0.3s;
        }
        input:focus, textarea:focus, select:focus { outline: none; border-color: #c00; box-shadow: 0 0 8px rgba(255, 68, 68, 0.5); }
        textarea { min-height: 120px; resize: vertical; }
        button.btn {
            background: linear-gradient(to bottom, #c00, #900);
            color: white;
            border: none;
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 5px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
        }
        button.btn:hover { background: linear-gradient(to bottom, #f00, #a00); box-shadow: 0 0 15px rgba(255, 0, 0, 0.7); transform: translateY(-2px); }
        .rating-stars { display: flex; gap: 10px; font-size: 2rem; margin: 15px 0; }
        .rating-stars .star { color: #555; cursor: pointer; transition: color 0.2s, transform 0.2s; }
        .rating-stars .star:hover, .rating-stars .star.active { color: #ffcc00; transform: scale(1.2); }
        .form-row { display: flex; flex-wrap: wrap; gap: 20px; }
        .form-row .form-group { flex: 1; min-width: 250px; }
        .article-content { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
        @media (max-width: 992px) { .article-content { grid-template-columns: 1fr; } }
        .article-main img.featured-img { width: 100%; border-radius: 10px; border: 3px solid #c00; margin: 25px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.7); }
        .article-sidebar { background: rgba(30,30,30,0.8); border-radius: 10px; padding: 25px; align-self: start; border: 1px solid #444; }
        .sidebar-title { font-size: 1.4rem; margin-bottom: 20px; color: #f77; border-bottom: 2px solid #c00; padding-bottom: 10px; }
        .related-links { list-style: none; }
        .related-links li { margin-bottom: 15px; padding-bottom: 15px; border-bottom: 1px dashed #444; }
        .related-links a { display: block; padding: 8px; border-radius: 5px; transition: background 0.3s; }
        .related-links a:hover { background: rgba(255,68,68,0.1); }
        .related-links i { margin-right: 10px; color: #c00; }
        footer { background: #111; padding: 40px 0 20px; margin-top: 50px; border-top: 3px solid #c00; }
        .footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; }
        .footer-section { flex: 1; min-width: 250px; }
        .footer-title { font-size: 1.3rem; color: #f44; margin-bottom: 20px; }
        friend-link { display: block; margin-bottom: 10px; }
        friend-link a { color: #ccc; }
        friend-link a:hover { color: #f44; }
        .copyright { text-align: center; padding-top: 30px; margin-top: 30px; border-top: 1px solid #333; color: #888; font-size: 0.9rem; width: 100%; }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            .header-container { flex-wrap: wrap; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .logo a { font-size: 2.2rem; }
            .form-row { flex-direction: column; }
        }
