:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --text: #f1f1f1;
            --text-secondary: #b8b8b8;
            --card-bg: #0f3460;
            --border: #2d4059;
            --hover: #2d4059;
            --shadow: rgba(0, 0, 0, 0.5);
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff7b93;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background-color: var(--secondary);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-family: var(--font-heading);
            font-size: 2rem;
            font-weight: 800;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .logo span {
            color: var(--text);
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 2rem;
        }
        .nav-links a {
            color: var(--text);
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background-color: var(--accent);
            transition: width 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: var(--text);
        }
        .breadcrumb {
            background-color: var(--card-bg);
            padding: 1rem 0;
            font-size: 0.9rem;
            margin-top: 1px;
        }
        .breadcrumb a {
            color: var(--text-secondary);
        }
        .breadcrumb a:hover {
            color: var(--accent);
        }
        main {
            padding: 2rem 0;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        article {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 8px 20px var(--shadow);
        }
        h1 {
            font-family: var(--font-heading);
            font-size: 2.8rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            line-height: 1.3;
        }
        h2 {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            margin: 2.5rem 0 1.5rem;
            color: var(--text);
            border-left: 5px solid var(--accent);
            padding-left: 15px;
        }
        h3 {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: var(--text-secondary);
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: var(--secondary);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .highlight p {
            margin-bottom: 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
            vertical-align: middle;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--border);
            box-shadow: 0 6px 15px var(--shadow);
            transition: transform 0.3s;
        }
        img:hover {
            transform: scale(1.02);
        }
        figcaption {
            text-align: center;
            font-style: italic;
            color: var(--text-secondary);
            margin-top: -1.5rem;
            margin-bottom: 2rem;
        }
        aside {
            background-color: var(--card-bg);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 8px 20px var(--shadow);
            height: fit-content;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget-title {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            color: var(--accent);
            margin-bottom: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
            background-color: var(--secondary);
            color: var(--text);
            font-size: 1rem;
        }
        .search-form button {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        .search-form button:hover {
            background-color: #ff2e4f;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
        }
        .rating-form label, .comment-form label {
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 12px 15px;
            margin-bottom: 1rem;
            border: none;
            border-radius: 5px;
            background-color: var(--secondary);
            color: var(--text);
            font-family: var(--font-body);
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            font-size: 2rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s;
        }
        .rating-stars label:hover,
        .rating-stars label:hover ~ label,
        .rating-stars input:checked ~ label {
            color: #ffc107;
        }
        .btn-submit {
            background-color: var(--accent);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
            font-size: 1.1rem;
            transition: background-color 0.3s;
        }
        .btn-submit:hover {
            background-color: #ff2e4f;
        }
        .footer-links {
            background-color: var(--secondary);
            padding: 3rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-links .container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background-color: var(--card-bg);
            padding: 1.5rem;
            border-radius: 8px;
            transition: transform 0.3s, background-color 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: var(--hover);
        }
        .web-link a {
            color: var(--text);
            font-weight: 600;
            display: block;
            font-size: 1.1rem;
        }
        .web-link a:hover {
            color: var(--accent);
        }
        footer {
            background-color: var(--primary);
            padding: 2rem 0;
            text-align: center;
            color: var(--text-secondary);
            border-top: 1px solid var(--border);
        }
        .copyright {
            font-size: 0.9rem;
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--secondary);
                flex-direction: column;
                align-items: center;
                padding-top: 3rem;
                transition: right 0.5s;
                box-shadow: -5px 0 15px var(--shadow);
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 1.5rem 0;
            }
            .hamburger {
                display: block;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            h3 {
                font-size: 1.5rem;
            }
            article, aside {
                padding: 1.5rem;
            }
        }
