        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            line-height: 1.8;
            color: #f5f5f5;
            background-color: #0f0a18;
            background-image: linear-gradient(135deg, #0f0a18 0%, #2a1742 100%);
            padding-bottom: 50px;
        }
        .navbar {
            background-color: rgba(15, 10, 24, 0.95);
            padding: 15px 30px;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #4a266a;
        }
        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #ff4d94;
            text-decoration: none;
            letter-spacing: 1px;
        }
        .logo span {
            color: #8a2be2;
        }
        .nav-links {
            display: flex;
            gap: 30px;
        }
        .nav-links a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            font-weight: 500;
        }
        .nav-links a:hover {
            color: #ff4d94;
            transform: translateY(-2px);
        }
        .btn {
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-size: 1rem;
        }
        .btn-download {
            background: linear-gradient(135deg, #ff4d94 0%, #8a2be2 100%);
            color: white;
        }
        .btn-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(138, 43, 226, 0.3);
        }
        .btn-login {
            background-color: transparent;
            border: 2px solid #8a2be2;
            color: #8a2be2;
            margin-left: 15px;
        }
        .btn-login:hover {
            background-color: rgba(138, 43, 226, 0.2);
            color: #ff4d94;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: #ff4d94;
        }
        .hero {
            max-width: 1400px;
            margin: 40px auto;
            padding: 0 30px;
            text-align: center;
            padding-top: 50px;
            padding-bottom: 80px;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, #ff4d94, #8a2be2, #00ffff);
            -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 40px;
            color: #d1d1d1;
        }
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: grid;
            grid-template-columns: 1fr;
            gap: 60px;
        }
        .section {
            background-color: rgba(25, 18, 41, 0.6);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(138, 43, 226, 0.3);
        }
        .section h2 {
            font-size: 2.2rem;
            margin-bottom: 30px;
            color: #ff4d94;
            border-bottom: 2px solid #8a2be2;
            padding-bottom: 10px;
        }
        .section h3 {
            font-size: 1.6rem;
            margin: 30px 0 15px;
            color: #00ffff;
        }
        .section p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #e6e6e6;
        }
        .section ul, .section ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        .section li {
            margin-bottom: 10px;
            color: #d1d1d1;
        }
        .highlight {
            background-color: rgba(138, 43, 226, 0.2);
            border-left: 4px solid #ff4d94;
            padding: 15px 20px;
            border-radius: 0 8px 8px 0;
            margin: 30px 0;
        }
        .highlight p {
            margin-bottom: 0;
            font-weight: 500;
            color: #f0f0f0;
        }
        .media-container {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
            justify-content: center;
        }
        .media-item {
            flex: 1 1 300px;
            max-width: 500px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }
        .media-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }
        .media-item img:hover {
            transform: scale(1.03);
        }
        .media-item figcaption {
            padding: 15px;
            background-color: rgba(15, 10, 24, 0.8);
            text-align: center;
            color: #d1d1d1;
            font-size: 0.95rem;
        }
        .quote {
            font-style: italic;
            font-size: 1.1rem;
            color: #b3b3ff;
            margin: 30px 0;
            padding: 0 20px;
            border-left: 3px solid #ff4d94;
        }
        .tabs {
            display: flex;
            gap: 10px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .tab-btn {
            padding: 10px 20px;
            background-color: rgba(138, 43, 226, 0.2);
            border: 1px solid #8a2be2;
            border-radius: 30px;
            color: #e0e0e0;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .tab-btn.active {
            background-color: #8a2be2;
            color: white;
        }
        .tab-content {
            display: none;
        }
        .tab-content.active {
            display: block;
        }
        .characters-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin: 30px 0;
        }
        .character-card {
            background-color: rgba(15, 10, 24, 0.7);
            border-radius: 12px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(255, 77, 148, 0.2);
        }
        .character-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 77, 148, 0.2);
        }
        .character-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .character-info {
            padding: 20px;
        }
        .character-info h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #00ffff;
        }
        .character-role {
            color: #ff4d94;
            font-weight: 500;
            margin-bottom: 10px;
            font-size: 0.95rem;
        }
        .bottom-section {
            max-width: 1400px;
            margin: 60px auto 0;
            padding: 0 30px;
        }
        .categories-tags {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }
        @media (max-width: 768px) {
            .categories-tags {
                grid-template-columns: 1fr;
            }
        }
        .category-list, .tag-list {
            background-color: rgba(25, 18, 41, 0.6);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(138, 43, 226, 0.3);
        }
        .category-list h3, .tag-list h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: #00ffff;
        }
        .category-links, .tag-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .category-links a, .tag-links a {
            color: #d1d1d1;
            text-decoration: none;
            padding: 8px 15px;
            border-radius: 20px;
            background-color: rgba(138, 43, 226, 0.2);
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .category-links a:hover, .tag-links a:hover {
            background-color: #8a2be2;
            color: white;
            transform: translateY(-2px);
        }
        .recommendation {
            background: linear-gradient(135deg, #2a1742 0%, #0f0a18 100%);
            border-radius: 15px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 77, 148, 0.3);
            text-align: center;
        }
        .recommendation h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #ff4d94;
        }
        .recommendation p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #e0e0e0;
        }
        .copyright {
            text-align: center;
            padding: 30px;
            background-color: rgba(15, 10, 24, 0.9);
            border-radius: 15px;
            color: #999;
            font-size: 0.95rem;
        }
        .copyright a {
            color: #8a2be2;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .copyright a:hover {
            color: #ff4d94;
        }
        @media (max-width: 1024px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            .section h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: rgba(15, 10, 24, 0.98);
                padding: 20px;
                gap: 15px;
                border-bottom: 1px solid #4a266a;
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .section {
                padding: 30px 20px;
            }
            .section h2 {
                font-size: 1.8rem;
            }
            .section h3 {
                font-size: 1.4rem;
            }
            .characters-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            .btn {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
            .container {
                padding: 0 15px;
            }
            .recommendation {
                padding: 30px 15px;
            }
        }
        img {
            loading: lazy;
        }
        .section {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s ease forwards;
        }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .section:nth-child(1) { animation-delay: 0.1s; }
        .section:nth-child(2) { animation-delay: 0.2s; }
        .section:nth-child(3) { animation-delay: 0.3s; }
        .section:nth-child(4) { animation-delay: 0.4s; }
        .section:nth-child(5) { animation-delay: 0.5s; }
        .section:nth-child(6) { animation-delay: 0.6s; }
        .section:nth-child(7) { animation-delay: 0.7s; }
        .section:nth-child(8) { animation-delay: 0.8s; }
