:root {
            --primary-dark: #0a0a12;
            --primary-accent: #2a9d8f;
            --secondary-accent: #e76f51;
            --text-primary: #e9ecef;
            --text-secondary: #adb5bd;
            --card-bg: #161622;
            --border-color: #2d3040;
            --highlight: #3a86ff;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.7;
            color: var(--text-primary);
            background: linear-gradient(180deg, var(--primary-dark) 0%, #12121e 100%);
            min-height: 100vh;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: var(--primary-accent);
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: var(--secondary-accent);
            transform: translateY(-1px);
        }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: rgba(10, 10, 18, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--primary-accent), var(--highlight));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2rem;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .desktop-nav a:hover {
            background-color: rgba(42, 157, 143, 0.1);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-primary);
        }
        .mobile-nav {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--card-bg);
            flex-direction: column;
            padding: 1rem;
            border-top: 1px solid var(--border-color);
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav ul {
            list-style: none;
            width: 100%;
        }
        .mobile-nav li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(45, 48, 64, 0.5);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: var(--text-secondary);
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--primary-accent);
        }
        .hero {
            padding: 3rem 0;
            text-align: center;
            border-bottom: 1px solid var(--border-color);
        }
        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            background: linear-gradient(90deg, #e9ecef, var(--primary-accent));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-secondary);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 3rem 0;
        }
        .content {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 2.5rem;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        article {
            margin-bottom: 3rem;
        }
        article h2 {
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary-accent);
            color: var(--text-primary);
        }
        article h3 {
            font-size: 1.6rem;
            margin: 2rem 0 1rem;
            color: var(--primary-accent);
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article strong {
            color: var(--secondary-accent);
            font-weight: 700;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .featured-image {
            max-width: 100%;
            border-radius: 8px;
            border: 2px solid var(--border-color);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .featured-image:hover {
            transform: scale(1.01);
            box-shadow: 0 10px 30px rgba(42, 157, 143, 0.2);
        }
        .image-caption {
            font-style: italic;
            color: var(--text-secondary);
            margin-top: 0.8rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: var(--card-bg);
            border-radius: 12px;
            padding: 1.8rem;
            border: 1px solid var(--border-color);
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.2rem;
            color: var(--primary-accent);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            font-size: 1.2rem;
        }
        .search-form, .comment-form, .rating-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        input, textarea, select {
            padding: 0.9rem;
            background-color: rgba(10, 10, 18, 0.7);
            border: 1px solid var(--border-color);
            border-radius: 6px;
            color: var(--text-primary);
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        input:focus, textarea:focus, select:focus {
            outline: none;
            border-color: var(--primary-accent);
        }
        button {
            padding: 1rem 1.5rem;
            background: linear-gradient(90deg, var(--primary-accent), #2a8c7f);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        button:hover {
            background: linear-gradient(90deg, #2a8c7f, var(--primary-accent));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(42, 157, 143, 0.3);
        }
        .star-rating {
            display: flex;
            justify-content: space-between;
            margin: 1rem 0;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffc107;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
            margin: 3rem 0;
        }
        .web-link {
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.1), rgba(22, 22, 34, 0.3));
            border: 1px solid var(--border-color);
            border-radius: 8px;
            padding: 1.5rem;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            border-color: var(--primary-accent);
            box-shadow: 0 8px 20px rgba(42, 157, 143, 0.15);
        }
        .web-link a {
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 0.5rem;
        }
        .web-link p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }
        footer {
            background-color: #0c0c14;
            border-top: 1px solid var(--border-color);
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            color: var(--text-secondary);
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-color);
            width: 100%;
        }
        @media (max-width: 1024px) {
            main {
                grid-template-columns: 1fr;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .content, .widget {
                padding: 1.5rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
            article h3 {
                font-size: 1.4rem;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
            }
            .hero {
                padding: 2rem 0;
            }
            .star-rating label {
                font-size: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .content, .widget, .web-link {
            animation: fadeIn 0.6s ease-out;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .highlight-box {
            background: linear-gradient(90deg, rgba(42, 157, 143, 0.1), transparent);
            border-left: 4px solid var(--primary-accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
