        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f1419;
            color: #e0e0e0;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 60px 0;
        }
        h1, h2, h3, h4 {
            color: #ffffff;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #339af0;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #a5d8ff;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .highlight {
            background-color: rgba(51, 154, 240, 0.15);
            border-left: 4px solid #339af0;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        .warning {
            background-color: rgba(255, 107, 107, 0.15);
            border-left: 4px solid #ff6b6b;
            padding: 20px;
            border-radius: 0 8px 8px 0;
            margin: 25px 0;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(90deg, #339af0, #4dabf7);
            color: white;
            padding: 12px 28px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(51, 154, 240, 0.3);
            color: white;
        }
        header {
            background-color: rgba(15, 20, 25, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid #2a323d;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #339af0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .logo span {
            color: #74c0fc;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            color: #c1c9d2;
            font-weight: 500;
            padding: 8px 0;
            position: relative;
        }
        .desktop-nav a:hover {
            color: #74c0fc;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #339af0;
            transition: width 0.3s ease;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #74c0fc;
            cursor: pointer;
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #0f1419;
            padding: 20px;
            transform: translateY(-100%);
            opacity: 0;
            transition: transform 0.4s ease, opacity 0.4s ease;
            z-index: 999;
            border-top: 1px solid #2a323d;
            display: none;
            flex-direction: column;
            gap: 20px;
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
        }
        .mobile-nav a {
            color: #c1c9d2;
            font-size: 1.2rem;
            padding: 12px 0;
            border-bottom: 1px solid #2a323d;
            display: block;
        }
        .breadcrumb {
            padding: 20px 0;
            color: #8a9bb2;
            font-size: 0.95rem;
        }
        .breadcrumb a {
            color: #8a9bb2;
        }
        .breadcrumb a:hover {
            color: #74c0fc;
        }
        .search-container {
            margin: 30px 0;
            display: flex;
            max-width: 600px;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #339af0;
            border-radius: 50px 0 0 50px;
            background-color: #1a2029;
            color: white;
            font-size: 1rem;
            outline: none;
        }
        .search-btn {
            background: linear-gradient(90deg, #339af0, #4dabf7);
            color: white;
            border: none;
            padding: 0 30px;
            border-radius: 0 50px 50px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(90deg, #1c7ed6, #339af0);
        }
        .article-content {
            background-color: #151b22;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            margin-bottom: 40px;
        }
        .meta-info {
            display: flex;
            gap: 20px;
            color: #8a9bb2;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #2a323d;
            flex-wrap: wrap;
        }
        .meta-info span i {
            margin-right: 8px;
            color: #339af0;
        }
        .featured-img {
            margin: 30px 0;
            position: relative;
            overflow: hidden;
            border-radius: 12px;
        }
        .featured-img img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-img:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            color: #8a9bb2;
            font-style: italic;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        .content-list {
            background-color: #1a2029;
            padding: 25px;
            border-radius: 10px;
            margin: 30px 0;
        }
        .content-list h3 {
            margin-bottom: 15px;
        }
        .content-list ul {
            list-style-position: inside;
            color: #a5d8ff;
        }
        .content-list li {
            margin-bottom: 10px;
            padding-left: 10px;
        }
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            background-color: #1a2029;
            border-radius: 10px;
            overflow: hidden;
        }
        .data-table th, .data-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #2a323d;
        }
        .data-table th {
            background-color: #25303d;
            color: #74c0fc;
            font-weight: 600;
        }
        .data-table tr:hover {
            background-color: #212934;
        }
        .interview {
            background: linear-gradient(145deg, #1a2029, #151b22);
            padding: 30px;
            border-radius: 12px;
            margin: 40px 0;
            border-left: 5px solid #ff6b6b;
        }
        .quote {
            font-size: 1.3rem;
            color: #a5d8ff;
            font-style: italic;
            margin: 20px 0;
            padding-left: 20px;
            border-left: 3px solid #4dabf7;
        }
        .rating-section {
            background-color: #151b22;
            border-radius: 12px;
            padding: 40px;
            margin: 40px 0;
        }
        .star-rating {
            display: flex;
            gap: 10px;
            margin: 20px 0;
            font-size: 2rem;
            color: #ffd43b;
            cursor: pointer;
        }
        .star-rating i {
            transition: transform 0.2s ease;
        }
        .star-rating i:hover {
            transform: scale(1.2);
        }
        .comment-form, .rating-form {
            margin-top: 30px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #c1c9d2;
            font-weight: 500;
        }
        .form-control {
            width: 100%;
            padding: 15px;
            background-color: #1a2029;
            border: 1px solid #2a323d;
            border-radius: 8px;
            color: white;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-control:focus {
            outline: none;
            border-color: #339af0;
        }
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #20c997, #12b886);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: transform 0.3s ease;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
        }
        .web-links {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
            margin: 50px 0;
        }
        .web-link {
            background-color: #1a2029;
            padding: 20px;
            border-radius: 8px;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .web-link:hover {
            transform: translateY(-5px);
            background-color: #212934;
        }
        .web-link a {
            color: #a5d8ff;
            font-size: 1.1rem;
            display: block;
        }
        footer {
            background-color: #0a0e13;
            padding: 50px 0 20px;
            border-top: 1px solid #2a323d;
            margin-top: 50px;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #339af0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 15px;
        }
        .copyright {
            color: #8a9bb2;
            font-size: 0.9rem;
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a323d;
            margin-top: 30px;
            width: 100%;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .desktop-nav { display: none; }
            .hamburger { display: block; }
            .mobile-nav { display: flex; }
        }
        @media (max-width: 768px) {
            .container { padding: 0 15px; }
            .article-content { padding: 25px; }
            .meta-info { flex-direction: column; gap: 10px; }
            .web-links { grid-template-columns: 1fr; }
            .footer-container { flex-direction: column; }
            .search-container { flex-direction: column; }
            .search-input { border-radius: 50px; margin-bottom: 10px; }
            .search-btn { border-radius: 50px; padding: 15px; }
        }
