        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        body {
            background-color: #0f1525;
            color: #e0e7ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #6ab1f7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #ffcc5c;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        header {
            background: linear-gradient(135deg, #1a2332 0%, #0a0f1a 100%);
            padding: 1rem 0;
            border-bottom: 2px solid #2a3a5a;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 900;
            background: linear-gradient(to right, #ffcc5c, #6ab1f7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }
        .my-logo:hover {
            opacity: 0.9;
        }
        .desktop-nav {
            display: flex;
            gap: 2rem;
        }
        .desktop-nav a {
            padding: 0.5rem 1rem;
            border-radius: 5px;
            font-weight: 600;
        }
        .desktop-nav a:hover {
            background-color: #2a3a5a;
        }
        .mobile-menu-btn {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6ab1f7;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background-color: #1a2332;
            padding: 1rem;
            border-radius: 8px;
            margin-top: 1rem;
            border: 1px solid #2a3a5a;
        }
        .mobile-nav.active {
            display: flex;
        }
        .mobile-nav a {
            padding: 0.8rem;
            border-bottom: 1px solid #2a3a5a;
        }
        .mobile-nav a:last-child {
            border-bottom: none;
        }
        .breadcrumb {
            padding: 1rem 0;
            font-size: 0.9rem;
            color: #a0b3d9;
        }
        .breadcrumb a {
            margin: 0 5px;
        }
        .breadcrumb span {
            margin: 0 5px;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            margin: 2rem 0;
        }
        @media (max-width: 768px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        article {
            background: rgba(26, 35, 50, 0.7);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid #2a3a5a;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 2.8rem;
            color: #ffcc5c;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #6ab1f7;
            padding-left: 1rem;
        }
        h2 {
            font-size: 2rem;
            color: #6ab1f7;
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #2a3a5a;
        }
        h3 {
            font-size: 1.6rem;
            color: #9acdff;
            margin: 2rem 0 1rem;
        }
        h4 {
            font-size: 1.3rem;
            color: #b3d1ff;
            margin: 1.5rem 0 0.8rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(106, 177, 247, 0.15);
            border-left: 4px solid #ffcc5c;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .featured-image {
            width: 100%;
            margin: 2rem 0;
            text-align: center;
        }
        .featured-image figcaption {
            font-style: italic;
            color: #a0b3d9;
            margin-top: 0.5rem;
        }
        aside {
            background: rgba(26, 35, 50, 0.7);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid #2a3a5a;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 2rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: #ffcc5c;
        }
        .search-box, .comment-form, .score-form {
            background-color: #1a2332;
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid #2a3a5a;
        }
        .search-box input, .comment-form textarea, .comment-form input, .score-form select {
            width: 100%;
            padding: 0.8rem;
            margin-bottom: 1rem;
            border-radius: 5px;
            border: 1px solid #3a4a6a;
            background-color: #0f1525;
            color: #e0e7ff;
        }
        .search-box button, .comment-form button, .score-form button {
            width: 100%;
            padding: 0.8rem;
            background: linear-gradient(to right, #2a75bb, #6ab1f7);
            color: white;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.2s ease;
        }
        .search-box button:hover, .comment-form button:hover, .score-form button:hover {
            transform: translateY(-2px);
            background: linear-gradient(to right, #1f5c94, #4a9be6);
        }
        .stars {
            display: flex;
            justify-content: space-around;
            margin: 1rem 0;
            font-size: 1.8rem;
            color: #ffcc5c;
        }
        .stars i {
            cursor: pointer;
        }
        footer {
            background: #0a0f1a;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
            border-top: 2px solid #2a3a5a;
        }
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h3 {
            color: #ffcc5c;
            margin-bottom: 1.5rem;
            font-size: 1.4rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }
        .friend-link {
            padding: 0.8rem;
            background-color: #1a2332;
            border-radius: 5px;
            border-left: 4px solid #6ab1f7;
            transition: all 0.3s ease;
        }
        .friend-link:hover {
            background-color: #2a3a5a;
            transform: translateX(5px);
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            margin-top: 2rem;
            border-top: 1px solid #2a3a5a;
            color: #a0b3d9;
            font-size: 0.9rem;
        }
        @media (max-width: 992px) {
            h1 { font-size: 2.4rem; }
            h2 { font-size: 1.8rem; }
            article { padding: 2rem; }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-btn { display: block; }
            .header-container { flex-wrap: wrap; }
            h1 { font-size: 2rem; }
            h2 { font-size: 1.6rem; }
            article { padding: 1.5rem; }
            aside { position: static; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            h1 { font-size: 1.8rem; }
            article { padding: 1.2rem; }
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }
        article, aside {
            animation: fadeIn 0.8s ease-out;
        }
        .highlight:hover {
            transform: scale(1.01);
            transition: transform 0.3s ease;
        }
