        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0c0c1d 0%, #1a1a2e 50%, #16213e 100%);
            color: #e0e0ff;
            line-height: 1.8;
            min-height: 100vh;
            padding-bottom: 40px;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #74c0fc;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .main-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 30px;
        }
        @media (min-width: 992px) {
            .main-grid {
                grid-template-columns: 3fr 1fr;
            }
        }
        header {
            background: rgba(12, 12, 29, 0.95);
            border-bottom: 2px solid #4dabf7;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #4dabf7, #a5d8ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -1px;
        }
        .logo a:hover {
            background: linear-gradient(90deg, #a5d8ff, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 1.8rem;
        }
        .desktop-nav a {
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 0.2rem;
            border-bottom: 2px solid transparent;
        }
        .desktop-nav a:hover {
            border-bottom-color: #4dabf7;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            background: none;
            border: none;
            color: #a5d8ff;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            width: 100%;
            margin-top: 1rem;
            background: rgba(26, 26, 46, 0.98);
            border-radius: 10px;
            padding: 1rem;
            flex-direction: column;
            gap: 1rem;
        }
        .mobile-nav.active {
            display: flex;
        }
        @media (max-width: 768px) {
            .desktop-nav {
                display: none;
            }
            .hamburger {
                display: block;
            }
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #a5d8ff;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        article {
            background: rgba(22, 33, 62, 0.7);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            border: 1px solid #2a3b6b;
        }
        h1, h2, h3, h4 {
            color: #a5d8ff;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            line-height: 1.3;
        }
        h1 {
            font-size: 3rem;
            border-left: 6px solid #4dabf7;
            padding-left: 1rem;
            margin-top: 0;
        }
        h2 {
            font-size: 2.2rem;
            border-bottom: 2px dashed #4dabf7;
            padding-bottom: 0.5rem;
        }
        h3 {
            font-size: 1.8rem;
            color: #74c0fc;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.15rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(77, 171, 247, 0.2), transparent);
            border-left: 4px solid #4dabf7;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 10px 10px 0;
        }
        .emoji {
            font-size: 1.5rem;
            margin-right: 10px;
            vertical-align: middle;
        }
        aside {
            background: rgba(12, 12, 29, 0.8);
            border-radius: 20px;
            padding: 2rem;
            align-self: start;
            border: 1px solid #2a3b6b;
        }
        .widget {
            margin-bottom: 2.5rem;
        }
        .widget h3 {
            font-size: 1.5rem;
            margin-bottom: 1.2rem;
            color: #a5d8ff;
        }
        .search-form input, .comment-form input, .comment-form textarea, .rating-form select {
            width: 100%;
            padding: 12px 15px;
            margin-bottom: 15px;
            border-radius: 8px;
            border: 1px solid #2a3b6b;
            background: rgba(22, 33, 62, 0.8);
            color: #e0e0ff;
            font-size: 1rem;
        }
        .search-form button, .comment-form button, .rating-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #4dabf7, #339af0);
            color: white;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1.1rem;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .search-form button:hover, .comment-form button:hover, .rating-form button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(77, 171, 247, 0.4);
        }
        .rating-stars {
            color: #ffd43b;
            font-size: 1.5rem;
            margin: 10px 0;
        }
        .featured-image {
            margin: 3rem auto;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            margin-top: 10px;
            color: #a5d8ff;
            font-size: 0.95rem;
        }
        .internal-links {
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(26, 26, 46, 0.6);
            border-radius: 15px;
        }
        .internal-links h3 {
            text-align: center;
            margin-bottom: 1.5rem;
        }
        .internal-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            justify-content: center;
        }
        .internal-links li {
            background: rgba(77, 171, 247, 0.1);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            border: 1px solid #4dabf7;
            transition: all 0.3s ease;
        }
        .internal-links li:hover {
            background: rgba(77, 171, 247, 0.3);
            transform: scale(1.05);
        }
        .web-links {
            margin-top: 4rem;
            padding: 2rem;
            background: rgba(12, 12, 29, 0.9);
            border-radius: 15px;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.2rem;
        }
        .web-link a {
            display: block;
            padding: 0.8rem;
            background: rgba(22, 33, 62, 0.8);
            border-radius: 8px;
            text-align: center;
            border: 1px solid #2a3b6b;
        }
        .web-link a:hover {
            background: rgba(77, 171, 247, 0.2);
        }
        footer {
            margin-top: 4rem;
            text-align: center;
            padding: 2rem;
            border-top: 1px solid #2a3b6b;
            color: #a5d8ff;
            font-size: 0.95rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }
            h3 { font-size: 1.6rem; }
            article, aside { padding: 1.8rem; }
            .internal-links ul { flex-direction: column; align-items: center; }
            .web-links { grid-template-columns: 1fr; }
        }
