        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #f0f0f0;
            background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%);
            background-attachment: fixed;
            min-height: 100vh;
            position: relative;
        }
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,50 L100,50 M50,0 L50,100" stroke="%23002233" stroke-width="0.5"/>');
            z-index: -1;
            opacity: 0.3;
        }
        a {
            color: #ff4655;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ff7a85;
            text-shadow: 0 0 8px rgba(255, 70, 85, 0.7);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        h1, h2, h3, h4, h5 {
            font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
            color: #fff;
            margin-bottom: 1rem;
            line-height: 1.2;
        }
        h1 {
            font-size: 3.5rem;
            background: linear-gradient(90deg, #ff4655, #ff9a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.5rem;
            color: #ff9a00;
            border-left: 5px solid #ff4655;
            padding-left: 15px;
            margin-top: 2rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #4ecdc4;
            margin-top: 1.5rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #ccc;
            margin-bottom: 2rem;
        }
        .highlight {
            background-color: rgba(255, 70, 85, 0.15);
            border-left: 4px solid #ff4655;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        header {
            background-color: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-family: 'Impact', Haettenschweiler, 'Arial Narrow Bold', sans-serif;
            font-size: 2.5rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 3px;
            background: linear-gradient(45deg, #ff4655, #ff9a00);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo a {
            background: none;
            text-shadow: 0 0 10px rgba(255, 70, 85, 0.5);
        }
        .logo i {
            font-size: 2rem;
            -webkit-background-clip: initial;
            -webkit-text-fill-color: initial;
            color: #ff4655;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 25px;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #ff4655, #ff9a00);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: transparent;
            border: none;
            padding: 5px;
            z-index: 1001;
        }
        .hamburger span {
            height: 3px;
            width: 30px;
            background: linear-gradient(90deg, #ff4655, #ff9a00);
            margin: 4px 0;
            border-radius: 2px;
            transition: 0.4s;
        }
        .mobile-nav {
            display: none;
            position: fixed;
            top: 0;
            right: -100%;
            width: 280px;
            height: 100vh;
            background-color: rgba(15, 15, 25, 0.98);
            backdrop-filter: blur(15px);
            padding: 100px 30px 30px;
            transition: right 0.5s ease;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.7);
            z-index: 1000;
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 20px;
        }
        .mobile-nav a {
            font-size: 1.3rem;
            font-weight: 600;
            display: block;
            padding: 10px 15px;
            border-radius: 5px;
            background-color: rgba(255, 70, 85, 0.1);
        }
        .mobile-nav a:hover {
            background-color: rgba(255, 70, 85, 0.3);
        }
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 999;
        }
        .overlay.active {
            display: block;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(20, 20, 30, 0.8);
            font-size: 0.9rem;
            margin-bottom: 30px;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #ff9a00;
        }
        .breadcrumb a {
            color: #ccc;
        }
        .breadcrumb a:hover {
            color: #ff4655;
        }
        .search-form {
            max-width: 600px;
            margin: 30px auto 50px;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .search-input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1.1rem;
            outline: none;
        }
        .search-input::placeholder {
            color: #aaa;
        }
        .search-button {
            background: linear-gradient(90deg, #ff4655, #ff9a00);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #ff9a00, #ff4655);
            padding: 0 40px;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        @media (min-width: 992px) {
            .content-grid {
                grid-template-columns: 2.5fr 1fr;
            }
        }
        .main-content {
            padding-right: 20px;
        }
        .sidebar {
            background-color: rgba(25, 25, 40, 0.7);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid rgba(255, 70, 85, 0.2);
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            color: #ff9a00;
            margin-top: 0;
            padding-bottom: 10px;
            border-bottom: 2px solid #ff4655;
        }
        .sidebar ul {
            list-style: none;
        }
        .sidebar li {
            margin-bottom: 12px;
            padding-left: 20px;
            position: relative;
        }
        .sidebar li::before {
            content: '▶';
            color: #ff4655;
            position: absolute;
            left: 0;
            font-size: 0.8rem;
        }
        .character-table {
            width: 100%;
            border-collapse: collapse;
            margin: 2rem 0;
            background-color: rgba(40, 40, 60, 0.5);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }
        .character-table th {
            background: linear-gradient(90deg, #ff4655, #ff9a00);
            color: white;
            padding: 15px;
            text-align: left;
            font-size: 1.1rem;
        }
        .character-table td {
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .character-table tr:hover {
            background-color: rgba(255, 70, 85, 0.1);
        }
        .tier-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: bold;
        }
        .tier-s { background-color: #ff4655; color: white; }
        .tier-a { background-color: #ff9a00; color: black; }
        .tier-b { background-color: #4ecdc4; color: black; }
        .tier-c { background-color: #6a5acd; color: white; }
        .interactive-section {
            background-color: rgba(30, 30, 45, 0.8);
            border-radius: 15px;
            padding: 30px;
            margin-top: 50px;
            border: 1px solid rgba(255, 154, 0, 0.3);
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #ff9a00;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 70, 85, 0.5);
            border-radius: 8px;
            color: #fff;
            font-size: 1rem;
            outline: none;
            transition: border 0.3s;
        }
        .form-control:focus {
            border-color: #ff9a00;
            box-shadow: 0 0 10px rgba(255, 154, 0, 0.5);
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            gap: 5px;
        }
        .rating input {
            display: none;
        }
        .rating label {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating label:hover,
        .rating label:hover ~ label,
        .rating input:checked ~ label {
            color: #ff9a00;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff4655, #ff9a00);
            color: white;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            display: inline-block;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 70, 85, 0.4);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            padding: 50px 0 30px;
        }
        .web-link {
            background-color: rgba(40, 40, 60, 0.7);
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: rgba(255, 70, 85, 0.2);
        }
        .web-link a {
            color: #4ecdc4;
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        footer {
            background-color: rgba(10, 10, 15, 0.98);
            padding: 40px 0 20px;
            text-align: center;
            border-top: 3px solid #ff4655;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.5rem; }
            .lead { font-size: 1.1rem; }
            .desktop-nav { display: none; }
            .hamburger { display: flex; }
            .logo { font-size: 2rem; }
            .search-form { flex-direction: column; border-radius: 15px; }
            .search-input, .search-button { width: 100%; border-radius: 0; padding: 18px; }
            .content-grid { grid-template-columns: 1fr; gap: 30px; }
            .main-content { padding-right: 0; }
            .sidebar { position: static; }
            .character-table { font-size: 0.9rem; }
            .character-table th, .character-table td { padding: 10px; }
        }
