:root {
            --primary-dark: #0c1a2d;
            --primary-accent: #c89b3c;
            --secondary-accent: #13c4a3;
            --text-light: #f0e6d2;
            --text-gray: #a09b8c;
            --card-bg: #1e2328;
            --section-bg: #161a1e;
            --border-color: #3c3c41;
            --shadow-color: rgba(12, 26, 45, 0.7);
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--primary-dark);
            color: var(--text-light);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--secondary-accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, var(--primary-dark) 0%, #1a2b45 100%);
            padding: 1rem 0;
            border-bottom: 2px solid var(--primary-accent);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow-color);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, var(--primary-accent), #f0e6d2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--secondary-accent);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-links a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-accent);
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.5rem;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: rgba(30, 35, 40, 0.8);
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child):after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--text-gray);
        }
        .search-section {
            background-color: var(--section-bg);
            padding: 2rem;
            border-radius: 10px;
            margin: 2rem 0;
            text-align: center;
            border: 1px solid var(--border-color);
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background-color: var(--card-bg);
            color: var(--text-light);
            font-size: 1rem;
        }
        .search-btn {
            padding: 0 25px;
            background: linear-gradient(to right, var(--primary-accent), #d4af37);
            color: var(--primary-dark);
            border: none;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        main {
            padding: 2rem 0;
        }
        article {
            background-color: var(--card-bg);
            border-radius: 15px;
            padding: 3rem;
            margin-bottom: 3rem;
            box-shadow: 0 10px 30px var(--shadow-color);
            border: 1px solid var(--border-color);
        }
        h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--primary-accent);
            line-height: 1.2;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            color: var(--secondary-accent);
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--border-color);
        }
        h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 1rem;
            color: #f0e6d2;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(200, 155, 60, 0.15) 0%, rgba(19, 196, 163, 0.1) 100%);
            border-left: 4px solid var(--primary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--primary-accent);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }
        .info-card {
            background: var(--section-bg);
            padding: 1.8rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        .interactive-section {
            background: var(--section-bg);
            padding: 2.5rem;
            border-radius: 15px;
            margin: 3rem 0;
            border: 1px solid var(--border-color);
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            max-width: 700px;
            margin: 0 auto;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            font-size: 2rem;
            margin: 1rem 0;
        }
        .star-rating .star {
            color: var(--text-gray);
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: gold;
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }
        label {
            font-weight: 600;
            color: var(--secondary-accent);
        }
        input, textarea, select {
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            background-color: var(--card-bg);
            color: var(--text-light);
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-accent);
        }
        .submit-btn {
            padding: 16px 30px;
            background: linear-gradient(to right, var(--secondary-accent), #10a58b);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        .submit-btn:hover {
            background: linear-gradient(to right, #10a58b, var(--secondary-accent));
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(16, 165, 139, 0.4);
        }
        .longtail-links {
            background: var(--section-bg);
            padding: 3rem 2rem;
            margin-top: 3rem;
            border-top: 2px solid var(--border-color);
            border-bottom: 2px solid var(--border-color);
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: var(--card-bg);
            padding: 1.2rem;
            border-radius: 8px;
            border-left: 4px solid var(--primary-accent);
            transition: background-color 0.3s;
        }
        .web-link:hover {
            background-color: rgba(200, 155, 60, 0.1);
        }
        footer {
            background-color: #0a1428;
            padding: 3rem 0 1.5rem;
            text-align: center;
            margin-top: 3rem;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .copyright {
            color: var(--text-gray);
            font-size: 0.95rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                flex-direction: column;
                background: var(--section-bg);
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                padding: 2rem;
                transition: right 0.4s ease;
                border-left: 2px solid var(--border-color);
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
            }
            .nav-links.active { right: 0; }
            .search-form { flex-direction: column; }
            .header-container { padding: 0 15px; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            .interactive-section { padding: 1.5rem; }
            .content-grid { grid-template-columns: 1fr; }
        }
