        * {
            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: #e0d3c1;
            background-color: #0f0c0a;
            background-image: linear-gradient(to bottom, #1a1512 0%, #0f0c0a 100%);
            padding-top: 70px;
        }
        a {
            color: #d4af37;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #ffdd5c;
            text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(15, 12, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #3a2e25;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo a {
            font-family: 'Times New Roman', serif;
            font-size: 2.2rem;
            font-weight: bold;
            color: #d4af37;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px #000;
        }
        .logo a:hover {
            color: #ffdd5c;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 5px 0;
            position: relative;
        }
        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: #d4af37;
            transition: width 0.3s ease;
        }
        nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #d4af37;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #1a1512;
            border-bottom: 1px solid #2a221d;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin: 0 10px;
            color: #7a6a5a;
        }
        .breadcrumb a {
            color: #b09a7a;
        }
        .breadcrumb a:hover {
            color: #d4af37;
        }
        .search-container {
            background: linear-gradient(to right, #2a221d, #1a1512);
            padding: 30px 0;
            margin-bottom: 40px;
            border-radius: 8px;
            text-align: center;
        }
        .search-container h2 {
            margin-bottom: 20px;
            color: #e0d3c1;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #3a2e25;
            background-color: #0f0c0a;
            color: #e0d3c1;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-input:focus {
            outline: none;
            border-color: #d4af37;
        }
        .search-button {
            background-color: #d4af37;
            color: #0f0c0a;
            border: none;
            padding: 0 25px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            font-weight: bold;
            font-size: 1rem;
            transition: background-color 0.3s;
        }
        .search-button:hover {
            background-color: #ffdd5c;
        }
        main {
            padding: 30px 0 50px;
        }
        article {
            background-color: rgba(26, 21, 18, 0.7);
            border-radius: 10px;
            padding: 40px;
            margin-bottom: 40px;
            border: 1px solid #3a2e25;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h1 {
            font-size: 2.8rem;
            color: #d4af37;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
        }
        h2 {
            font-size: 2rem;
            color: #c9b18a;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a2e25;
        }
        h3 {
            font-size: 1.6rem;
            color: #b09a7a;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 1.5em;
            text-align: justify;
            font-size: 1.1rem;
        }
        strong {
            color: #d4af37;
            font-weight: bold;
        }
        em {
            color: #b09a7a;
            font-style: italic;
        }
        .intro {
            font-size: 1.2rem;
            color: #e0d3c1;
            background-color: #1a1512;
            padding: 25px;
            border-left: 5px solid #d4af37;
            border-radius: 5px;
            margin-bottom: 30px;
        }
        .character-card {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            background: linear-gradient(135deg, #1a1512 0%, #2a221d 100%);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid #3a2e25;
            align-items: start;
        }
        .character-card img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .character-info h3 {
            margin-top: 0;
        }
        .stats {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 15px;
        }
        .stat {
            background-color: #0f0c0a;
            padding: 10px 15px;
            border-radius: 5px;
            border-left: 4px solid #d4af37;
        }
        .quote {
            font-style: italic;
            color: #b09a7a;
            border-left: 4px solid #7a6a5a;
            padding-left: 20px;
            margin: 25px 0;
            font-size: 1.15rem;
        }
        .highlight-box {
            background: linear-gradient(to right, #2a221d, #1a1512);
            border: 1px solid #d4af37;
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }
        .highlight-box h3 {
            color: #ffdd5c;
            margin-top: 0;
        }
        .internal-link {
            color: #9bc6e6;
            border-bottom: 1px dotted #9bc6e6;
        }
        .internal-link:hover {
            color: #c2e0ff;
            border-bottom: 1px solid #c2e0ff;
        }
        .user-interaction {
            background-color: #1a1512;
            padding: 40px;
            border-radius: 10px;
            margin-top: 50px;
            border: 1px solid #3a2e25;
        }
        .user-interaction h2 {
            text-align: center;
        }
        .form-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .form-container {
            background-color: #0f0c0a;
            padding: 25px;
            border-radius: 8px;
            border: 1px solid #3a2e25;
        }
        .form-container h3 {
            margin-top: 0;
            color: #d4af37;
        }
        .form-group {
            margin-bottom: 20px;
        }
        label {
            display: block;
            margin-bottom: 8px;
            color: #b09a7a;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            background-color: #1a1512;
            border: 1px solid #3a2e25;
            border-radius: 5px;
            color: #e0d3c1;
            font-size: 1rem;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: #d4af37;
        }
        .submit-button {
            background-color: #d4af37;
            color: #0f0c0a;
            border: none;
            padding: 12px 30px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.05rem;
            transition: background-color 0.3s;
        }
        .submit-button:hover {
            background-color: #ffdd5c;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin: 15px 0;
        }
        .star {
            font-size: 1.8rem;
            color: #3a2e25;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffdd5c;
        }
        .footer-links {
            background-color: #0f0c0a;
            padding: 40px 0;
            border-top: 1px solid #3a2e25;
            border-bottom: 1px solid #3a2e25;
        }
        .web-link {
            display: inline-block;
            margin: 10px 15px 10px 0;
            padding: 10px 20px;
            background-color: #1a1512;
            border-radius: 5px;
            border: 1px solid #3a2e25;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background-color: #2a221d;
            border-color: #d4af37;
            transform: translateY(-3px);
        }
        footer {
            padding: 30px 0;
            text-align: center;
            color: #7a6a5a;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid #3a2e25;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            .character-card {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            body { padding-top: 60px; }
            .hamburger {
                display: block;
            }
            nav ul {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: rgba(15, 12, 10, 0.98);
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                border-top: 1px solid #3a2e25;
            }
            nav ul.active {
                display: flex;
            }
            nav a {
                display: block;
                padding: 10px;
            }
            .header-content {
                padding: 12px 0;
            }
            article, .user-interaction {
                padding: 25px;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.5rem; }
            .search-form {
                flex-direction: column;
            }
            .search-input, .search-button {
                border-radius: 5px;
                width: 100%;
            }
            .search-button {
                margin-top: 10px;
                padding: 15px;
            }
        }
