        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c1a2d 0%, #1a2b3c 100%);
            color: #e0e7ff;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
        }
        header {
            background: rgba(12, 26, 45, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.5rem 2rem;
            border-bottom: 2px solid #1e88e5;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            background: linear-gradient(90deg, #1e88e5, #4fc3f7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 4px 8px rgba(30, 136, 229, 0.3);
        }
        .my-logo:hover {
            transform: scale(1.05);
        }
        nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .nav-links {
            display: flex;
            gap: 1.8rem;
            list-style: none;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            background: rgba(30, 136, 229, 0.1);
        }
        .nav-links a:hover {
            background: rgba(30, 136, 229, 0.3);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4fc3f7;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background: rgba(26, 43, 60, 0.7);
            font-size: 0.95rem;
            border-bottom: 1px solid #2c3e50;
        }
        .breadcrumb a::after {
            content: " › ";
            margin: 0 10px;
            color: #4fc3f7;
        }
        .breadcrumb a:last-child::after {
            content: "";
        }
        main {
            flex: 1;
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            width: 100%;
        }
        article {
            background: rgba(18, 32, 47, 0.8);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 3.2rem;
            color: #4fc3f7;
            margin-bottom: 1.5rem;
            text-align: center;
            border-bottom: 3px solid #1e88e5;
            padding-bottom: 1rem;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.4rem;
            color: #29b6f6;
            margin: 2.5rem 0 1.2rem;
            padding-left: 0.8rem;
            border-left: 6px solid #1e88e5;
        }
        h3 {
            font-size: 1.8rem;
            color: #81d4fa;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #b3e5fc;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
            line-height: 1.9;
        }
        .highlight {
            background: rgba(30, 136, 229, 0.15);
            border-left: 5px solid #1e88e5;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 12px 12px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .search-box, .comment-box, .rating-box {
            background: rgba(26, 43, 60, 0.9);
            border-radius: 12px;
            padding: 1.8rem;
            margin: 2.5rem 0;
            border: 2px solid #2c3e50;
            transition: transform 0.3s ease;
        }
        .search-box:hover, .comment-box:hover, .rating-box:hover {
            transform: translateY(-5px);
            border-color: #1e88e5;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 1.2rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            border-radius: 8px;
            border: 1px solid #2c3e50;
            background: #1a2b3c;
            color: #e0e7ff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4fc3f7;
            box-shadow: 0 0 8px rgba(79, 195, 247, 0.5);
        }
        button {
            padding: 0.9rem 2rem;
            background: linear-gradient(90deg, #1e88e5, #4fc3f7);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        button:hover {
            background: linear-gradient(90deg, #4fc3f7, #1e88e5);
            box-shadow: 0 6px 12px rgba(30, 136, 229, 0.4);
        }
        .stars {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .stars i {
            color: #ffb74d;
            font-size: 1.8rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i:hover {
            color: #ff9800;
        }
        footer {
            background: #0c1a2d;
            padding: 2.5rem 2rem;
            border-top: 2px solid #1e88e5;
            text-align: center;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .friend-links a {
            background: rgba(30, 136, 229, 0.1);
            padding: 0.7rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
        }
        .friend-links a:hover {
            background: rgba(30, 136, 229, 0.3);
        }
        .copyright {
            color: #90a4ae;
            font-size: 0.95rem;
            border-top: 1px solid #2c3e50;
            padding-top: 1.5rem;
            margin-top: 1.5rem;
        }
        @media (max-width: 768px) {
            header {
                padding: 1rem;
                flex-direction: column;
                align-items: flex-start;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                gap: 0.8rem;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 1rem;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 2rem;
            }
            article {
                padding: 1.5rem;
            }
            .friend-links {
                flex-direction: column;
                align-items: center;
            }
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2.5rem 0;
        }
        .character-card {
            background: rgba(30, 136, 229, 0.1);
            border-radius: 12px;
            padding: 1.5rem;
            border: 1px solid #2c3e50;
            transition: all 0.3s ease;
        }
        .character-card:hover {
            background: rgba(30, 136, 229, 0.2);
            border-color: #4fc3f7;
            transform: scale(1.03);
        }
        .update-time {
            text-align: right;
            font-style: italic;
            color: #81d4fa;
            margin-bottom: 1.5rem;
        }
