        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a0a;
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a0000, #330000);
            border-bottom: 3px solid #cc0000;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            color: #fff;
            text-shadow: 2px 2px 5px #cc0000;
            letter-spacing: 2px;
        }
        .logo span {
            color: #cc0000;
        }
        .search-box {
            display: flex;
            align-items: center;
            background: #220000;
            border-radius: 30px;
            padding: 8px 15px;
            width: 300px;
        }
        .search-box input {
            background: transparent;
            border: none;
            outline: none;
            color: #fff;
            width: 100%;
            padding: 5px;
        }
        .search-box button {
            background: #cc0000;
            border: none;
            border-radius: 50%;
            width: 36px;
            height: 36px;
            color: white;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ff3333;
        }
        nav {
            margin-top: 15px;
        }
        .desktop-nav {
            display: flex;
            list-style: none;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        .desktop-nav li a {
            padding: 10px 15px;
            font-weight: 600;
            border-radius: 5px;
            position: relative;
        }
        .desktop-nav li a:hover {
            color: #cc0000;
            background: rgba(204,0,0,0.1);
        }
        .desktop-nav li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #cc0000;
            transition: width 0.3s;
        }
        .desktop-nav li a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #fff;
        }
        #menu-toggle {
            display: none;
        }
        .mobile-nav {
            display: none;
            list-style: none;
            background: #330000;
            padding: 20px;
            border-radius: 10px;
            margin-top: 15px;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav li a {
            display: block;
            padding: 10px;
            border-bottom: 1px solid #550000;
        }
        .mobile-nav li a:hover {
            color: #cc0000;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #cc0000;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        main {
            padding: 30px 0;
            background: #111;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background: #1a1a1a;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #fff;
            margin-bottom: 20px;
            text-shadow: 0 0 10px #cc0000;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            color: #ff6666;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #cc0000;
        }
        h3 {
            font-size: 1.6rem;
            color: #ff9999;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            text-align: justify;
            font-size: 1.1rem;
        }
        .highlight {
            background: #330000;
            padding: 20px;
            border-left: 5px solid #cc0000;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight strong {
            color: #ff6666;
            font-size: 1.2rem;
        }
        .character-img {
            width: 100%;
            border-radius: 10px;
            margin: 25px auto;
            border: 3px solid #cc0000;
            box-shadow: 0 5px 15px rgba(204,0,0,0.3);
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 5px;
        }
        .bold {
            font-weight: 900;
            color: #ffcccc;
        }
        .spacing-control {
            margin-top: 25px;
            margin-bottom: 25px;
        }
        .sidebar {
            background: #1a1a1a;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            align-self: start;
            position: sticky;
            top: 150px;
        }
        .sidebar h3 {
            color: #ff6666;
            margin-top: 0;
        }
        .user-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }
        .user-form input,
        .user-form textarea,
        .user-form select {
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #555;
            background: #222;
            color: #fff;
            font-size: 1rem;
        }
        .user-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .user-form button {
            padding: 12px;
            background: #cc0000;
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .user-form button:hover {
            background: #ff3333;
        }
        .rating {
            display: flex;
            justify-content: space-around;
            margin: 15px 0;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating label:hover,
        .rating input:checked ~ label {
            color: #ffcc00;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 40px 0 20px;
        }
        @media (max-width: 768px) {
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            background: #220000;
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: #330000;
            transform: translateY(-5px);
        }
        .web-link a {
            color: #ff6666;
            font-weight: bold;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        footer {
            background: #000;
            padding: 30px 0 20px;
            text-align: center;
            border-top: 3px solid #cc0000;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                gap: 20px;
            }
            .search-box {
                width: 100%;
                max-width: 400px;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 20px;
                right: 20px;
            }
            #menu-toggle:checked ~ .mobile-nav {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .content-area, .sidebar {
                padding: 20px;
            }
        }
        button, .web-link, .desktop-nav li a {
            transition: all 0.3s ease;
        }
        .character-img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(204,0,0,0.5);
        }
        .user-form button:active {
            transform: scale(0.98);
        }
