        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.8;
            color: #e9e9e9;
            background: linear-gradient(135deg, #0a1a2a 0%, #1a2b3a 100%);
            min-height: 100vh;
            background-attachment: fixed;
        }
        a {
            color: #4da6ff;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #80ccff;
            text-shadow: 0 0 8px rgba(77, 166, 255, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight {
            background: linear-gradient(90deg, transparent, rgba(255,215,0,0.15), transparent);
            padding: 2px 8px;
            border-left: 3px solid gold;
        }
        .section-spacing {
            padding: 60px 0;
        }
        .btn {
            display: inline-block;
            padding: 12px 28px;
            background: linear-gradient(to right, #0066cc, #004d99);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
        }
        .btn:hover {
            background: linear-gradient(to right, #0073e6, #0059b3);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 102, 204, 0.5);
        }
        .site-header {
            background: rgba(10, 25, 40, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #1e3a5c;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            letter-spacing: 1px;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #b3d9ff;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 5px 0;
            position: relative;
        }
        .desktop-nav a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #ffcc00, #ff9900);
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #b3d9ff;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 20px;
            background: rgba(30, 58, 92, 0.6);
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #a3c6ff;
        }
        .breadcrumb span {
            color: #cccccc;
            margin: 0 8px;
        }
        .mobile-nav {
            display: none;
            background: rgba(15, 35, 55, 0.98);
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 20px;
            border-top: 1px solid #2a4a6e;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
        }
        .mobile-nav li {
            margin-bottom: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 12px;
            background: rgba(255,255,255,0.05);
            border-radius: 6px;
            font-weight: 600;
            border-left: 4px solid #0066cc;
        }
        .hero {
            padding: 80px 20px;
            background: radial-gradient(circle at top right, rgba(0, 60, 120, 0.3), transparent 50%),
                        radial-gradient(circle at bottom left, rgba(120, 60, 0, 0.2), transparent 50%);
            text-align: center;
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 25px;
            background: linear-gradient(90deg, #fff, #ffcc00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
            color: #d1e7ff;
        }
        .search-container {
            max-width: 600px;
            margin: 40px auto;
            padding: 0 20px;
        }
        .search-form {
            display: flex;
            background: rgba(255,255,255,0.1);
            border: 2px solid #2a4a6e;
            border-radius: 50px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }
        .search-form:focus-within {
            border-color: #4da6ff;
        }
        .search-input {
            flex: 1;
            padding: 18px 25px;
            background: transparent;
            border: none;
            color: white;
            font-size: 1.1rem;
        }
        .search-input::placeholder {
            color: #a3c6ff;
        }
        .search-btn {
            background: linear-gradient(90deg, #0066cc, #004d99);
            color: white;
            border: none;
            padding: 0 30px;
            cursor: pointer;
            font-size: 1.1rem;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #0073e6, #0059b3);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 20px;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 40, 60, 0.7);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #2a4a6e;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        .article-content h2 {
            font-size: 2.5rem;
            margin: 40px 0 20px;
            color: #ffcc00;
            border-bottom: 2px solid rgba(255, 204, 0, 0.3);
            padding-bottom: 10px;
        }
        .article-content h3 {
            font-size: 1.8rem;
            margin: 30px 0 15px;
            color: #80ccff;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.15rem;
            text-align: justify;
        }
        .article-content blockquote {
            border-left: 5px solid #ff9900;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #cccccc;
            background: rgba(255, 153, 0, 0.05);
            padding: 20px;
            border-radius: 0 8px 8px 0;
        }
        .article-content ul, .article-content ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #a3c6ff;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .inline-links {
            display: inline-flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 20px 0;
        }
        .inline-links a {
            background: rgba(77, 166, 255, 0.1);
            padding: 8px 16px;
            border-radius: 6px;
            border: 1px solid rgba(77, 166, 255, 0.3);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(20, 40, 60, 0.7);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #2a4a6e;
        }
        .sidebar-widget h3 {
            color: #ffcc00;
            margin-bottom: 20px;
            font-size: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 204, 0, 0.3);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #555;
        }
        .rating-widget .stars i {
            cursor: pointer;
            transition: color 0.2s, transform 0.2s;
        }
        .rating-widget .stars i:hover {
            transform: scale(1.2);
        }
        .rating-widget .stars i.active {
            color: #ffcc00;
            text-shadow: 0 0 10px gold;
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 15px;
            background: rgba(255,255,255,0.05);
            border: 1px solid #2a4a6e;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            resize: vertical;
            margin-bottom: 15px;
        }
        .comment-form input[type="text"],
        .comment-form input[type="email"] {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: rgba(255,255,255,0.05);
            border: 1px solid #2a4a6e;
            border-radius: 8px;
            color: white;
        }
        .footer-links {
            background: rgba(10, 25, 40, 0.9);
            padding: 50px 20px;
            border-top: 2px solid #1e3a5c;
            border-bottom: 2px solid #1e3a5c;
        }
        .footer-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
        }
        .web-link {
            background: rgba(30, 58, 92, 0.5);
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease, background 0.3s ease;
        }
        .web-link:hover {
            background: rgba(30, 58, 92, 0.8);
            transform: translateY(-5px);
        }
        .web-link a {
            color: #b3d9ff;
            font-weight: 600;
            font-size: 1.1rem;
            display: block;
        }
        .web-link p {
            margin-top: 10px;
            color: #a3c6ff;
            font-size: 0.95rem;
        }
        .site-footer {
            padding: 30px 20px;
            text-align: center;
            color: #a3c6ff;
            font-size: 0.95rem;
            background: rgba(5, 15, 25, 0.95);
        }
        .site-footer p {
            margin-bottom: 10px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .header-container {
                padding: 12px 15px;
            }
            .hero {
                padding: 50px 15px;
            }
            .article-content {
                padding: 25px;
            }
            .article-content h2 {
                font-size: 2rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
            .main-content {
                padding: 20px 15px;
                gap: 25px;
            }
            .search-form {
                flex-direction: column;
                border-radius: 15px;
            }
            .search-input, .search-btn {
                width: 100%;
                border-radius: 0;
                padding: 15px;
            }
        }
