        * { 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: #333;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0e0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        img { max-width: 100%; height: auto; display: block; }
        .site-header {
            background: rgba(20, 20, 30, 0.95);
            backdrop-filter: blur(10px);
            padding: 1rem 2rem;
            border-bottom: 2px solid #8B0000;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-family: 'Impact', 'Haettenschweiler', sans-serif;
            font-size: 2.2rem;
            color: #c41e3a;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
            transition: color 0.3s;
        }
        .my-logo:hover { color: #ffcc00; }
        .my-logo span { color: #ffcc00; }
        .main-nav { display: flex; align-items: center; }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .nav-links a {
            color: #ddd;
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s;
        }
        .nav-links a:hover,
        .nav-links a.active {
            background-color: #c41e3a;
            color: #fff;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #fff;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 0.8rem 2rem;
            background: rgba(40, 40, 60, 0.8);
            font-size: 0.9rem;
            border-bottom: 1px solid #444;
        }
        .breadcrumb a { color: #4dabf7; text-decoration: none; }
        .breadcrumb a:hover { text-decoration: underline; }
        .container {
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 1.5rem;
            flex: 1;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        article {
            background: rgba(30, 30, 46, 0.85);
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid #555;
        }
        h1 {
            color: #ffcc00;
            font-size: 3.2rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-bottom: 3px solid #c41e3a;
            padding-bottom: 0.5rem;
        }
        .meta-info {
            color: #aaa;
            font-style: italic;
            margin-bottom: 2rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 1rem;
        }
        h2 {
            color: #4dabf7;
            font-size: 2.2rem;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.5rem;
            border-left: 5px solid #c41e3a;
        }
        h3 {
            color: #ffa94d;
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: #69db7c;
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            color: #ffd8a8;
            background: rgba(77, 171, 247, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            margin-bottom: 2rem;
        }
        .highlight {
            background: rgba(255, 204, 0, 0.15);
            padding: 1rem;
            border-left: 4px solid #ffcc00;
            margin: 1.5rem 0;
            font-weight: 600;
        }
        .image-block {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-block img {
            border-radius: 8px;
            border: 3px solid #555;
            max-height: 500px;
            object-fit: cover;
            width: 100%;
        }
        .image-caption {
            font-size: 0.95rem;
            color: #aaa;
            margin-top: 0.5rem;
            font-style: italic;
        }
        .internal-link {
            color: #ffa94d;
            text-decoration: underline;
            font-weight: 600;
            transition: color 0.3s;
        }
        .internal-link:hover {
            color: #ffcc00;
            text-decoration: none;
        }
        ul, ol { margin-left: 2rem; margin-bottom: 1.5rem; }
        li { margin-bottom: 0.5rem; }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(30, 30, 46, 0.85);
            border-radius: 10px;
            padding: 1.8rem;
            border: 1px solid #555;
        }
        .widget-title {
            color: #ffcc00;
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #c41e3a;
        }
        .search-form,
        .comment-form,
        .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.8rem;
            border-radius: 6px;
            border: 1px solid #666;
            background: rgba(50, 50, 70, 0.9);
            color: #fff;
            font-size: 1rem;
        }
        button, .btn {
            background: linear-gradient(to right, #c41e3a, #8B0000);
            color: white;
            border: none;
            padding: 0.9rem 1.5rem;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }
        button:hover, .btn:hover {
            background: linear-gradient(to right, #d63333, #a30000);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(196, 30, 58, 0.4);
        }
        .stars { display: flex; gap: 0.5rem; margin-bottom: 1rem; }
        .stars i { color: #666; cursor: pointer; font-size: 1.5rem; transition: color 0.3s; }
        .stars i:hover,
        .stars i.active { color: #ffcc00; }
        .site-footer {
            background: rgba(10, 10, 20, 0.95);
            margin-top: 4rem;
            padding: 3rem 2rem 2rem;
            border-top: 3px solid #8B0000;
        }
        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
        }
        .footer-section h3 { color: #ffcc00; margin-bottom: 1.5rem; font-size: 1.4rem; }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .friend-links a {
            color: #4dabf7;
            text-decoration: none;
            padding: 0.4rem 0;
            border-bottom: 1px dashed #444;
            transition: color 0.3s;
        }
        .friend-links a:hover { color: #ffcc00; border-bottom-color: #ffcc00; }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid #444;
            color: #aaa;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .site-header { padding: 1rem; }
            .hamburger { display: block; }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(20, 20, 30, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                border-top: 1px solid #444;
            }
            .nav-links.active { display: flex; }
            h1 { font-size: 2.5rem; }
            .content-wrapper { gap: 2rem; }
            article { padding: 1.5rem; }
            .container { padding: 0 1rem; }
        }
