* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --spider-red: #e62429;
            --spider-blue: #235b7c;
            --spider-black: #111;
            --spider-white: #f5f5f5;
            --accent-yellow: #ffd700;
            --spider-grey: #333;
            --gradient-spider: linear-gradient(135deg, var(--spider-red) 0%, var(--spider-blue) 100%);
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: var(--spider-white);
            background-color: var(--spider-black);
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(230, 36, 41, 0.05) 0%, transparent 20%),
                radial-gradient(circle at 90% 80%, rgba(35, 91, 124, 0.05) 0%, transparent 20%);
            max-width: 1400px;
            margin: 0 auto;
            overflow-x: hidden;
        }
        .site-header {
            background-color: rgba(17, 17, 17, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 3px solid var(--spider-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 2rem;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-family: 'Comic Sans MS', cursive, sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            text-decoration: none;
            background: var(--gradient-spider);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            text-shadow: 0 0 15px var(--spider-red);
            transition: text-shadow 0.3s ease;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: var(--spider-white);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: var(--spider-red);
            color: var(--spider-black);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--spider-white);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: rgba(51, 51, 51, 0.7);
            font-size: 0.9rem;
            border-bottom: 1px solid var(--spider-grey);
        }
        .breadcrumb a {
            color: var(--accent-yellow);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 0.5rem;
        }
        .search-container {
            padding: 2rem;
            background: rgba(35, 91, 124, 0.1);
            border-radius: 10px;
            margin: 2rem;
            border: 1px solid var(--spider-blue);
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--spider-red);
            border-right: none;
            border-radius: 50px 0 0 50px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--spider-white);
            font-size: 1rem;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-button {
            padding: 1rem 2rem;
            background: var(--gradient-spider);
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.2s ease;
        }
        .search-button:hover {
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
            padding: 2rem;
        }
        @media (max-width: 1024px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(30, 30, 30, 0.8);
            border-radius: 15px;
            padding: 3rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid var(--spider-grey);
        }
        article h1 {
            font-size: 2.8rem;
            color: var(--spider-red);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(230, 36, 41, 0.5);
        }
        article h2 {
            font-size: 2rem;
            color: var(--accent-yellow);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed var(--spider-blue);
        }
        article h3 {
            font-size: 1.5rem;
            color: #4ecdc4;
            margin: 2rem 0 1rem;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(230, 36, 41, 0.15);
            border-left: 4px solid var(--spider-red);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .info-box {
            background: rgba(35, 91, 124, 0.15);
            border: 2px solid var(--spider-blue);
            border-radius: 10px;
            padding: 1.5rem;
            margin: 2rem 0;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        .info-box i {
            color: var(--accent-yellow);
            font-size: 1.5rem;
            margin-top: 0.2rem;
        }
        .image-container {
            margin: 3rem 0;
            text-align: center;
            position: relative;
        }
        .featured-image {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid var(--spider-red);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
            transition: transform 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 0.8rem;
            font-size: 0.9rem;
        }
        .emoji-list {
            list-style: none;
            margin: 2rem 0;
        }
        .emoji-list li {
            padding: 0.8rem 0;
            display: flex;
            align-items: center;
            gap: 1rem;
        }
        .emoji-list li::before {
            content: "🕷️";
            font-size: 1.2rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: rgba(40, 40, 40, 0.9);
            border-radius: 10px;
            padding: 1.5rem;
            border: 1px solid var(--spider-grey);
        }
        .sidebar-widget h3 {
            color: var(--accent-yellow);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--spider-grey);
        }
        .link-list {
            list-style: none;
        }
        .link-list li {
            margin-bottom: 0.8rem;
        }
        .link-list a {
            color: #4ecdc4;
            text-decoration: none;
            display: block;
            padding: 0.5rem;
            border-radius: 4px;
            transition: all 0.2s ease;
        }
        .link-list a:hover {
            background: rgba(78, 205, 196, 0.2);
            padding-left: 1rem;
        }
        .interaction-section {
            margin-top: 4rem;
            padding: 2rem;
            background: rgba(30, 30, 30, 0.9);
            border-radius: 15px;
            border-top: 5px solid var(--spider-red);
        }
        .rating-form, .comment-form {
            margin-bottom: 3rem;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin: 1.5rem 0;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            color: #555;
            font-size: 2rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating label:hover,
        .star-rating label:hover ~ label,
        .star-rating input:checked ~ label {
            color: var(--accent-yellow);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--accent-yellow);
            font-weight: 600;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--spider-grey);
            border-radius: 8px;
            color: var(--spider-white);
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-button {
            background: var(--gradient-spider);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.8rem;
        }
        .submit-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(230, 36, 41, 0.4);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1rem;
            padding: 3rem 2rem;
            background: rgba(20, 20, 20, 0.95);
            border-top: 3px solid var(--spider-blue);
            border-bottom: 1px solid var(--spider-grey);
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .web-link {
            background: rgba(51, 51, 51, 0.5);
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: rgba(230, 36, 41, 0.2);
            transform: translateY(-3px);
        }
        .web-link a {
            color: var(--spider-white);
            text-decoration: none;
            font-weight: 600;
        }
        .site-footer {
            text-align: center;
            padding: 2rem;
            color: #aaa;
            font-size: 0.9rem;
            background-color: var(--spider-black);
        }
        .footer-links {
            margin: 1.5rem 0;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
        }
        .footer-links a {
            color: #4ecdc4;
            text-decoration: none;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                right: 2rem;
                top: 1.5rem;
            }
            .main-nav {
                width: 100%;
                display: none;
            }
            .main-nav.active {
                display: block;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
                padding-top: 1rem;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2rem;
            }
            .main-content {
                padding: 1rem;
            }
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(230, 36, 41, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(230, 36, 41, 0); }
            100% { box-shadow: 0 0 0 0 rgba(230, 36, 41, 0); }
        }
        .pulse {
            animation: pulse 2s infinite;
            border-radius: 50px;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
