        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0a2a;
            color: #e0e0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc00;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        section {
            padding: 40px 0;
        }
        h1, h2, h3, h4 {
            color: #ffcc00;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.3;
        }
        h1 {
            font-size: 2.8rem;
            text-align: center;
            margin-top: 1rem;
        }
        h2 {
            font-size: 2.2rem;
            border-left: 5px solid #00bcd4;
            padding-left: 15px;
            margin-top: 2.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #4fc3f7;
            margin-top: 2rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }
        .lead {
            font-size: 1.3rem;
            font-weight: 300;
            color: #b3e5fc;
        }
        .highlight {
            background-color: rgba(255, 204, 0, 0.15);
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #00bcd4, #007c91);
            color: white;
            padding: 12px 28px;
            border-radius: 30px;
            font-weight: bold;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
        }
        .btn:hover {
            background: linear-gradient(135deg, #0097a7, #004d40);
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 188, 212, 0.5);
            color: #fff;
        }
        header {
            background-color: rgba(10, 10, 42, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid #00bcd4;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 900;
            color: #ffcc00;
            text-decoration: none;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
        }
        .logo a i {
            margin-right: 10px;
            color: #00bcd4;
        }
        nav {
            display: flex;
            align-items: center;
        }
        .nav-links {
            display: flex;
            list-style: none;
        }
        .nav-links li {
            margin-left: 30px;
        }
        .nav-links a {
            font-size: 1.1rem;
            font-weight: 600;
            padding: 8px 5px;
            position: relative;
        }
        .nav-links a:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ffcc00;
            transition: width 0.3s ease;
        }
        .nav-links a:hover:after {
            width: 100%;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #ffcc00;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: #111144;
            font-size: 0.95rem;
        }
        .breadcrumb ol {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
        }
        .breadcrumb li:not(:last-child):after {
            content: '›';
            margin: 0 10px;
            color: #4fc3f7;
        }
        .breadcrumb a {
            color: #b3e5fc;
        }
        .breadcrumb a:hover {
            color: #ffcc00;
        }
        .search-box {
            background: #111144;
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
        }
        .search-box h3 {
            margin-bottom: 20px;
        }
        .search-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        .search-input {
            flex-grow: 1;
            padding: 15px 20px;
            border: 2px solid #00bcd4;
            border-radius: 30px 0 0 30px;
            background: #0a0a2a;
            color: #fff;
            font-size: 1rem;
        }
        .search-btn {
            background: linear-gradient(135deg, #ffcc00, #ff9800);
            color: #0a0a2a;
            border: none;
            padding: 0 25px;
            border-radius: 0 30px 30px 0;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .search-btn:hover {
            background: linear-gradient(135deg, #ff9800, #f57c00);
        }
        .article-content {
            background-color: rgba(17, 17, 68, 0.7);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
            margin-bottom: 40px;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            overflow: hidden;
            margin: 30px 0;
            border: 3px solid #00bcd4;
        }
        .featured-image figcaption {
            text-align: center;
            font-style: italic;
            padding: 10px;
            background: #111144;
            color: #b3e5fc;
        }
        .info-box {
            background: linear-gradient(135deg, #1a237e, #311b92);
            padding: 25px;
            border-radius: 10px;
            border-left: 6px solid #ffcc00;
            margin: 30px 0;
        }
        .info-box h4 {
            color: #ffcc00;
            margin-top: 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        .stat-card {
            background: #111144;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            border-top: 4px solid #4fc3f7;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: #4fc3f7;
            margin-bottom: 15px;
        }
        .stat-card h4 {
            color: #ffcc00;
        }
        .user-interaction {
            background-color: #111144;
            padding: 40px;
            border-radius: 15px;
            margin-top: 50px;
        }
        .interaction-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        .comment-form, .rating-form {
            background: #0a0a2a;
            padding: 25px;
            border-radius: 10px;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #b3e5fc;
        }
        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: #111144;
            border: 1px solid #4fc3f7;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .star-rating {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 1.8rem;
            color: #555;
        }
        .star-rating input {
            display: none;
        }
        .star-rating label {
            cursor: pointer;
            margin-right: 5px;
        }
        .star-rating input:checked ~ label,
        .star-rating label:hover,
        .star-rating label:hover ~ label {
            color: #ffcc00;
        }
        .long-tail-links {
            background: #0a0a2a;
            padding: 40px 20px;
            margin-top: 60px;
            border-top: 2px solid #00bcd4;
            border-bottom: 2px solid #00bcd4;
        }
        .links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background: #111144;
            padding: 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        .web-link:hover {
            background: #1a237e;
            transform: scale(1.02);
        }
        .web-link a {
            color: #b3e5fc;
            display: block;
            font-size: 1rem;
        }
        .web-link a:hover {
            color: #ffcc00;
        }
        footer {
            text-align: center;
            padding: 30px 20px;
            background-color: #05051a;
            color: #8a8ac4;
            font-size: 0.95rem;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            list-style: none;
            margin-bottom: 20px;
        }
        .footer-links li {
            margin: 0 15px 10px;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 2rem; }
            .header-container { flex-direction: column; }
            .logo { margin-bottom: 15px; }
            .nav-links li { margin-left: 20px; }
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background-color: #0a0a2a;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 80px);
                padding-top: 40px;
                transition: right 0.5s ease;
                border-left: 2px solid #00bcd4;
                z-index: 999;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links li {
                margin: 0 0 25px 0;
                text-align: center;
            }
            .nav-links a {
                font-size: 1.2rem;
                padding: 10px;
            }
            .search-form { flex-direction: column; }
            .search-input { border-radius: 30px; margin-bottom: 10px; }
            .search-btn { border-radius: 30px; padding: 15px; }
            .article-content { padding: 25px; }
            .user-interaction { padding: 25px; }
            .interaction-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .container { padding: 0 15px; }
            .btn { padding: 10px 20px; }
        }
