        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-red: #e62429;
            --primary-blue: #0060af;
            --dark-bg: #151515;
            --light-bg: #f5f5f5;
            --text-dark: #222;
            --text-light: #eee;
            --accent-yellow: #ffd900;
            --spider-web: #b0b0b0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light-bg);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        h1, h2, h3, h4 {
            font-family: 'Arial Black', Gadget, sans-serif;
            color: var(--primary-red);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: clamp(2.2rem, 5vw, 3.5rem);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            border-bottom: 3px solid var(--primary-blue);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: clamp(1.8rem, 4vw, 2.5rem);
            border-left: 5px solid var(--primary-red);
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.6rem;
            color: var(--primary-blue);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        a {
            color: var(--primary-blue);
            text-decoration: none;
            transition: color 0.3s, transform 0.2s;
        }
        a:hover {
            color: var(--primary-red);
            transform: translateY(-2px);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-header {
            background: linear-gradient(to right, var(--dark-bg) 70%, #2a0a0a);
            color: var(--text-light);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--primary-red);
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(90deg, var(--primary-red), var(--accent-yellow));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.5rem;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--text-light);
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            position: relative;
        }
        .main-nav a:hover {
            background-color: rgba(230, 36, 41, 0.2);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: all 0.3s ease;
        }
        .main-nav a:hover::after {
            width: 80%;
            left: 10%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            background-color: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 5px;
            margin: 1rem 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: var(--accent-yellow);
        }
        .hero {
            background: linear-gradient(rgba(21,21,21,0.9), rgba(21,21,21,0.8)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23e62429" stroke-width="1" opacity="0.2"/>');
            color: var(--text-light);
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
        }
        .hero h1 {
            color: white;
            border-bottom: none;
        }
        .search-container {
            max-width: 600px;
            margin: 2rem auto;
            background: rgba(255,255,255,0.95);
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-form input {
            flex: 1;
            padding: 15px;
            border: 2px solid var(--spider-web);
            border-radius: 5px;
            font-size: 1rem;
        }
        .search-form button {
            background: var(--primary-red);
            color: white;
            border: none;
            padding: 0 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #c00;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem 0;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .drawing-showcase {
            margin: 2.5rem 0;
            text-align: center;
        }
        .drawing-img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 5px solid var(--primary-blue);
            box-shadow: 0 15px 30px rgba(0,96,175,0.2);
            transition: transform 0.5s;
        }
        .drawing-img:hover {
            transform: scale(1.02);
        }
        .img-caption {
            font-style: italic;
            color: #666;
            margin-top: 10px;
        }
        .interactive-section {
            background: linear-gradient(135deg, #f8f9ff, #eef2ff);
            padding: 2rem;
            border-radius: 10px;
            margin: 2.5rem 0;
            border-left: 5px solid var(--accent-yellow);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
        }
        .stars .active {
            color: var(--accent-yellow);
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 12px;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1rem;
        }
        .btn {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            align-self: flex-start;
            transition: background 0.3s, transform 0.2s;
        }
        .btn:hover {
            background: var(--primary-red);
            transform: translateY(-3px);
        }
        .internal-link {
            background: #f0f8ff;
            padding: 10px 15px;
            border-radius: 5px;
            margin: 5px 0;
            display: inline-block;
            border: 1px dashed var(--primary-blue);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 3rem 0;
            padding: 2rem;
            background: var(--dark-bg);
            border-radius: 10px;
        }
        .web-link {
            background: rgba(255,255,255,0.05);
            padding: 15px;
            border-radius: 5px;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(230, 36, 41, 0.2);
            transform: translateX(5px);
        }
        .web-link a {
            color: var(--text-light);
            display: block;
        }
        .main-footer {
            background: var(--dark-bg);
            color: var(--text-light);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            text-align: center;
        }
        .copyright {
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #444;
            font-size: 0.9rem;
            color: #aaa;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: var(--dark-bg);
                flex-direction: column;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0,0,0,0.3);
            }
            .main-nav.active ul {
                display: flex;
            }
            .header-content {
                flex-wrap: wrap;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .btn {
                align-self: stretch;
            }
        }
        @keyframes webSpin {
            0% { background-position: 0 0; }
            100% { background-position: 100px 100px; }
        }
        .web-bg {
            background-image: 
                linear-gradient(to right, var(--spider-web) 1px, transparent 1px),
                linear-gradient(to bottom, var(--spider-web) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: webSpin 20s linear infinite;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(255,217,0,0.3) 0%, rgba(255,217,0,0) 100%);
            padding: 2px 5px;
            border-radius: 3px;
        }
