        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-dark: #0a1f3a;
            --primary-blue: #1a3f6d;
            --accent-gold: #c9a347;
            --accent-light: #e6d8a8;
            --text-light: #f5f5f5;
            --text-gray: #cccccc;
            --bg-section: #0e2a47;
            --border-color: #2a4a6e;
            --hover-glow: rgba(201, 163, 71, 0.3);
        }
        body {
            background-color: #081425;
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: var(--accent-light);
            text-shadow: 0 0 5px var(--hover-glow);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: linear-gradient(to bottom, var(--primary-dark), var(--primary-blue));
            border-bottom: 3px solid var(--accent-gold);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--accent-light);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
        }
        .logo a:hover {
            color: white;
        }
        #menu-toggle {
            display: none;
        }
        .menu-icon {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent-gold);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 1.5rem;
        }
        .main-nav a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .main-nav a:hover {
            background-color: var(--hover-glow);
        }
        .breadcrumb {
            margin-top: 1rem;
            width: 100%;
            order: 3;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        .breadcrumb li::after {
            content: "»";
            margin-left: 0.5rem;
            color: var(--text-gray);
        }
        .breadcrumb li:last-child::after {
            content: "";
        }
        main {
            padding: 2rem 0;
            background-color: #0a1829;
        }
        article {
            background-color: var(--bg-section);
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 2rem;
        }
        h1, h2, h3, h4 {
            color: var(--accent-light);
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            border-bottom: 2px solid var(--accent-gold);
            padding-bottom: 0.5rem;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            margin-top: 2.5rem;
            color: var(--accent-gold);
        }
        h3 {
            font-size: 1.8rem;
            margin-top: 2rem;
        }
        .meta {
            color: var(--text-gray);
            font-style: italic;
            margin-bottom: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        strong {
            color: var(--accent-light);
            font-weight: 700;
        }
        em {
            color: var(--accent-gold);
        }
        .search-section {
            background: rgba(10, 31, 58, 0.8);
            padding: 1.5rem;
            border-radius: 8px;
            margin: 2rem 0;
            border: 1px solid var(--border-color);
        }
        .search-form {
            display: flex;
            gap: 0.5rem;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem 1rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: #1a2f4d;
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-form button {
            padding: 0.8rem 1.5rem;
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: var(--accent-light);
        }
        figure {
            margin: 2.5rem auto;
            text-align: center;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            overflow: hidden;
            max-width: 800px;
        }
        figure img {
            width: 100%;
            height: auto;
        }
        figcaption {
            padding: 1rem;
            background-color: rgba(10, 31, 58, 0.7);
            font-style: italic;
            color: var(--text-gray);
        }
        .interaction {
            background: rgba(10, 31, 58, 0.8);
            padding: 2rem;
            border-radius: 10px;
            margin-top: 3rem;
            border: 1px solid var(--border-color);
        }
        .comment-form, .rating-form {
            margin-bottom: 2.5rem;
        }
        .form-group {
            margin-bottom: 1.2rem;
        }
        label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        input, textarea, select {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            border-radius: 4px;
            background-color: #1a2f4d;
            color: var(--text-light);
            font-size: 1rem;
        }
        textarea {
            min-height: 120px;
            resize: vertical;
        }
        button[type="submit"] {
            padding: 0.8rem 2rem;
            background-color: var(--accent-gold);
            color: var(--primary-dark);
            border: none;
            border-radius: 4px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }
        button[type="submit"]:hover {
            background-color: var(--accent-light);
            transform: translateY(-2px);
        }
        footer {
            background-color: var(--primary-dark);
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--accent-gold);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
            margin-bottom: 2.5rem;
        }
        .web-link {
            background: rgba(26, 63, 109, 0.6);
            padding: 1rem;
            border-radius: 6px;
            border-left: 4px solid var(--accent-gold);
        }
        .web-link a {
            color: var(--text-light);
            font-weight: 600;
        }
        .web-link:hover {
            background: rgba(201, 163, 71, 0.2);
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-gray);
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            .menu-icon {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 20px;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            #menu-toggle:checked ~ .main-nav {
                max-height: 300px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0;
                margin-top: 1rem;
            }
            .main-nav li {
                width: 100%;
            }
            .main-nav a {
                display: block;
                padding: 0.8rem;
                border-bottom: 1px solid var(--border-color);
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            article {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .highlight {
            background: linear-gradient(90deg, transparent 50%, rgba(201, 163, 71, 0.2) 50%);
            background-size: 200% 100%;
            padding: 0.2rem 0.5rem;
            border-radius: 3px;
            transition: background-position 0.5s;
        }
        .highlight:hover {
            background-position: -100% 0;
        }
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--primary-dark);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 5px;
        }
