        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0a0f2b;
            color: #e0e0ff;
            line-height: 1.8;
            overflow-x: hidden;
            background-image: linear-gradient(to bottom, #0a0f2b 0%, #141a3a 100%);
        }
        a {
            color: #4fc3f7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #29b6f6;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(90deg, #0d47a1, #1565c0);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.5rem;
            font-weight: 900;
            color: #ffeb3b;
            text-shadow: 3px 3px 0 #ff5722, 6px 6px 0 rgba(0, 0, 0, 0.2);
            letter-spacing: -1px;
            font-family: 'Impact', 'Arial Black', sans-serif;
            transition: all 0.3s ease;
        }
        .my-logo:hover {
            transform: scale(1.05) rotate(-2deg);
            text-shadow: 4px 4px 0 #ff5722, 8px 8px 0 rgba(0, 0, 0, 0.2);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .main-nav a {
            color: #fff;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: 4px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .main-nav a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: #ffeb3b;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            color: #fff;
            background: none;
            border: none;
            cursor: pointer;
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #1a237e;
            font-size: 0.9rem;
            margin-bottom: 2rem;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: "›";
            margin-left: 0.5rem;
            color: #7986cb;
        }
        .content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 2rem 0;
        }
        @media (max-width: 992px) {
            .content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        main {
            background: rgba(30, 35, 70, 0.7);
            border-radius: 16px;
            padding: 3rem;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(64, 196, 255, 0.2);
        }
        article {
            margin-bottom: 3rem;
        }
        h1 {
            font-size: 3.5rem;
            color: #40c4ff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(64, 196, 255, 0.3);
            border-bottom: 3px solid #ff5722;
            padding-bottom: 0.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #81d4fa;
            margin: 2.5rem 0 1.5rem;
            padding-left: 0.5rem;
            border-left: 5px solid #29b6f6;
        }
        h3 {
            font-size: 1.8rem;
            color: #b3e5fc;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #e1f5fe;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: #bbdefb;
            font-weight: 300;
            background: rgba(33, 150, 243, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 5px solid #2196f3;
        }
        .highlight {
            background-color: rgba(255, 235, 59, 0.15);
            padding: 2rem;
            border-radius: 10px;
            border: 1px dashed #ffeb3b;
            margin: 2rem 0;
        }
        .inline-link {
            font-weight: bold;
            border-bottom: 2px dotted #4fc3f7;
        }
        .featured-image {
            margin: 3rem auto;
            max-width: 800px;
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            color: #90a4ae;
            margin-top: 0.5rem;
            font-size: 0.95rem;
        }
        blockquote {
            border-left: 5px solid #ff9800;
            padding-left: 1.5rem;
            margin: 2rem 0;
            color: #ffcc80;
            font-size: 1.2rem;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: rgba(41, 182, 246, 0.1);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border: 1px solid rgba(41, 182, 246, 0.3);
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-5px);
            border-color: #29b6f6;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: #40c4ff;
            display: block;
        }
        .stat-label {
            font-size: 1rem;
            color: #bbdefb;
        }
        aside {
            background: rgba(40, 45, 85, 0.8);
            border-radius: 16px;
            padding: 2rem;
            align-self: start;
            position: sticky;
            top: 120px;
            border: 1px solid rgba(255, 152, 0, 0.3);
        }
        .sidebar-widget {
            margin-bottom: 2.5rem;
        }
        .sidebar-widget h3 {
            font-size: 1.5rem;
            color: #ff9800;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(255, 152, 0, 0.5);
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex: 1;
            padding: 0.8rem;
            border: 1px solid #3949ab;
            background: #1a237e;
            color: #fff;
            border-radius: 4px 0 0 4px;
        }
        .search-form button {
            background: #ff5722;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background: #f4511e;
        }
        .rating-widget {
            text-align: center;
        }
        .stars {
            font-size: 2rem;
            color: #ffd740;
            margin: 1rem 0;
            cursor: pointer;
        }
        .stars i:hover {
            transform: scale(1.2);
        }
        .comment-form textarea {
            width: 100%;
            height: 150px;
            padding: 1rem;
            background: #1a237e;
            border: 1px solid #3949ab;
            color: #fff;
            border-radius: 8px;
            resize: vertical;
            margin-bottom: 1rem;
        }
        .comment-form button {
            background: #4caf50;
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 4px;
            cursor: pointer;
            width: 100%;
            font-weight: bold;
            transition: background 0.3s;
        }
        .comment-form button:hover {
            background: #388e3c;
        }
        .site-footer {
            background: linear-gradient(to bottom, #1a237e, #0d47a1);
            padding: 3rem 0 2rem;
            margin-top: 4rem;
            border-top: 5px solid #ff5722;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        friend-link {
            display: block;
            background: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: 8px;
            margin-bottom: 0.8rem;
            border-left: 4px solid #ff9800;
            transition: all 0.3s ease;
        }
        friend-link:hover {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: #40c4ff;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #90a4ae;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header-inner {
                flex-wrap: wrap;
            }
            .hamburger {
                display: block;
            }
            .main-nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background-color: #1565c0;
                position: absolute;
                top: 100%;
                left: 0;
                padding: 1rem;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
            }
            .main-nav.active ul {
                display: flex;
            }
            h1 {
                font-size: 2.5rem;
            }
            h2 {
                font-size: 1.8rem;
            }
            main {
                padding: 2rem 1.5rem;
            }
            .content-wrapper {
                gap: 2rem;
            }
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 0.3rem;
        }
        .keyword {
            font-weight: bold;
            color: #ffeb3b;
            background: rgba(255, 235, 59, 0.1);
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
        .fade-in {
            animation: fadeIn 1s ease-out;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .pulse {
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(64, 196, 255, 0.5); }
            70% { box-shadow: 0 0 0 10px rgba(64, 196, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(64, 196, 255, 0); }
        }
