:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --accent-light: #ff7b9c;
            --text: #f1f1f1;
            --text-muted: #b8b8b8;
            --card-bg: #0f3460;
            --border: #2d4059;
            --success: #4e9f3d;
            --warning: #ff9f29;
            --font-heading: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            --font-body: 'Georgia', 'Times New Roman', serif;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-body);
            line-height: 1.8;
            color: var(--text);
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            background-attachment: fixed;
            padding-bottom: 40px;
        }
        a {
            color: var(--accent-light);
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 8px var(--accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background-color: rgba(10, 10, 20, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--accent);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .my-logo {
            font-family: var(--font-heading);
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, var(--accent), #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 8px 5px;
            position: relative;
        }
        .main-nav a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--accent);
            left: 0;
            bottom: 0;
            transition: width 0.3s;
        }
        .main-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.95rem;
            color: var(--text-muted);
            border-bottom: 1px solid var(--border);
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: var(--accent-light);
        }
        .breadcrumb i {
            margin: 0 10px;
        }
        .article-hero {
            text-align: center;
            padding: 40px 0;
            margin-bottom: 40px;
            background: linear-gradient(rgba(22, 33, 62, 0.9), rgba(15, 52, 96, 0.7)), url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            border-radius: 15px;
            border-left: 8px solid var(--accent);
        }
        .article-hero h1 {
            font-family: var(--font-heading);
            font-size: 3.2rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
            color: #fff;
        }
        .article-hero p {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto;
            color: #f0f0f0;
        }
        .content-main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content-main {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(15, 52, 96, 0.7);
            padding: 35px;
            border-radius: 15px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-content h2, .article-content h3, .article-content h4 {
            font-family: var(--font-heading);
            margin-top: 2.5rem;
            margin-bottom: 1.2rem;
            color: #fff;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(233, 69, 96, 0.4);
        }
        .article-content h2 { font-size: 2.2rem; }
        .article-content h3 { font-size: 1.8rem; }
        .article-content h4 { font-size: 1.5rem; }
        .article-content p {
            margin-bottom: 1.8rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .article-content emoji {
            font-size: 1.3em;
            margin-right: 5px;
        }
        .article-content strong {
            color: #ffcc00;
            font-weight: 700;
        }
        .article-content blockquote {
            border-left: 5px solid var(--accent);
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            background: rgba(255, 255, 255, 0.05);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .article-content img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            margin: 25px auto;
            display: block;
            border: 3px solid var(--border);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }
        .article-content img:hover {
            transform: scale(1.02);
            box-shadow: 0 10px 25px rgba(233, 69, 96, 0.3);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: var(--card-bg);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid var(--border);
        }
        .widget h3 {
            font-family: var(--font-heading);
            color: #fff;
            margin-bottom: 20px;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .widget h3 i {
            color: var(--accent);
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid var(--border);
            border-radius: 8px;
            color: var(--text);
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 14px;
            background: linear-gradient(90deg, var(--accent), #c70039);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            background: linear-gradient(90deg, #c70039, var(--accent));
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(233, 69, 96, 0.4);
        }
        .star-rating {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 15px 0;
            font-size: 1.8rem;
            color: var(--warning);
        }
        .star-rating i {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .star-rating i:hover {
            transform: scale(1.3);
        }
        .update-info {
            font-size: 0.95rem;
            color: var(--text-muted);
            text-align: center;
            padding: 10px;
            background: rgba(0,0,0,0.3);
            border-radius: 8px;
        }
        .site-footer {
            margin-top: 60px;
            padding-top: 40px;
            border-top: 2px solid var(--border);
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            font-family: var(--font-heading);
            margin-bottom: 20px;
            color: #fff;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            margin-bottom: 10px;
            padding: 8px 12px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            transition: background 0.3s;
        }
        friend-link:hover {
            background: rgba(233, 69, 96, 0.2);
        }
        .copyright {
            text-align: center;
            padding: 25px 0;
            margin-top: 40px;
            color: var(--text-muted);
            font-size: 0.9rem;
            border-top: 1px solid var(--border);
        }
        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 300px;
                margin-top: 20px;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 15px;
                padding: 20px 0;
            }
            .article-hero h1 {
                font-size: 2.5rem;
            }
            .article-hero p {
                font-size: 1.2rem;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 1.9rem;
            }
        }
