* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4da6ff;
            transition: color 0.3s;
        }
        a:hover {
            color: #80c1ff;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1f2e 0%, #0f1419 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2a3b5a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(to right, #ff7e5f, #4da6ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: flex;
            align-items: center;
        }
        .logo i {
            margin-right: 10px;
            color: #ff7e5f;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #b0b7c3;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: #ffffff;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #4da6ff;
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-toggle {
            display: none;
            font-size: 1.5rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: #1a1f2e;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 1rem;
            border-top: 1px solid #2a3b5a;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 0.8rem 0;
            border-bottom: 1px solid #2a3b5a;
            color: #b0b7c3;
        }
        .mobile-nav a:hover {
            color: #fff;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #8a94a6;
        }
        .breadcrumb a {
            color: #8a94a6;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .hero {
            background: linear-gradient(rgba(15,20,25,0.9), rgba(15,20,25,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;
            padding: 3rem 2rem;
            text-align: center;
            border-radius: 10px;
            margin: 2rem 0;
        }
        .hero h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #ffffff;
            text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #c0c8d0;
        }
        .search-box {
            max-width: 600px;
            margin: 2rem auto;
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 1rem;
            border: none;
            border-radius: 5px 0 0 5px;
            background: #1e2532;
            color: #fff;
            font-size: 1rem;
        }
        .search-box button {
            padding: 0 1.5rem;
            background: linear-gradient(to right, #4da6ff, #2d87e0);
            border: none;
            border-radius: 0 5px 5px 0;
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(to right, #2d87e0, #1a6bb8);
        }
        main {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2rem 0;
        }
        .article-content {
            background: #1a1f2e;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }
        .article-content h2 {
            color: #4da6ff;
            margin: 2rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #2a3b5a;
            font-size: 1.8rem;
        }
        .article-content h3 {
            color: #ffb366;
            margin: 1.5rem 0 1rem;
            font-size: 1.4rem;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(77, 166, 255, 0.1);
            border-left: 4px solid #4da6ff;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-radius: 0 5px 5px 0;
        }
        .image-container {
            margin: 2rem 0;
            text-align: center;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 2px solid #2a3b5a;
            box-shadow: 0 5px 15px rgba(0,0,0,0.5);
        }
        .image-container figcaption {
            margin-top: 0.5rem;
            font-style: italic;
            color: #8a94a6;
        }
        .sidebar {
            background: #1a1f2e;
            padding: 1.5rem;
            border-radius: 10px;
            height: fit-content;
        }
        .sidebar h3 {
            color: #ff7e5f;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #2a3b5a;
        }
        .rating-widget, .comment-widget {
            margin-bottom: 2rem;
        }
        .stars {
            display: flex;
            gap: 5px;
            margin: 1rem 0;
        }
        .star {
            color: #555;
            font-size: 1.5rem;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star.active,
        .star:hover {
            color: #ffcc00;
        }
        .rating-widget button, .comment-widget button {
            width: 100%;
            padding: 0.8rem;
            background: #2a3b5a;
            border: none;
            color: white;
            border-radius: 5px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .rating-widget button:hover, .comment-widget button:hover {
            background: #3a4b6a;
        }
        .comment-widget textarea {
            width: 100%;
            padding: 0.8rem;
            background: #1e2532;
            border: 1px solid #2a3b5a;
            color: white;
            border-radius: 5px;
            margin-bottom: 1rem;
            resize: vertical;
            min-height: 100px;
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin: 3rem 0;
        }
        .web-link {
            background: #1a1f2e;
            padding: 1rem;
            border-radius: 5px;
            border-left: 3px solid #ff7e5f;
        }
        .web-link a {
            color: #c0c8d0;
            display: block;
        }
        .web-link:hover {
            background: #232937;
        }
        footer {
            background: #141821;
            padding: 3rem 0 1.5rem;
            border-top: 2px solid #2a3b5a;
            margin-top: 3rem;
        }
        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #4da6ff;
            margin-bottom: 1rem;
        }
        .footer-section ul {
            list-style: none;
        }
        .footer-section ul li {
            margin-bottom: 0.5rem;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2a3b5a;
            color: #8a94a6;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            main {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .mobile-toggle {
                display: block;
            }
            .header-content {
                padding: 0 1rem;
            }
            .hero {
                padding: 2rem 1rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .web-links {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }
            .footer-content {
                flex-direction: column;
            }
        }
