:root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #e94560;
            --accent-light: #ff7b9c;
            --text: #f1f1f1;
            --text-muted: #b0b0c0;
            --card-bg: #0f3460;
            --border: #2d4059;
            --success: #4e9f3d;
            --warning: #ffa500;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: var(--primary);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: var(--accent-light);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: var(--accent);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-bottom: 3px solid var(--accent);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--accent), #ffd166);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        .breadcrumb {
            padding: 1rem 0 0.5rem;
            font-size: 0.9rem;
            color: var(--text-muted);
        }
        .breadcrumb a {
            color: var(--text-muted);
        }
        .breadcrumb a:hover {
            color: var(--accent-light);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            padding: 0.5rem 1rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .nav-desktop a:hover {
            background-color: rgba(233, 69, 96, 0.2);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 70%;
            background-color: var(--secondary);
            padding: 2rem;
            transition: right 0.4s ease;
            z-index: 1001;
            overflow-y: auto;
            box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            right: 0;
        }
        .mobile-nav-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border);
        }
        .close-nav {
            font-size: 1.8rem;
            background: none;
            border: none;
            color: var(--text);
            cursor: pointer;
        }
        .mobile-nav-links {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .mobile-nav-links a {
            font-size: 1.2rem;
            padding: 0.8rem;
            border-radius: 6px;
            background-color: rgba(255,255,255,0.05);
        }
        .hero {
            background: linear-gradient(rgba(22,33,62,0.9), rgba(26,26,46,0.9)), url('https://images.unsplash.com/photo-1553440569-bcc63803a83d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 4rem 0;
            text-align: center;
            margin-bottom: 3rem;
            border-radius: 0 0 20px 20px;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1rem;
            color: white;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: var(--text-muted);
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 12px;
            border-left: 5px solid var(--accent);
        }
        .search-form {
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px;
            border: 2px solid var(--border);
            border-radius: 8px;
            background: var(--secondary);
            color: var(--text);
            font-size: 1rem;
        }
        .search-btn {
            padding: 0 25px;
            background: linear-gradient(to right, var(--accent), var(--accent-light));
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
        }
        .main-article {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .article-section {
            margin-bottom: 3.5rem;
        }
        h2 {
            color: #ffd166;
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            color: #a9d6e5;
            font-size: 1.7rem;
            margin: 2rem 0 1rem;
        }
        h4 {
            color: var(--accent-light);
            font-size: 1.3rem;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background: rgba(255, 209, 102, 0.1);
            border-left: 4px solid #ffd166;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .inline-link {
            font-weight: 700;
            border-bottom: 1px dashed var(--accent-light);
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            border: 3px solid var(--border);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: var(--secondary);
            padding: 1.8rem;
            border-radius: 12px;
            border-top: 5px solid var(--accent);
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd700;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i {
            margin: 0 3px;
            transition: color 0.2s;
        }
        .stars i:hover {
            color: #ffa500;
        }
        .rating-form input, .comment-form textarea, .comment-form input {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 6px;
            color: var(--text);
        }
        .submit-btn {
            width: 100%;
            padding: 14px;
            background: var(--accent);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background: var(--accent-light);
        }
        .update-info {
            font-size: 0.9rem;
            color: var(--text-muted);
            text-align: center;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }
        .update-info i {
            margin-right: 8px;
        }
        .site-footer {
            background: var(--secondary);
            margin-top: 5rem;
            padding: 3rem 0 1.5rem;
            border-top: 3px solid var(--accent);
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        friend-link {
            display: block;
            background: var(--card-bg);
            padding: 1rem;
            margin: 0.5rem 0;
            border-radius: 6px;
            transition: transform 0.3s;
        }
        friend-link:hover {
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            .main-article {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
        }
