        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        :root {
            --primary: #ff4655;
            --secondary: #0f1923;
            --accent: #1e90ff;
            --light: #f8f9fa;
            --dark: #0a0e12;
            --gray: #6c757d;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #333;
            background: linear-gradient(135deg, #0f1923 0%, #1a2634 100%);
            min-height: 100vh;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        h1, h2, h3, h4 {
            color: var(--light);
            margin-bottom: 1.2rem;
            line-height: 1.3;
            font-weight: 700;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-top: 1.5rem;
            border-bottom: 3px solid var(--primary);
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin-top: 3rem;
            padding-left: 10px;
            border-left: 5px solid var(--accent);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--accent);
            margin-top: 2.5rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #ffd166;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            color: #d1d5db;
            font-size: 1.1rem;
        }
        header {
            background: rgba(15, 25, 35, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid var(--primary);
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            text-decoration: none;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        .nav-desktop a {
            color: var(--light);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
            transition: var(--transition);
        }
        .nav-desktop a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: var(--light);
            font-size: 1.8rem;
            cursor: pointer;
        }
        .nav-mobile {
            display: none;
            flex-direction: column;
            background: var(--secondary);
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            padding: 1rem;
            box-shadow: var(--shadow);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: var(--light);
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
        }
        .nav-mobile a:hover {
            background: var(--primary);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            margin: 1.5rem 0;
        }
        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
        }
        .breadcrumb span {
            color: var(--gray);
        }
        main {
            background: rgba(26, 38, 52, 0.9);
            border-radius: 15px;
            padding: 2.5rem;
            margin: 2rem auto;
            box-shadow: var(--shadow);
        }
        .content-grid {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
        }
        .sidebar {
            background: rgba(15, 25, 35, 0.8);
            padding: 1.8rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            height: fit-content;
            position: sticky;
            top: 120px;
        }
        .sidebar h3 {
            font-size: 1.5rem;
            margin-top: 0;
        }
        .search-box {
            margin-bottom: 2rem;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.9rem;
            border: 2px solid var(--primary);
            border-radius: 8px 0 0 8px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
        }
        .search-form button {
            background: var(--primary);
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            transition: var(--transition);
        }
        .search-form button:hover {
            background: #ff2e3f;
        }
        .rating-widget {
            text-align: center;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.2);
            border-radius: 10px;
            margin-bottom: 2rem;
        }
        .stars {
            color: #ffd700;
            font-size: 1.8rem;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars span:hover {
            transform: scale(1.2);
        }
        .article-content {
            line-height: 1.8;
        }
        .hero-image {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 12px;
            margin: 2rem 0;
            border: 3px solid var(--primary);
        }
        .highlight-box {
            background: linear-gradient(135deg, rgba(255, 70, 85, 0.1), rgba(30, 144, 255, 0.1));
            border-left: 5px solid var(--accent);
            padding: 1.8rem;
            margin: 2.5rem 0;
            border-radius: 0 10px 10px 0;
        }
        .highlight-box p {
            color: white;
            font-size: 1.2rem;
            font-weight: 600;
        }
        .tip {
            background: rgba(255, 209, 102, 0.1);
            border: 1px solid #ffd166;
            padding: 1.5rem;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .tip h4 {
            color: #ffd166;
            margin-top: 0;
        }
        ul, ol {
            padding-left: 2rem;
            margin-bottom: 1.5rem;
            color: #d1d5db;
        }
        li {
            margin-bottom: 0.8rem;
        }
        strong {
            color: var(--primary);
            font-weight: 700;
        }
        em {
            color: var(--accent);
            font-style: italic;
        }
        a.content-link {
            color: #4dabf7;
            text-decoration: none;
            border-bottom: 1px dashed #4dabf7;
            transition: var(--transition);
        }
        a.content-link:hover {
            color: var(--accent);
            border-bottom-style: solid;
        }
        .comments-section {
            margin-top: 4rem;
            padding-top: 2rem;
            border-top: 2px solid rgba(255, 255, 255, 0.1);
        }
        .comment-form {
            background: rgba(15, 25, 35, 0.8);
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            color: var(--light);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            transition: var(--transition);
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.1);
        }
        .submit-btn {
            background: linear-gradient(90deg, var(--primary), #ff2e3f);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(255, 70, 85, 0.4);
        }
        footer {
            background: rgba(10, 14, 18, 0.95);
            padding: 3rem 0 1.5rem;
            margin-top: 4rem;
            border-top: 3px solid var(--primary);
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        .footer-section h3 {
            color: var(--light);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--primary);
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .friend-links a {
            color: var(--accent);
            text-decoration: none;
            transition: var(--transition);
            padding: 0.3rem 0;
        }
        .friend-links a:hover {
            color: var(--primary);
            padding-left: 8px;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--gray);
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            .content-grid {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
            }
            h1 {
                font-size: 2.4rem;
            }
            h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-content {
                padding: 0.8rem 0;
            }
            main {
                padding: 1.5rem;
            }
            .hero-image {
                height: 300px;
            }
        }
        @media (max-width: 480px) {
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.7rem;
            }
            .container {
                padding: 0 15px;
            }
            .comment-form {
                padding: 1.5rem;
            }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(255, 70, 85, 0.3);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: var(--primary);
            display: block;
            line-height: 1;
        }
        .stat-label {
            color: var(--light);
            font-size: 1rem;
            margin-top: 0.5rem;
        }
