        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0c141c;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #80c1ff;
            text-decoration: underline;
        }
        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, #1a2b3d 0%, #0c141c 100%);
            border-bottom: 2px solid #2a4a6e;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffd166, #ff9e6d);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            text-decoration: none;
        }
        .breadcrumb {
            margin-top: 10px;
            font-size: 0.9rem;
            color: #a0a0a0;
        }
        .breadcrumb a {
            color: #a0a0a0;
        }
        .breadcrumb a:hover {
            color: #4da6ff;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(77, 166, 255, 0.1);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #ffd166;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a2b3d;
            padding: 1rem;
            border-radius: 5px;
            margin-top: 1rem;
            border: 1px solid #2a4a6e;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 0.8rem;
            border-bottom: 1px solid #2a4a6e;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .search-bar {
            margin: 2rem auto;
            max-width: 600px;
            display: flex;
            border-radius: 30px;
            overflow: hidden;
            border: 2px solid #2a4a6e;
            background: #1a2b3d;
        }
        .search-bar input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .search-bar button {
            background: linear-gradient(to right, #2a4a6e, #4da6ff);
            color: white;
            border: none;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-bar button:hover {
            background: linear-gradient(to right, #4da6ff, #2a4a6e);
        }
        main {
            padding: 2rem 0;
            background-color: #111a24;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
            margin-bottom: 2rem;
        }
        article {
            padding: 0 2rem;
        }
        h1 {
            font-size: 2.8rem;
            color: #ffd166;
            margin-bottom: 1.5rem;
            border-left: 5px solid #4da6ff;
            padding-left: 15px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #4da6ff;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a4a6e;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff9e6d;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #a0d2ff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.2rem;
            background: rgba(42, 74, 110, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 5px solid #ffd166;
        }
        .highlight {
            background-color: rgba(255, 209, 102, 0.1);
            padding: 1.5rem;
            border-radius: 8px;
            border-left: 4px solid #ffd166;
            margin: 1.5rem 0;
        }
        .character-image {
            float: right;
            margin: 0 0 1.5rem 2rem;
            max-width: 400px;
            border-radius: 10px;
            border: 3px solid #4da6ff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.7);
        }
        .content-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .content-links a {
            background: rgba(42, 74, 110, 0.5);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .content-links a:hover {
            background: rgba(77, 166, 255, 0.3);
            transform: translateY(-5px);
            text-decoration: none;
        }
        .last-updated {
            text-align: right;
            font-style: italic;
            color: #a0a0a0;
            margin-top: 3rem;
            padding-top: 1rem;
            border-top: 1px dashed #2a4a6e;
        }
        .user-interaction {
            background-color: #1a2b3d;
            padding: 2rem;
            border-radius: 10px;
            margin: 3rem 0;
            border: 1px solid #2a4a6e;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .comment-box textarea, .score-box select, .score-box button {
            width: 100%;
            padding: 1rem;
            margin-top: 0.5rem;
            border-radius: 5px;
            border: 1px solid #2a4a6e;
            background-color: #0c141c;
            color: #e0e0e0;
            font-size: 1rem;
        }
        .comment-box button, .score-box button {
            background: linear-gradient(to right, #2a4a6e, #4da6ff);
            color: white;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
            margin-top: 1rem;
        }
        .comment-box button:hover, .score-box button:hover {
            background: linear-gradient(to right, #4da6ff, #2a4a6e);
        }
        .stars {
            display: flex;
            gap: 5px;
            margin-top: 0.5rem;
        }
        .stars i {
            color: #ffd166;
            cursor: pointer;
            font-size: 1.5rem;
            transition: transform 0.2s;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        footer {
            background-color: #0c141c;
            padding: 2rem 0;
            border-top: 2px solid #2a4a6e;
            text-align: center;
        }
        friend-link {
            display: block;
            margin: 1rem 0;
        }
        friend-link a {
            display: inline-block;
            margin: 0 1rem;
            padding: 0.5rem 1rem;
            background: rgba(42, 74, 110, 0.5);
            border-radius: 5px;
        }
        .copyright {
            margin-top: 2rem;
            color: #a0a0a0;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            .character-image {
                float: none;
                margin: 1rem auto;
                max-width: 100%;
            }
            .content-links {
                grid-template-columns: 1fr;
            }
            .interaction-grid {
                grid-template-columns: 1fr;
            }
            article {
                padding: 0 1rem;
            }
        }
