* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a0f2b 0%, #1a1f3a 100%);
            color: #e0e0ff;
            line-height: 1.8;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #29b6f6;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 15, 43, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #1e88e5;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 1rem 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #1e88e5, #4fc3f7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo a {
            background: none;
            -webkit-text-fill-color: inherit;
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #4fc3f7;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }
        .main-nav a:hover {
            background: rgba(33, 150, 243, 0.15);
            text-decoration: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
            background: rgba(20, 25, 60, 0.5);
        }
        .breadcrumb a {
            color: #80d8ff;
        }
        main {
            flex: 1;
            padding: 2rem 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 3rem;
            padding: 2rem;
            background: linear-gradient(rgba(30, 136, 229, 0.1), transparent);
            border-radius: 15px;
        }
        .article-header h1 {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            color: #bbdefb;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
        }
        .meta {
            color: #90caf9;
            font-style: italic;
        }
        .article-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 992px) {
            .article-content {
                grid-template-columns: 1fr;
            }
        }
        .content-body {
            background: rgba(25, 30, 70, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .content-body h2 {
            color: #64b5f6;
            border-left: 5px solid #1e88e5;
            padding-left: 15px;
            margin: 2.5rem 0 1.5rem;
            font-size: 1.8rem;
        }
        .content-body h3 {
            color: #90caf9;
            margin: 1.8rem 0 1rem;
        }
        .content-body p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .content-body strong {
            color: #ffcc80;
            font-weight: 700;
        }
        .feature-img {
            margin: 2.5rem 0;
            border-radius: 10px;
            overflow: hidden;
            border: 3px solid #1e88e5;
            box-shadow: 0 8px 20px rgba(30, 136, 229, 0.3);
        }
        .highlight-box {
            background: rgba(30, 136, 229, 0.1);
            border-left: 4px solid #ff9800;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(35, 40, 80, 0.8);
            padding: 1.8rem;
            border-radius: 10px;
            border: 1px solid #3949ab;
        }
        .widget h3 {
            color: #ffb74d;
            margin-bottom: 1.2rem;
            font-size: 1.4rem;
        }
        .search-form input {
            width: 100%;
            padding: 12px;
            border: 2px solid #5c6bc0;
            border-radius: 6px;
            background: #1a237e;
            color: white;
            margin-bottom: 10px;
        }
        .search-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #1e88e5, #1565c0);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s;
        }
        .search-form button:hover {
            transform: translateY(-2px);
            background: linear-gradient(90deg, #2196f3, #0d47a1);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffd54f;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-widget .stars i:hover {
            color: #ffca28;
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 120px;
            padding: 12px;
            border-radius: 6px;
            background: #1a237e;
            border: 2px solid #5c6bc0;
            color: white;
            resize: vertical;
            margin-bottom: 10px;
        }
        .footer-links {
            background: rgba(15, 20, 50, 0.9);
            padding: 3rem 0;
            margin-top: 3rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        .web-link {
            background: rgba(255, 255, 255, 0.05);
            padding: 1.2rem;
            border-radius: 8px;
            border: 1px solid #303f9f;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(30, 136, 229, 0.15);
            transform: translateY(-3px);
        }
        .site-footer {
            background: #0a0f2b;
            text-align: center;
            padding: 2rem;
            border-top: 1px solid #1a237e;
            font-size: 0.9rem;
            color: #90a4ae;
        }
        @media (max-width: 768px) {
            .nav-toggle {
                display: block;
            }
            .main-nav {
                width: 100%;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            .main-nav.active {
                max-height: 400px;
                margin-top: 1rem;
            }
            .main-nav ul {
                flex-direction: column;
                gap: 0.5rem;
            }
            .article-header h1 {
                font-size: 2rem;
            }
            .content-body {
                padding: 1.5rem;
            }
        }
