        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.7;
            color: #e0e0e0;
            background: linear-gradient(135deg, #0c0f1a 0%, #141a2e 100%);
            background-attachment: fixed;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        a:hover {
            color: #74c0fc;
            text-shadow: 0 0 8px rgba(116, 192, 252, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: rgba(10, 13, 24, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #1e2a4a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .my-logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            letter-spacing: 1px;
        }
        .my-logo:hover {
            transform: scale(1.03);
        }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #c0c0c0;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
            position: relative;
        }
        .main-nav a:hover {
            color: #ffffff;
            background: rgba(77, 171, 247, 0.15);
        }
        .main-nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 12px;
            width: 0;
            height: 2px;
            background: #4dabf7;
            transition: width 0.3s ease;
        }
        .main-nav a:hover::after {
            width: calc(100% - 24px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            background: transparent;
            border: none;
            padding: 10px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #4dabf7;
            border-radius: 2px;
            transition: 0.3s;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        .breadcrumb {
            padding: 15px 0;
            font-size: 0.9rem;
            color: #8a8a8a;
            border-bottom: 1px solid #1e2a4a;
            margin-bottom: 30px;
        }
        .breadcrumb a {
            color: #8a8a8a;
        }
        .breadcrumb a:hover {
            color: #4dabf7;
        }
        .breadcrumb i {
            margin: 0 10px;
        }
        .main-content-wrapper {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
            padding: 30px 0;
        }
        @media (max-width: 992px) {
            .main-content-wrapper {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(20, 24, 40, 0.8);
            border-radius: 15px;
            padding: 40px;
            border: 1px solid #2a3655;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }
        .article-content h1 {
            font-size: 3rem;
            color: #ffffff;
            margin-bottom: 25px;
            line-height: 1.2;
            text-align: center;
            border-bottom: 3px solid #4dabf7;
            padding-bottom: 20px;
        }
        .article-content h2 {
            font-size: 2.2rem;
            color: #74c0fc;
            margin-top: 50px;
            margin-bottom: 20px;
            padding-left: 15px;
            border-left: 5px solid #ff6b6b;
        }
        .article-content h3 {
            font-size: 1.8rem;
            color: #96ceb4;
            margin-top: 35px;
            margin-bottom: 15px;
        }
        .article-content h4 {
            font-size: 1.4rem;
            color: #feca57;
            margin-top: 25px;
            margin-bottom: 10px;
        }
        .article-content p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            text-align: justify;
        }
        .article-content strong {
            color: #ffffff;
            font-weight: 700;
        }
        .article-content em {
            color: #c0c0c0;
            font-style: italic;
        }
        .article-content blockquote {
            border-left: 4px solid #4dabf7;
            padding-left: 25px;
            margin: 30px 0;
            font-style: italic;
            color: #a3d5ff;
            background: rgba(77, 171, 247, 0.08);
            padding: 20px;
            border-radius: 0 10px 10px 0;
        }
        .article-content ul, .article-content ol {
            margin-left: 25px;
            margin-bottom: 25px;
        }
        .article-content li {
            margin-bottom: 10px;
        }
        .article-content .highlight-box {
            background: linear-gradient(145deg, rgba(30, 42, 74, 0.9), rgba(20, 28, 50, 0.9));
            border: 1px solid #3a4a7a;
            border-radius: 10px;
            padding: 25px;
            margin: 30px 0;
            box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.5);
        }
        .inline-link {
            background: rgba(77, 171, 247, 0.15);
            padding: 2px 6px;
            border-radius: 4px;
            font-weight: 600;
        }
        .feature-img {
            margin: 40px auto;
            text-align: center;
        }
        .feature-img figcaption {
            font-size: 0.9rem;
            color: #8a8a8a;
            margin-top: 10px;
            font-style: italic;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .sidebar-widget {
            background: rgba(20, 24, 40, 0.8);
            border-radius: 15px;
            padding: 25px;
            border: 1px solid #2a3655;
        }
        .sidebar-widget h3 {
            color: #74c0fc;
            margin-bottom: 20px;
            font-size: 1.5rem;
            padding-bottom: 10px;
            border-bottom: 2px solid #3a4a7a;
        }
        .search-form input, .comment-form input, .comment-form textarea, .score-form select {
            width: 100%;
            padding: 12px 15px;
            border-radius: 8px;
            border: 1px solid #3a4a7a;
            background: rgba(10, 13, 24, 0.7);
            color: #e0e0e0;
            font-size: 1rem;
            margin-bottom: 15px;
            transition: border 0.3s, box-shadow 0.3s;
        }
        .search-form input:focus, .comment-form input:focus, .comment-form textarea:focus, .score-form select:focus {
            outline: none;
            border-color: #4dabf7;
            box-shadow: 0 0 0 3px rgba(77, 171, 247, 0.2);
        }
        .btn {
            background: linear-gradient(90deg, #4dabf7, #3b8fd8);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 8px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 1rem;
        }
        .btn:hover {
            background: linear-gradient(90deg, #3b8fd8, #4dabf7);
            box-shadow: 0 5px 15px rgba(77, 171, 247, 0.4);
            transform: translateY(-2px);
        }
        .score-form .stars {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }
        .star {
            font-size: 2rem;
            color: #3a4a7a;
            cursor: pointer;
            transition: color 0.3s, transform 0.3s;
        }
        .star:hover,
        .star.active {
            color: #feca57;
            transform: scale(1.2);
        }
        .site-footer {
            background: rgba(10, 13, 24, 0.95);
            border-top: 1px solid #1e2a4a;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        .footer-section h4 {
            color: #74c0fc;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        .friend-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .friend-link {
            display: inline-block;
            color: #c0c0c0;
            padding: 8px 15px;
            background: rgba(30, 42, 74, 0.6);
            border-radius: 6px;
            transition: all 0.3s;
        }
        .friend-link:hover {
            background: rgba(77, 171, 247, 0.2);
            color: #ffffff;
            padding-left: 20px;
        }
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #2a3655;
            color: #8a8a8a;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .main-nav ul {
                flex-direction: column;
                position: fixed;
                top: 80px;
                right: -100%;
                width: 280px;
                height: calc(100vh - 80px);
                background: rgba(10, 13, 24, 0.98);
                backdrop-filter: blur(15px);
                padding: 30px;
                transition: right 0.4s ease;
                border-left: 1px solid #1e2a4a;
                z-index: 999;
            }
            .main-nav.active ul {
                right: 0;
            }
            .hamburger {
                display: flex;
            }
            .article-content h1 {
                font-size: 2.2rem;
            }
            .article-content h2 {
                font-size: 1.8rem;
            }
            .article-content h3 {
                font-size: 1.5rem;
            }
            .article-content {
                padding: 25px;
            }
            .header-container {
                padding: 0 15px;
            }
        }
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        .article-content, .sidebar-widget {
            animation: fadeInUp 0.6s ease-out;
        }
        .article-content h2, .article-content h3 {
            animation: fadeInUp 0.8s ease-out;
        }
