        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a2e38 0%, #1a1a2e 100%);
            color: #f0f0f0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: #4fc3f7;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #29b6f6;
            text-shadow: 0 0 8px rgba(41, 182, 246, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 25, 47, 0.95);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #00bcd4;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #00bcd4, #00e676);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .logo a:hover {
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 188, 212, 0.7);
        }
        .nav-desktop ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .nav-desktop a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
        }
        .nav-desktop a:hover {
            background: rgba(0, 188, 212, 0.15);
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #00bcd4;
        }
        .nav-mobile {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: rgba(10, 25, 47, 0.98);
            padding: 1rem;
            border-top: 1px solid #00bcd4;
        }
        .nav-mobile.active {
            display: block;
        }
        .nav-mobile ul {
            list-style: none;
        }
        .nav-mobile li {
            margin: 1rem 0;
        }
        .nav-mobile a {
            display: block;
            padding: 0.8rem;
            border-radius: 4px;
            font-size: 1.1rem;
        }
        .nav-mobile a:hover {
            background: rgba(0, 188, 212, 0.2);
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #80d8ff;
        }
        .hero {
            padding: 3rem 0;
            text-align: center;
            background: radial-gradient(circle at center, rgba(26, 35, 126, 0.2) 0%, transparent 70%);
        }
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(90deg, #00e676, #00bcd4);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            color: #bdbdbd;
        }
        .search-bar {
            max-width: 600px;
            margin: 2rem auto;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            border: 1px solid #37474f;
        }
        .search-bar form {
            display: flex;
        }
        .search-bar input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: none;
            border-radius: 8px 0 0 8px;
            background: #1e3a5f;
            color: white;
            font-size: 1rem;
        }
        .search-bar button {
            padding: 0.9rem 1.5rem;
            background: linear-gradient(90deg, #00bcd4, #00838f);
            color: white;
            border: none;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s;
        }
        .search-bar button:hover {
            background: linear-gradient(90deg, #00acc1, #006064);
            transform: scale(1.03);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(30, 40, 60, 0.6);
            padding: 2.5rem;
            border-radius: 16px;
            border-left: 5px solid #00bcd4;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        .article-content h2 {
            font-size: 2.2rem;
            margin: 2rem 0 1rem;
            color: #4fc3f7;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #00bcd4;
        }
        .article-content h3 {
            font-size: 1.7rem;
            margin: 1.5rem 0 1rem;
            color: #80deea;
        }
        .article-content p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #00e676;
            font-weight: 700;
        }
        .article-content em {
            color: #ffcc80;
        }
        .highlight-box {
            background: rgba(0, 150, 136, 0.15);
            border-left: 4px solid #009688;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .image-container {
            margin: 2.5rem 0;
            text-align: center;
        }
        .image-container img {
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
            transition: transform 0.5s ease;
            border: 3px solid #00bcd4;
        }
        .image-container img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #90a4ae;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: rgba(40, 50, 80, 0.7);
            padding: 1.5rem;
            border-radius: 12px;
            border-top: 4px solid #00e676;
        }
        .widget h3 {
            color: #00e676;
            margin-bottom: 1rem;
            font-size: 1.5rem;
        }
        .comment-rating-section {
            margin-top: 3rem;
            padding: 2rem;
            background: rgba(30, 40, 60, 0.7);
            border-radius: 16px;
        }
        .comment-rating-section h2 {
            color: #ff9800;
            margin-bottom: 1.5rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #bdbdbd;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.9rem;
            background: #1e3a5f;
            border: 1px solid #37474f;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .rating-stars {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        .rating-stars i {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars i.active {
            color: #ffd600;
        }
        .submit-btn {
            background: linear-gradient(90deg, #ff9800, #f57c00);
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: bold;
            cursor: pointer;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            background: linear-gradient(90deg, #ffb74d, #ff9800);
            transform: translateY(-3px);
        }
        .footer-links {
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(20, 30, 48, 0.8);
            border-radius: 12px;
        }
        .footer-links h3 {
            text-align: center;
            color: #00bcd4;
            margin-bottom: 2rem;
            font-size: 1.8rem;
        }
        .web-links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link {
            background: rgba(55, 71, 79, 0.4);
            padding: 1rem;
            border-radius: 8px;
            border-left: 3px solid #00bcd4;
            transition: all 0.3s;
        }
        .web-link:hover {
            background: rgba(0, 188, 212, 0.2);
            transform: translateX(5px);
        }
        .web-link a {
            font-weight: 600;
            display: block;
        }
        .site-footer {
            background: #0a1929;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid #00bcd4;
        }
        .footer-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .copyright {
            color: #90a4ae;
            font-size: 0.9rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #37474f;
            width: 100%;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
            .hamburger {
                display: block;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .hero p {
                font-size: 1.1rem;
            }
            .article-content {
                padding: 1.5rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
            .search-bar form {
                flex-direction: column;
            }
            .search-bar input,
            .search-bar button {
                width: 100%;
                border-radius: 8px;
                margin-bottom: 0.5rem;
            }
        }
