        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0a0a2a, #1a1a40);
            color: #f0f0f0;
            line-height: 1.6;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffeb3b;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: rgba(10, 10, 40, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #4fc3f7;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        .logo {
            font-size: 2.2rem;
            font-weight: 800;
            color: #ffeb3b;
            text-shadow: 0 0 10px #4fc3f7;
        }
        .logo a {
            color: inherit;
            text-decoration: none;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4fc3f7;
        }
        nav {
            display: flex;
            gap: 25px;
        }
        nav a {
            font-size: 1.1rem;
            padding: 8px 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        nav a:hover {
            background: rgba(79, 195, 247, 0.2);
        }
        .breadcrumb {
            padding: 10px 0;
            font-size: 0.9rem;
            color: #aaa;
        }
        .breadcrumb a {
            color: #4fc3f7;
        }
        main {
            flex: 1;
            padding: 30px 0;
        }
        .article-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px;
            background: rgba(30, 30, 60, 0.7);
            border-radius: 15px;
            border-left: 5px solid #ff4081;
        }
        h1 {
            font-size: 3rem;
            color: #ffeb3b;
            margin-bottom: 15px;
            text-shadow: 2px 2px 5px #000;
        }
        .article-meta {
            display: flex;
            justify-content: center;
            gap: 20px;
            color: #aaa;
            font-size: 0.95rem;
        }
        .content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .content {
                grid-template-columns: 1fr;
            }
        }
        .article-body {
            background: rgba(20, 20, 50, 0.8);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        h2 {
            font-size: 2.2rem;
            color: #4fc3f7;
            margin: 30px 0 15px;
            padding-bottom: 10px;
            border-bottom: 2px dashed #ff4081;
        }
        h3 {
            font-size: 1.8rem;
            color: #ff9800;
            margin: 25px 0 10px;
        }
        p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background: rgba(255, 235, 59, 0.15);
            border-left: 4px solid #ffeb3b;
            padding: 15px;
            margin: 20px 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.3rem;
            margin-right: 8px;
        }
        .featured-image {
            margin: 30px auto;
            text-align: center;
        }
        .featured-image img {
            border-radius: 15px;
            border: 3px solid #4fc3f7;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
            transition: transform 0.3s;
        }
        .featured-image img:hover {
            transform: scale(1.02);
        }
        .image-caption {
            font-style: italic;
            color: #aaa;
            margin-top: 10px;
        }
        .sidebar {
            background: rgba(30, 30, 60, 0.8);
            padding: 25px;
            border-radius: 15px;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 30px;
        }
        .widget h3 {
            font-size: 1.5rem;
            color: #ff4081;
            margin-bottom: 15px;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            border: 1px solid #4fc3f7;
            border-radius: 8px;
            background: rgba(10, 10, 30, 0.8);
            color: #f0f0f0;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(45deg, #4fc3f7, #2979ff);
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(79, 195, 247, 0.4);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin: 40px 0;
            padding: 30px;
            background: rgba(20, 20, 50, 0.9);
            border-radius: 15px;
        }
        @media (max-width: 768px) {
            .footer-links {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .footer-links {
                grid-template-columns: 1fr;
            }
        }
        .web-link {
            padding: 15px;
            background: rgba(40, 40, 80, 0.7);
            border-radius: 10px;
            text-align: center;
            transition: background 0.3s;
        }
        .web-link:hover {
            background: rgba(79, 195, 247, 0.3);
        }
        footer {
            background: #0a0a2a;
            text-align: center;
            padding: 25px;
            margin-top: 40px;
            border-top: 2px solid #4fc3f7;
        }
        .copyright {
            color: #aaa;
            font-size: 0.9rem;
            margin-top: 10px;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            nav {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: rgba(10, 10, 40, 0.95);
                padding: 20px;
                border-top: 1px solid #4fc3f7;
            }
            nav.active {
                display: flex;
            }
            h1 {
                font-size: 2.2rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            .article-body, .sidebar {
                padding: 20px;
            }
        }
