        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #60a5fa;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .text-highlight { color: #fbbf24; }
        .bold { font-weight: 700; }
        .section-padding {
            padding: 4rem 0;
        }
        .section-title {
            font-size: 2.5rem;
            margin-bottom: 2rem;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }
        .site-header {
            background: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid #334155;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            font-size: 2.2rem;
            color: #60a5fa;
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-desktop a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #60a5fa;
            transition: width 0.3s ease;
        }
        .nav-desktop a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #f1f5f9;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background: #1e293b;
            padding: 2rem;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            z-index: 999;
            border-top: 1px solid #334155;
        }
        .nav-mobile.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .nav-mobile a {
            display: block;
            padding: 1rem 0;
            border-bottom: 1px solid #334155;
            font-weight: 600;
            font-size: 1.1rem;
        }
        .breadcrumb {
            padding: 1rem 0;
            background: #1e293b;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #cbd5e1;
        }
        .breadcrumb span {
            color: #94a3b8;
            margin: 0 8px;
        }
        .hero {
            background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.9)), url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80');
            background-size: cover;
            background-position: center;
            padding: 6rem 0;
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #cbd5e1;
        }
        .search-container {
            max-width: 600px;
            margin: 3rem auto;
            background: #1e293b;
            padding: 2rem;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }
        .search-form {
            display: flex;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #475569;
            border-right: none;
            border-radius: 8px 0 0 8px;
            background: #0f172a;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .search-button {
            padding: 0 1.5rem;
            background: linear-gradient(90deg, #3b82f6, #6366f1);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .search-button:hover {
            background: linear-gradient(90deg, #2563eb, #4f46e5);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 3rem auto;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: #1e293b;
            border-radius: 12px;
            padding: 3rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #e2e8f0;
        }
        .article-content h2 {
            font-size: 2rem;
            margin: 2.5rem 0 1.5rem;
            color: #fbbf24;
        }
        .article-content h3 {
            font-size: 1.5rem;
            margin: 2rem 0 1rem;
            color: #93c5fd;
        }
        .article-content ul, .article-content ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }
        .article-content li {
            margin-bottom: 0.8rem;
        }
        .feature-image {
            margin: 2rem 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
        }
        .feature-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .feature-image:hover img {
            transform: scale(1.03);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background: #1e293b;
            border-radius: 12px;
            padding: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #3b82f6;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            font-size: 1.8rem;
            color: #475569;
            cursor: pointer;
        }
        .rating-stars .star:hover,
        .rating-stars .star.active {
            color: #fbbf24;
        }
        .form-input, .form-textarea {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #475569;
            border-radius: 6px;
            background: #0f172a;
            color: #f1f5f9;
            font-size: 1rem;
        }
        .form-textarea {
            min-height: 120px;
            resize: vertical;
        }
        .form-submit {
            padding: 0.8rem 1.5rem;
            background: #10b981;
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .form-submit:hover {
            background: #059669;
        }
        .web-links-container {
            background: #1e293b;
            padding: 3rem 2rem;
            margin: 2rem 0;
            border-radius: 12px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .web-link {
            background: #0f172a;
            padding: 1rem;
            border-radius: 8px;
            border-left: 4px solid #3b82f6;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
        }
        .site-footer {
            background: #0f172a;
            border-top: 1px solid #334155;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 700;
            color: #60a5fa;
            margin-bottom: 1rem;
        }
        .footer-links h4 {
            margin-bottom: 1rem;
            color: #fbbf24;
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .section-padding {
                padding: 2.5rem 0;
            }
            .section-title {
                font-size: 2rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .search-form {
                flex-direction: column;
            }
            .search-input {
                border-radius: 8px;
                border-right: 2px solid #475569;
                margin-bottom: 10px;
            }
            .search-button {
                border-radius: 8px;
                padding: 1rem;
            }
        }
