        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0c1a2d;
            color: #e8f1f5;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4dabf7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
        }
        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, #0f2b46 0%, #081421 100%);
            border-bottom: 2px solid #1e3a5c;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffd700, #ff6b00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo span {
            color: #00cc88;
        }
        .desktop-nav {
            display: flex;
            gap: 30px;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
        }
        .desktop-nav a {
            color: #b3d9ff;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 5px;
        }
        .desktop-nav a:hover {
            background-color: rgba(77, 171, 247, 0.15);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #ffd700;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #0f2b46;
            padding: 20px;
            border-top: 1px solid #1e3a5c;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            z-index: 999;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            color: #b3d9ff;
            padding: 15px;
            border-bottom: 1px solid #1e3a5c;
            font-weight: 600;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #0a1829;
            font-size: 0.9rem;
        }
        .breadcrumb a {
            color: #80bdff;
        }
        .breadcrumb span {
            color: #cccccc;
            margin: 0 8px;
        }
        .hero-section {
            background: linear-gradient(rgba(12, 26, 45, 0.9), rgba(12, 26, 45, 0.9)), url('https://images.unsplash.com/photo-1531061682487-3d99ff3d4c4f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
            padding: 40px 0;
            text-align: center;
            border-bottom: 3px solid #ff6b00;
        }
        .hero-title {
            font-size: 2.8rem;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
        }
        .search-box {
            max-width: 600px;
            margin: 30px auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }
        .search-box input {
            flex-grow: 1;
            padding: 18px 25px;
            border: none;
            font-size: 1.1rem;
            background-color: #ffffff;
        }
        .search-box button {
            background: linear-gradient(90deg, #ff6b00, #ff8e00);
            color: white;
            border: none;
            padding: 0 35px;
            cursor: pointer;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s;
        }
        .search-box button:hover {
            background: linear-gradient(90deg, #ff8e00, #ffaa00);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 40px 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background-color: #112240;
            border-radius: 12px;
            padding: 35px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        h1 {
            font-size: 2.5rem;
            color: #ffd700;
            margin-bottom: 25px;
            border-left: 5px solid #ff6b00;
            padding-left: 15px;
        }
        h2 {
            font-size: 2rem;
            color: #4dabf7;
            margin: 35px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #2a4a6e;
        }
        h3 {
            font-size: 1.5rem;
            color: #80bdff;
            margin: 25px 0 15px;
        }
        p {
            margin-bottom: 22px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(255, 215, 0, 0.1);
            border-left: 4px solid #ffd700;
            padding: 20px;
            margin: 25px 0;
            border-radius: 0 8px 8px 0;
            font-weight: 600;
        }
        .info-box {
            background-color: #1a2f4d;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            border: 1px solid #2a4a6e;
        }
        .featured-img {
            width: 100%;
            border-radius: 12px;
            margin: 30px auto;
            border: 3px solid #ff6b00;
            box-shadow: 0 10px 20px rgba(0,0,0,0.5);
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .term {
            color: #00cc88;
            font-weight: bold;
            font-style: italic;
        }
        .rating-widget, .comment-widget {
            background-color: #112240;
            border-radius: 12px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .rating-title, .comment-title {
            font-size: 1.5rem;
            color: #ffd700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stars {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .star:hover,
        .star.active {
            color: #ffd700;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-form input, .comment-form input, .comment-form textarea {
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #2a4a6e;
            background-color: #0c1a2d;
            color: #e8f1f5;
            font-size: 1rem;
        }
        .comment-form textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00cc88, #00b377);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #00b377, #009966);
            transform: translateY(-3px);
            box-shadow: 0 5px 12px rgba(0, 204, 136, 0.3);
        }
        .web-links-section {
            margin: 50px 0;
            padding: 30px;
            background-color: #0a1829;
            border-radius: 12px;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .web-link {
            background-color: #112240;
            padding: 18px;
            border-radius: 8px;
            border-left: 4px solid #4dabf7;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .web-link:hover {
            transform: translateY(-5px);
            box-shadow: 0 7px 15px rgba(77, 171, 247, 0.2);
        }
        .site-footer {
            background-color: #081421;
            padding: 50px 0 20px;
            border-top: 3px solid #ff6b00;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ffd700, #ff6b00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer-column h4 {
            color: #ffd700;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .footer-column a {
            display: block;
            margin-bottom: 12px;
            color: #b3d9ff;
        }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #1e3a5c;
            color: #8a9bb2;
            font-size: 0.95rem;
        }
        .text-center {
            text-align: center;
        }
        .mb-30 {
            margin-bottom: 30px;
        }
        .mt-30 {
            margin-top: 30px;
        }
        .d-flex {
            display: flex;
            align-items: center;
            gap: 10px;
        }
