        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-1px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 40px 0;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2230 0%, #0f1419 100%);
            padding: 15px 0;
            border-bottom: 2px solid #2a3a5a;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Arial Black', sans-serif;
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
            -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 {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #b0bec5;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 1rem;
        }
        .main-nav a:hover,
        .main-nav a.active {
            background-color: rgba(77, 171, 247, 0.15);
            color: #4dabf7;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #e0e0e0;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #151e2b;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .breadcrumb a {
            color: #90caf9;
        }
        .breadcrumb span {
            color: #aaa;
            margin: 0 8px;
        }
        .hero {
            text-align: center;
            padding: 50px 20px;
            background: radial-gradient(circle at center, #1e2a3a 0%, #0f1419 100%);
            border-radius: 12px;
            margin-bottom: 40px;
            border: 1px solid #2a3a5a;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ffa726, #ff7043);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #cfd8dc;
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            position: relative;
        }
        .search-box input {
            width: 100%;
            padding: 18px 25px;
            border-radius: 50px;
            border: 2px solid #3949ab;
            background-color: #1c2536;
            color: #fff;
            font-size: 1.1rem;
            outline: none;
            transition: all 0.3s;
        }
        .search-box input:focus {
            border-color: #5c6bc0;
            box-shadow: 0 0 0 3px rgba(92, 107, 192, 0.3);
        }
        .search-box button {
            position: absolute;
            right: 8px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(90deg, #3949ab, #5c6bc0);
            color: white;
            border: none;
            padding: 14px 28px;
            border-radius: 50px;
            cursor: pointer;
            font-weight: bold;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #303f9f, #3949ab);
        }
        .main-content {
            background-color: #151e2b;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: #ffa726;
        }
        h2 {
            font-size: 2.3rem;
            margin: 2.5rem 0 1.5rem;
            color: #4ecdc4;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3a5a;
        }
        h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #45b7d1;
        }
        h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #ff9e80;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #cfd8dc;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 500;
            color: #bbdefb;
            line-height: 1.8;
        }
        strong {
            color: #ffcc80;
            font-weight: 700;
        }
        em {
            color: #ce93d8;
            font-style: italic;
        }
        blockquote {
            border-left: 4px solid #4dabf7;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #b0bec5;
            background-color: rgba(77, 171, 247, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        ul, ol {
            margin: 1.5rem 0 1.5rem 2rem;
            color: #cfd8dc;
        }
        li {
            margin-bottom: 0.8rem;
        }
        .character-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        .character-card {
            background: linear-gradient(145deg, #1c2536, #151e2b);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a3a5a;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }
        .character-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.6);
            border-color: #4dabf7;
        }
        .character-img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            border-bottom: 2px solid #2a3a5a;
        }
        .character-info {
            padding: 20px;
        }
        .character-name {
            font-size: 1.6rem;
            color: #ffa726;
            margin-bottom: 10px;
        }
        .weapons {
            display: flex;
            gap: 10px;
            margin: 15px 0;
            font-size: 0.9rem;
        }
        .weapon-tag {
            background-color: #3949ab;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: bold;
        }
        .rating-section,
        .comments-section {
            background-color: #1a2230;
            padding: 30px;
            border-radius: 12px;
            margin: 50px 0;
            border: 1px solid #2a3a5a;
        }
        .rating-form,
        .comment-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 600px;
            margin-top: 25px;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        label {
            font-weight: 600;
            color: #bbdefb;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #455a64;
            background-color: #0f1419;
            color: #fff;
            font-size: 1rem;
            transition: border 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #4dabf7;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            margin: 10px 0;
        }
        .star {
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00b894, #00a085);
            color: white;
            border: none;
            padding: 18px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #00a085, #008b74);
        }
        .related-links {
            background-color: rgba(30, 42, 58, 0.7);
            padding: 25px;
            border-radius: 10px;
            border-left: 5px solid #ffa726;
            margin: 40px 0;
        }
        .related-links h3 {
            color: #ffa726;
            margin-top: 0;
        }
        .related-links ul {
            list-style: none;
            margin: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .related-links li {
            margin: 0;
        }
        .related-links a {
            display: block;
            padding: 12px 20px;
            background-color: #1c2536;
            border-radius: 8px;
            border: 1px solid transparent;
        }
        .related-links a:hover {
            background-color: #252f40;
            border-color: #4dabf7;
        }
        .site-footer {
            background: linear-gradient(180deg, #0f1419 0%, #080b0f 100%);
            padding: 50px 0 20px;
            border-top: 2px solid #2a3a5a;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section h3 {
            color: #4ecdc4;
            font-size: 1.4rem;
            margin-bottom: 25px;
        }
        .footer-links a {
            display: block;
            margin-bottom: 12px;
            color: #b0bec5;
        }
        friend-link {
            display: inline-block;
            background-color: #1c2536;
            padding: 10px 20px;
            margin: 5px 10px 5px 0;
            border-radius: 6px;
            border: 1px solid #3949ab;
        }
        friend-link a {
            color: #90caf9;
            font-weight: bold;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a3a5a;
            color: #78909c;
            font-size: 0.9rem;
        }
        .last-updated {
            text-align: center;
            font-style: italic;
            color: #81c784;
            margin: 20px 0;
            font-size: 0.95rem;
        }
        @media (max-width: 992px) {
            .hero h1 { font-size: 2.7rem; }
            h2 { font-size: 2rem; }
            .character-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: #1a2230;
                flex-direction: column;
                padding: 40px 20px;
                transition: left 0.4s ease;
                border-right: 2px solid #2a3a5a;
            }
            .main-nav.active {
                left: 0;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 20px;
            }
            .header-content { padding: 0 15px; }
            .hero h1 { font-size: 2.2rem; }
            .hero p { font-size: 1.1rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .main-content { padding: 25px; }
            .footer-content { grid-template-columns: 1fr; text-align: center; }
            .related-links ul { flex-direction: column; }
        }
        @media (max-width: 480px) {
            .hero h1 { font-size: 1.9rem; }
            .search-box input { padding: 15px 20px; }
            .search-box button { padding: 12px 20px; }
            .character-grid { grid-template-columns: 1fr; }
            .character-name { font-size: 1.4rem; }
        }
