* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f0f1a;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
        }
        a {
            color: #00b4ff;
            text-decoration: none;
            transition: color 0.3s;
        }
        a:hover {
            color: #ff6b9d;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            padding: 20px 0;
            border-bottom: 3px solid #00b4ff;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #00b4ff;
            text-shadow: 0 0 10px rgba(0, 180, 255, 0.7);
            letter-spacing: 2px;
        }
        .logo a {
            color: inherit;
        }
        .logo span {
            color: #ff6b9d;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .desktop-nav a {
            font-size: 1.1rem;
            padding: 10px 15px;
            border-radius: 5px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .desktop-nav a:hover {
            background-color: rgba(0, 180, 255, 0.2);
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #00b4ff;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #1a1a2e;
            padding: 20px;
            border-top: 2px solid #00b4ff;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .mobile-nav a {
            display: block;
            padding: 15px;
            border-radius: 5px;
            background-color: rgba(255, 255, 255, 0.05);
        }
        .breadcrumb {
            padding: 15px 0;
            background-color: rgba(255, 255, 255, 0.03);
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '>';
            margin-left: 10px;
            color: #888;
        }
        main {
            padding: 30px 0;
            min-height: 100vh;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: linear-gradient(90deg, #1a1a2e, #16213e);
            border-radius: 15px;
            border-left: 5px solid #ff6b9d;
        }
        h1 {
            font-size: 3.2rem;
            color: #00b4ff;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 180, 255, 0.5);
        }
        .subtitle {
            font-size: 1.4rem;
            color: #b0b0ff;
            margin-bottom: 20px;
        }
        .meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #888;
            font-size: 0.9rem;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 768px) {
            .content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background-color: rgba(255, 255, 255, 0.02);
            padding: 30px;
            border-radius: 15px;
            border: 1px solid rgba(0, 180, 255, 0.2);
        }
        .article-body h2 {
            font-size: 2.5rem;
            color: #ff6b9d;
            margin: 40px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #00b4ff;
        }
        .article-body h3 {
            font-size: 1.8rem;
            color: #00b4ff;
            margin: 30px 0 15px;
        }
        .article-body p {
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
            line-height: 1.9;
        }
        .highlight {
            background-color: rgba(0, 180, 255, 0.1);
            padding: 20px;
            border-left: 5px solid #ff6b9d;
            margin: 30px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
        }
        .image-container {
            text-align: center;
            margin: 40px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border-radius: 10px;
            border: 3px solid #00b4ff;
            box-shadow: 0 0 20px rgba(0, 180, 255, 0.5);
        }
        .image-caption {
            margin-top: 10px;
            font-style: italic;
            color: #aaa;
        }
        .sidebar {
            background-color: rgba(255, 255, 255, 0.02);
            padding: 25px;
            border-radius: 15px;
            border: 1px solid rgba(255, 107, 157, 0.2);
            align-self: start;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            color: #ff6b9d;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        .search-box {
            display: flex;
        }
        .search-box input {
            flex: 1;
            padding: 15px;
            border: none;
            background-color: rgba(255, 255, 255, 0.05);
            color: #fff;
            border-radius: 5px 0 0 5px;
            font-size: 1rem;
        }
        .search-box button {
            background-color: #00b4ff;
            color: white;
            border: none;
            padding: 15px 20px;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-box button:hover {
            background-color: #ff6b9d;
        }
        .rating-form, .comment-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .rating-stars {
            display: flex;
            gap: 10px;
            font-size: 1.8rem;
            color: #ffd700;
            cursor: pointer;
        }
        .rating-stars .star:hover {
            transform: scale(1.2);
        }
        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .form-group label {
            color: #b0b0ff;
        }
        .form-group input, .form-group textarea {
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid #444;
            border-radius: 5px;
            color: #fff;
            font-size: 1rem;
        }
        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }
        .submit-btn {
            background: linear-gradient(90deg, #00b4ff, #ff6b9d);
            color: white;
            border: none;
            padding: 15px;
            border-radius: 5px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-3px);
        }
        .footer-links {
            background-color: rgba(255, 255, 255, 0.02);
            padding: 40px 20px;
            margin-top: 50px;
            border-top: 2px solid #00b4ff;
        }
        .links-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        .web-link {
            background-color: rgba(0, 180, 255, 0.05);
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid #ff6b9d;
            transition: transform 0.3s, background 0.3s;
        }
        .web-link:hover {
            transform: translateX(10px);
            background-color: rgba(0, 180, 255, 0.1);
        }
        .web-link a {
            color: #e0e0ff;
            font-size: 1.1rem;
            display: block;
        }
        footer {
            background-color: #1a1a2e;
            padding: 40px 0;
            text-align: center;
            border-top: 3px solid #16213e;
        }
        .copyright {
            color: #888;
            font-size: 0.9rem;
            margin-top: 20px;
        }
        @media (max-width: 1024px) {
            h1 { font-size: 2.8rem; }
            .desktop-nav ul { gap: 20px; }
        }
        @media (max-width: 768px) {
            .header-content { flex-wrap: wrap; }
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            h1 { font-size: 2.2rem; }
            .subtitle { font-size: 1.1rem; }
            .article-body h2 { font-size: 2rem; }
            .article-body h3 { font-size: 1.5rem; }
            .article-body p { font-size: 1.1rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.8rem; }
            .breadcrumb ul { font-size: 0.9rem; }
        }
