        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary-color: #1a1a2e;
            --secondary-color: #16213e;
            --accent-color: #e94560;
            --text-color: #f1f1f1;
            --text-muted: #b0b0b0;
            --bg-light: #0f3460;
            --border-color: #2d4059;
            --shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--primary-color);
            color: var(--text-color);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-color);
            text-decoration: none;
            transition: var(--transition);
        }
        a:hover {
            color: #ff7b93;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: var(--secondary-color);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            color: var(--accent-color);
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(45deg, #e94560, #ff7b93);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .my-logo:hover {
            text-decoration: none;
            transform: scale(1.03);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background-color: var(--bg-light);
            text-decoration: none;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text-color);
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background-color: var(--secondary-color);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb {
            background-color: var(--bg-light);
            padding: 0.8rem 0;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb span {
            color: var(--accent-color);
        }
        .main-content {
            padding: 2rem 0;
            min-height: 80vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding-bottom: 2rem;
            border-bottom: 2px solid var(--accent-color);
        }
        h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: #fff;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.5rem;
            }
        }
        .article-meta {
            color: var(--text-muted);
            font-style: italic;
            margin-top: 1rem;
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            font-size: 1.1rem;
        }
        .article-body h2 {
            font-size: 2.2rem;
            color: var(--accent-color);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .article-body h3 {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #ffcc00;
        }
        .article-body h4 {
            font-size: 1.4rem;
            margin: 1.5rem 0 0.8rem;
            color: #4fc3f7;
        }
        .article-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .article-body em {
            color: #ffcc00;
        }
        .article-body strong {
            color: #ff6b6b;
            font-weight: 700;
        }
        .highlight-box {
            background-color: var(--bg-light);
            border-left: 5px solid var(--accent-color);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .featured-image {
            margin: 2.5rem auto;
            box-shadow: var(--shadow);
            overflow: hidden;
        }
        .featured-image img {
            transition: transform 0.5s ease;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        .sidebar {
            background-color: var(--secondary-color);
            padding: 1.5rem;
            border-radius: 8px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar-widget {
            margin-bottom: 2rem;
        }
        .sidebar-widget h3 {
            color: var(--accent-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            background-color: var(--primary-color);
            color: var(--text-color);
            border-radius: 4px 0 0 4px;
        }
        .search-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 0.8rem 1.2rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
        }
        .search-form button:hover {
            background-color: #ff7b93;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .rating-widget input, .rating-widget textarea {
            padding: 0.8rem;
            border: 1px solid var(--border-color);
            background-color: var(--primary-color);
            color: var(--text-color);
            border-radius: 4px;
        }
        .rating-widget button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 0.8rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }
        .rating-widget button:hover {
            background-color: #45a049;
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            font-size: 1.5rem;
            margin: 0.5rem 0;
            color: #ffcc00;
        }
        .star-rating i {
            cursor: pointer;
        }
        .related-links {
            list-style: none;
        }
        .related-links li {
            margin-bottom: 0.8rem;
            padding-left: 1rem;
            border-left: 3px solid transparent;
            transition: var(--transition);
        }
        .related-links li:hover {
            border-left-color: var(--accent-color);
            padding-left: 1.5rem;
        }
        .site-footer {
            background-color: var(--secondary-color);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 5px solid var(--accent-color);
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background-color: var(--bg-light);
            padding: 1rem;
            margin: 1rem 0;
            border-radius: 4px;
            font-weight: bold;
            border-left: 4px solid var(--accent-color);
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-color);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        .text-center {
            text-align: center;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 0.2rem;
        }
        .last-updated {
            background-color: #0f3460;
            padding: 0.5rem;
            border-radius: 4px;
            display: inline-block;
            margin-top: 1rem;
            font-size: 0.9rem;
        }
        .comment-section {
            background-color: var(--bg-light);
            padding: 2rem;
            border-radius: 8px;
            margin-top: 3rem;
        }
        .comment-section h3 {
            color: var(--accent-color);
            margin-bottom: 1.5rem;
        }
        .comment-form {
            display: grid;
            gap: 1rem;
        }
        .comment-form input, .comment-form textarea {
            padding: 1rem;
            border: 1px solid var(--border-color);
            background-color: var(--primary-color);
            color: var(--text-color);
            border-radius: 4px;
        }
        .comment-form button {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: bold;
        }
