        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #5E35B1;
            --secondary: #FF9800;
            --accent: #00E5FF;
            --dark: #1A1A2E;
            --light: #F5F7FA;
            --gray: #6D7683;
            --success: #4CAF50;
            --shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--light);
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }
        ul { list-style: none; }
        img { max-width: 100%; height: auto; display: block; }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--dark), var(--primary));
            color: white;
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--accent);
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .logo i { color: var(--secondary); }
        .main-nav ul {
            display: flex;
            gap: 1.8rem;
        }
        .main-nav a {
            font-weight: 600;
            font-size: 1.05rem;
            padding: 0.5rem 0.8rem;
            border-radius: 6px;
        }
        .main-nav a:hover, .main-nav a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--accent);
        }
        .breadcrumb {
            background-color: rgba(255,255,255,0.05);
            padding: 0.8rem 0;
            margin-top: 0.5rem;
            border-radius: 8px;
        }
        .breadcrumb ol {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            opacity: 0.6;
        }
        .breadcrumb a:hover { color: var(--secondary); }
        .hero {
            background: linear-gradient(rgba(30,30,46,0.85), rgba(94,53,177,0.9)), url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 4rem 2rem;
            border-radius: 0 0 30px 30px;
            margin-bottom: 3rem;
        }
        .hero h1 {
            font-size: 3.2rem;
            margin-bottom: 1.2rem;
            text-shadow: 0 3px 10px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 2rem;
            opacity: 0.95;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto 0;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }
        .search-box input {
            flex-grow: 1;
            padding: 1.2rem 1.8rem;
            border: none;
            font-size: 1.1rem;
            outline: none;
        }
        .search-box button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 2.5rem;
            cursor: pointer;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        .search-box button:hover {
            background: #FF8A00;
            padding: 0 3rem;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin-bottom: 4rem;
        }
        @media (max-width: 992px) {
            .content-wrapper { grid-template-columns: 1fr; }
        }
        .main-article {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            box-shadow: var(--shadow);
        }
        .article-section {
            margin-bottom: 3rem;
        }
        .article-section h2 {
            color: var(--primary);
            border-left: 6px solid var(--secondary);
            padding-left: 1rem;
            margin: 2.5rem 0 1.5rem;
            font-size: 2rem;
        }
        .article-section h3 {
            color: var(--dark);
            margin: 1.8rem 0 1rem;
            font-size: 1.5rem;
        }
        .article-section p {
            margin-bottom: 1.2rem;
            font-size: 1.08rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, rgba(0,229,255,0.15) 0%, rgba(94,53,177,0.1) 100%);
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: var(--light);
            padding: 1.5rem;
            border-radius: 12px;
            text-align: center;
            border-top: 5px solid var(--primary);
            transition: var(--transition);
        }
        .stat-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow);
        }
        .stat-card .number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 0.5rem;
        }
        .feature-image {
            border-radius: 15px;
            overflow: hidden;
            margin: 2.5rem auto;
            box-shadow: 0 12px 25px rgba(0,0,0,0.15);
            border: 8px solid white;
        }
        .feature-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 1rem;
            color: var(--gray);
            background: #f9f9f9;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: white;
            padding: 1.8rem;
            border-radius: 15px;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1.2rem;
            padding-bottom: 0.7rem;
            border-bottom: 2px dashed #eee;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .rating-widget .stars {
            color: var(--secondary);
            font-size: 1.8rem;
            margin: 1rem 0;
            display: flex;
            gap: 5px;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
            color: #FFC107;
        }
        .rating-form button {
            width: 100%;
            padding: 1rem;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            margin-top: 1rem;
            transition: var(--transition);
        }
        .rating-form button:hover { background: #4527A0; }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border: 2px solid #ddd;
            border-radius: 10px;
            resize: vertical;
            min-height: 150px;
            margin-bottom: 1rem;
            font-family: inherit;
            transition: var(--transition);
        }
        .comment-form textarea:focus {
            outline: none;
            border-color: var(--accent);
        }
        .comment-form button {
            padding: 1rem 2rem;
            background: var(--success);
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 700;
            cursor: pointer;
            transition: var(--transition);
        }
        .comment-form button:hover { background: #388E3C; }
        .user-comment {
            background: #f9f9f9;
            padding: 1.2rem;
            border-radius: 10px;
            margin-top: 1rem;
            border-left: 4px solid var(--gray);
        }
        .user-comment .author {
            font-weight: 700;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 0.5rem;
        }
        .footer-links {
            background: var(--dark);
            padding: 3rem 0;
            margin-top: 4rem;
        }
        .web-link {
            display: inline-block;
            background: rgba(255,255,255,0.05);
            color: #ddd;
            padding: 0.8rem 1.5rem;
            margin: 0.7rem;
            border-radius: 30px;
            border: 1px solid rgba(255,255,255,0.1);
            transition: var(--transition);
        }
        .web-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        .links-container {
            text-align: center;
        }
        .site-footer {
            background: #0F0F1A;
            color: #aaa;
            padding: 2.5rem 0;
            text-align: center;
        }
        .copyright {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255,255,255,0.1);
            font-size: 0.95rem;
        }
        .social-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
            font-size: 1.5rem;
        }
        .social-links a:hover { color: var(--accent); }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav {
                position: fixed;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--dark);
                flex-direction: column;
                padding: 2rem;
                clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
                transition: var(--transition);
            }
            .main-nav.active {
                clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
            }
            .main-nav ul {
                flex-direction: column;
                gap: 1rem;
            }
            .main-nav a {
                display: block;
                padding: 1rem;
                border-radius: 8px;
                text-align: center;
                background: rgba(255,255,255,0.05);
            }
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }
            .search-box { flex-direction: column; border-radius: 15px; }
            .search-box input, .search-box button { width: 100%; border-radius: 0; }
            .content-wrapper, .stats-grid { gap: 1.5rem; }
            .main-article { padding: 1.8rem; }
            .article-section h2 { font-size: 1.7rem; }
        }
