        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background: linear-gradient(135deg, #0f1c2e 0%, #1a2b3c 100%);
            color: #e0e7ff;
            line-height: 1.7;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #6ab0ff;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #ffcc00;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(15, 28, 46, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a4365;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffcc00, #ff6b6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #6ab0ff;
            margin: 4px 0;
            border-radius: 2px;
            transition: 0.3s;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        nav ul li a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 12px;
            border-radius: 6px;
        }
        nav ul li a:hover {
            background: rgba(106, 176, 255, 0.15);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #a0aec0;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .search-bar {
            margin: 25px auto;
            max-width: 600px;
            display: flex;
        }
        .search-bar input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #4a5568;
            border-radius: 50px 0 0 50px;
            background: #1e2a3a;
            color: #e0e7ff;
            font-size: 1rem;
            outline: none;
        }
        .search-bar button {
            padding: 15px 30px;
            background: linear-gradient(90deg, #3182ce, #6ab0ff);
            border: none;
            border-radius: 0 50px 50px 0;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-bar button:hover {
            background: linear-gradient(90deg, #2c5282, #4299e1);
        }
        main {
            flex-grow: 1;
            padding: 30px 0;
        }
        article {
            background: rgba(26, 43, 60, 0.7);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
            border: 1px solid #2d3748;
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffcc00;
            text-shadow: 0 2px 10px rgba(255, 204, 0, 0.3);
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            margin: 40px 0 20px;
            color: #6ab0ff;
            padding-bottom: 10px;
            border-bottom: 2px solid #4a5568;
        }
        h3 {
            font-size: 1.5rem;
            margin: 30px 0 15px;
            color: #a3d9ff;
        }
        p {
            margin-bottom: 1.5em;
            font-size: 1.1rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255, 204, 0, 0.15), rgba(106, 176, 255, 0.15));
            border-left: 5px solid #ffcc00;
            padding: 20px;
            border-radius: 0 10px 10px 0;
            margin: 25px 0;
            font-weight: 600;
        }
        .tier-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .tier-card {
            background: #1e2a3a;
            border-radius: 15px;
            padding: 25px;
            border-top: 5px solid;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .tier-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        }
        .tier-s {
            border-color: #ff6b6b;
        }
        .tier-a {
            border-color: #ffcc00;
        }
        .tier-b {
            border-color: #4ecdc4;
        }
        .tier-c {
            border-color: #a3d9ff;
        }
        .tier-title {
            font-size: 1.8rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .character-list {
            list-style: none;
            padding-left: 0;
        }
        .character-list li {
            padding: 12px 15px;
            margin-bottom: 10px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-left: 4px solid;
        }
        .user-interaction {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid #4a5568;
        }
        .rating-section, .comment-section {
            background: #1e2a3a;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #4a5568;
            cursor: pointer;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffcc00;
        }
        form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        input, textarea, select {
            padding: 15px;
            border-radius: 10px;
            border: 1px solid #4a5568;
            background: #0f1c2e;
            color: #e0e7ff;
            font-size: 1rem;
        }
        textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .form-row {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .form-row .form-group {
            flex: 1;
            min-width: 200px;
        }
        button[type="submit"] {
            padding: 18px;
            background: linear-gradient(90deg, #38a169, #68d391);
            color: white;
            font-weight: bold;
            border: none;
            border-radius: 10px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s;
        }
        button[type="submit"]:hover {
            background: linear-gradient(90deg, #2f855a, #48bb78);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        .web-link {
            background: rgba(30, 42, 58, 0.8);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 1px solid #2d3748;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(42, 67, 101, 0.8);
            border-color: #6ab0ff;
        }
        footer {
            background: #0f1c2e;
            border-top: 2px solid #2a4365;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 30px;
        }
        .copyright {
            color: #a0aec0;
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid #2d3748;
            width: 100%;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(15, 28, 46, 0.98);
                position: absolute;
                top: 100%;
                left: 0;
                padding: 20px;
                border-top: 1px solid #2a4365;
            }
            nav ul.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            article {
                padding: 25px;
            }
            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .logo {
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .form-row {
                flex-direction: column;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .bold {
            font-weight: 800;
            color: #ffcc00;
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
