        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0a0f;
            color: #e0e0e0;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #c09b3e;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffd700;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 20px 0;
            border-bottom: 3px solid #c09b3e;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            text-transform: uppercase;
            background: linear-gradient(45deg, #c09b3e, #ffd700);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
        }
        .logo a {
            background: none;
        }
        .search-box {
            display: flex;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 30px;
            overflow: hidden;
            padding: 5px;
            min-width: 300px;
        }
        .search-box input {
            flex: 1;
            background: transparent;
            border: none;
            padding: 10px 15px;
            color: #fff;
            outline: none;
        }
        .search-box button {
            background: #c09b3e;
            border: none;
            padding: 10px 20px;
            color: #000;
            font-weight: bold;
            cursor: pointer;
            border-radius: 25px;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: #ffd700;
        }
        nav {
            margin-top: 20px;
        }
        .nav-desktop {
            display: flex;
            justify-content: center;
            gap: 30px;
            list-style: none;
        }
        .nav-desktop li a {
            padding: 10px 20px;
            border-radius: 5px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .nav-desktop li a:hover {
            background: rgba(192, 155, 62, 0.2);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #c09b3e;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            list-style: none;
            background: #16213e;
            border-radius: 10px;
            padding: 20px;
            margin-top: 20px;
            animation: slideDown 0.5s ease;
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile li a {
            display: block;
            padding: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .nav-mobile li:last-child a {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #aaa;
        }
        .breadcrumb a:hover {
            color: #ffd700;
        }
        main {
            padding: 40px 0;
            min-height: 100vh;
        }
        article {
            background: rgba(22, 33, 62, 0.8);
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            margin-bottom: 40px;
        }
        h1 {
            font-size: 3rem;
            color: #ffd700;
            margin-bottom: 20px;
            text-align: center;
            line-height: 1.2;
        }
        h2 {
            font-size: 2.2rem;
            color: #c09b3e;
            margin: 40px 0 20px;
            border-left: 5px solid #c09b3e;
            padding-left: 15px;
        }
        h3 {
            font-size: 1.8rem;
            color: #e0b354;
            margin: 30px 0 15px;
        }
        p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(192, 155, 62, 0.1);
            border-left: 4px solid #ffd700;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 10px 10px 0;
        }
        .image-container {
            margin: 30px auto;
            text-align: center;
            max-width: 800px;
        }
        .image-container img {
            border-radius: 10px;
            border: 3px solid #c09b3e;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
        }
        .link-in-text {
            font-weight: bold;
            color: #ffd700;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .interactive-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 50px 0;
        }
        .comment-box, .rating-box {
            background: rgba(26, 26, 46, 0.9);
            padding: 25px;
            border-radius: 10px;
            border: 1px solid #333;
        }
        .comment-box h3, .rating-box h3 {
            color: #ffd700;
        }
        .comment-form textarea, .comment-form input, .rating-form select, .rating-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .comment-form button, .rating-form button {
            background: #c09b3e;
            color: #000;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .comment-form button:hover, .rating-form button:hover {
            background: #ffd700;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }
        .stars i {
            color: #555;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.3s;
        }
        .stars i.active {
            color: #ffd700;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(22, 33, 62, 0.9);
            border-radius: 10px;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            text-align: center;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            background: rgba(192, 155, 62, 0.2);
            transform: translateY(-5px);
        }
        .web-link a {
            display: block;
            font-weight: 600;
        }
        footer {
            background: #1a1a2e;
            padding: 40px 0;
            text-align: center;
            border-top: 2px solid #c09b3e;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            .search-box { min-width: 250px; }
        }
        @media (max-width: 768px) {
            .header-top { flex-direction: column; gap: 20px; }
            .search-box { width: 100%; max-width: 400px; }
            .nav-desktop { display: none; }
            .hamburger { display: block; }
            .interactive-section { grid-template-columns: 1fr; }
            article { padding: 25px; }
        }
        @media (max-width: 576px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.7rem; }
            .web-links { grid-template-columns: 1fr; }
        }
