        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #f8f9fa;
            color: #333;
            line-height: 1.7;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            text-decoration: none;
            color: #4a90e2;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #e2542d;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #4a90e2, #2e5aa7);
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(74, 144, 226, 0.3);
        }
        .btn:hover {
            background: linear-gradient(135deg, #e2542d, #c0392b);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(226, 84, 45, 0.4);
        }
        header {
            background: linear-gradient(135deg, #1a2a4a, #2c3e50);
            color: white;
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo a {
            font-size: 2rem;
            font-weight: 800;
            color: #4a90e2;
            text-shadow: 2px 2px 0 #e2542d;
            letter-spacing: 1px;
        }
        .my-logo span {
            color: #fff;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav a {
            color: #ecf0f1;
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: #e2542d;
            bottom: 0;
            left: 0;
            transition: width 0.3s;
        }
        nav a:hover:after, nav a.active:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: white;
        }
        .breadcrumb {
            background: #e8f4fc;
            padding: 12px 20px;
            border-radius: 5px;
            margin: 20px 0;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #4a90e2;
        }
        .breadcrumb span {
            color: #7f8c8d;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        article {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            margin-bottom: 30px;
        }
        h1 {
            color: #1a2a4a;
            font-size: 2.8rem;
            margin-bottom: 20px;
            line-height: 1.2;
            border-bottom: 5px solid #4a90e2;
            padding-bottom: 15px;
        }
        h2 {
            color: #2c3e50;
            font-size: 2.2rem;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #e2542d;
        }
        h3 {
            color: #4a90e2;
            font-size: 1.8rem;
            margin: 30px 0 15px;
        }
        h4 {
            color: #2c3e50;
            font-size: 1.4rem;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        .intro {
            font-size: 1.3rem;
            color: #5a6268;
            background: #f8f9fa;
            padding: 25px;
            border-left: 5px solid #4a90e2;
            border-radius: 0 10px 10px 0;
            margin-bottom: 30px;
        }
        .highlight {
            background: linear-gradient(120deg, #ffefba 0%, #ffefba 100%);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #e2542d;
            margin: 25px 0;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .character-card {
            background: #f8f9fa;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0,0,0,0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .character-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .character-img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-bottom: 5px solid #4a90e2;
        }
        .character-info {
            padding: 25px;
        }
        .search-box, .comment-form, .rating-form {
            background: #f8f9fa;
            padding: 25px;
            border-radius: 15px;
            margin: 40px 0;
            border: 2px solid #e1e8ed;
        }
        .search-box h3, .comment-form h3, .rating-form h3 {
            margin-top: 0;
        }
        form {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid #ddd;
            border-radius: 10px;
            font-size: 1rem;
            flex: 1;
            min-width: 250px;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            border-color: #4a90e2;
            outline: none;
        }
        textarea {
            min-height: 150px;
            width: 100%;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 2rem;
            color: #ffc107;
            margin: 15px 0;
        }
        .star {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star:hover {
            transform: scale(1.2);
        }
        footer {
            background: #1a2a4a;
            color: #ecf0f1;
            padding: 50px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h4 {
            color: #4a90e2;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #bdc3c7;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #e2542d;
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin: 15px 0;
            padding: 12px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(255,255,255,0.1);
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #2c3e50;
            color: #95a5a6;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .header-container { flex-direction: column; align-items: flex-start; }
            .my-logo { margin-bottom: 15px; }
            nav ul { flex-wrap: wrap; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #2c3e50;
                padding: 20px;
                border-radius: 10px;
                margin-top: 15px;
            }
            nav ul.show { display: flex; }
            .character-grid { grid-template-columns: 1fr; }
            article { padding: 25px; }
            .intro { font-size: 1.1rem; padding: 20px; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .container { padding: 0 15px; }
            form { flex-direction: column; align-items: stretch; }
            input, textarea, select { min-width: 100%; }
        }
