:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #0f3460;
            --highlight: #e94560;
            --text: #f1f1f1;
            --text-muted: #b0b0b0;
            --border: #2d3748;
            --card-bg: rgba(255, 255, 255, 0.05);
            --gradient: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
            --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            --transition: all 0.3s ease;
        }
        * {
            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: var(--text);
            background: var(--primary);
            background-image: radial-gradient(circle at 20% 30%, rgba(233, 69, 96, 0.05) 0%, transparent 20%), radial-gradient(circle at 80% 80%, rgba(15, 52, 96, 0.1) 0%, transparent 20%);
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        a {
            color: var(--highlight);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff6b8b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        header {
            background: var(--secondary);
            padding: 1.5rem 0;
            border-bottom: 3px solid var(--highlight);
            margin-bottom: 2rem;
            border-radius: 0 0 12px 12px;
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--highlight), #ff8a00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo a:hover {
            text-decoration: none;
        }
        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }
        nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--highlight);
            left: 0;
            bottom: -5px;
            transition: var(--transition);
        }
        nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text);
            background: none;
            border: none;
        }
        .breadcrumb {
            background: var(--card-bg);
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin: 1.5rem 0;
            font-size: 0.95rem;
            border-left: 4px solid var(--highlight);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--highlight);
        }
        .breadcrumb i {
            margin: 0 0.5rem;
            color: var(--text-muted);
        }
        .search-container {
            background: var(--gradient);
            padding: 2rem;
            border-radius: 12px;
            margin: 2rem 0;
            text-align: center;
            box-shadow: var(--shadow);
        }
        .search-container h2 {
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid var(--border);
            border-radius: 8px 0 0 8px;
            background: rgba(255,255,255,0.1);
            color: var(--text);
            font-size: 1rem;
            outline: none;
        }
        .search-form button {
            background: var(--highlight);
            color: white;
            border: none;
            padding: 0 1.8rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ff3a5e;
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 16px;
            box-shadow: var(--shadow);
            backdrop-filter: blur(10px);
            border: 1px solid var(--border);
        }
        article h1 {
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: white;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        article h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
            color: #ffcc00;
        }
        article h3 {
            font-size: 1.5rem;
            margin: 1.8rem 0 0.8rem;
            color: #4fc3f7;
        }
        article p {
            margin-bottom: 1.2rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        article emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        article strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.5);
            border: 2px solid var(--highlight);
        }
        .featured-image figcaption {
            padding: 0.8rem;
            background: var(--secondary);
            font-style: italic;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .info-box {
            background: linear-gradient(135deg, rgba(15,52,96,0.7) 0%, rgba(22,33,62,0.7) 100%);
            border-left: 5px solid var(--highlight);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            box-shadow: var(--shadow);
        }
        .info-box h4 {
            color: #ffcc00;
            margin-bottom: 0.8rem;
            font-size: 1.3rem;
        }
        aside {
            background: var(--card-bg);
            border-radius: 16px;
            padding: 1.8rem;
            align-self: start;
            position: sticky;
            top: 140px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
        }
        aside h3 {
            color: var(--highlight);
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border);
        }
        .rating-widget, .comment-widget {
            margin-bottom: 2.5rem;
        }
        .stars {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffcc00;
        }
        .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .stars i:hover {
            transform: scale(1.2);
            color: #ffdd44;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-form button, .comment-form button {
            background: var(--highlight);
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
        }
        .rating-form button:hover, .comment-form button:hover {
            background: #ff3a5e;
        }
        textarea, select {
            width: 100%;
            padding: 0.8rem;
            border-radius: 8px;
            border: 1px solid var(--border);
            background: rgba(255,255,255,0.08);
            color: var(--text);
            font-family: inherit;
            resize: vertical;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
            margin: 3rem 0 2rem;
            padding: 2rem;
            background: var(--secondary);
            border-radius: 12px;
            border-top: 3px solid var(--highlight);
        }
        .web-link {
            background: var(--card-bg);
            padding: 1rem;
            border-radius: 8px;
            transition: var(--transition);
        }
        .web-link:hover {
            transform: translateY(-5px);
            background: rgba(233, 69, 96, 0.1);
        }
        .web-link a {
            color: var(--text);
            font-weight: 600;
            display: block;
        }
        .web-link a:hover {
            color: var(--highlight);
            text-decoration: none;
        }
        footer {
            text-align: center;
            padding: 2rem 0;
            margin-top: 3rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 1.5rem;
        }
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                align-items: flex-start;
            }
            nav {
                width: 100%;
                margin-top: 1rem;
                display: none;
            }
            nav.active {
                display: block;
            }
            nav ul {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }
            .hamburger {
                display: block;
                position: absolute;
                top: 2rem;
                right: 20px;
            }
            article {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2.2rem;
            }
            article h2 {
                font-size: 1.8rem;
            }
        }
