        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0a0e17;
            color: #e0e0e0;
            line-height: 1.7;
            max-width: 100%;
            overflow-x: hidden;
        }
        a {
            color: #4dabf7;
            text-decoration: none;
            transition: color 0.3s ease, transform 0.2s ease;
        }
        a:hover {
            color: #a5d8ff;
            transform: translateY(-2px);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }
        .site-header {
            background: linear-gradient(135deg, #1a2332 0%, #0a0e17 100%);
            padding: 1.5rem 5%;
            border-bottom: 2px solid #2a3b5c;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .my-logo {
            font-size: 2.8rem;
            font-weight: 900;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        }
        .my-logo a {
            background: none;
            color: inherit;
        }
        .main-nav {
            display: flex;
            gap: 2rem;
            align-items: center;
        }
        .main-nav a {
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            background: rgba(42, 59, 92, 0.6);
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
            border: 1px solid transparent;
        }
        .main-nav a:hover {
            background: rgba(77, 171, 247, 0.15);
            border-color: #4dabf7;
        }
        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #4dabf7;
            background: none;
            border: none;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
            .main-nav {
                display: none;
                flex-direction: column;
                width: 100%;
                margin-top: 1.5rem;
                gap: 1rem;
            }
            .main-nav.active {
                display: flex;
            }
            .site-header {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        .breadcrumb {
            background: #111827;
            padding: 1rem 5%;
            font-size: 0.9rem;
            border-bottom: 1px solid #2a3b5c;
        }
        .breadcrumb a {
            color: #8bb9fe;
        }
        .breadcrumb span {
            color: #94a3b8;
            margin: 0 8px;
        }
        .container {
            display: grid;
            grid-template-columns: minmax(0, 1fr) 300px;
            gap: 3rem;
            padding: 3rem 5%;
            max-width: 1600px;
            margin: 0 auto;
        }
        @media (max-width: 1024px) {
            .container {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: rgba(17, 24, 39, 0.8);
            padding: 3rem;
            border-radius: 16px;
            border: 1px solid #2a3b5c;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }
        h1 {
            font-size: 3.2rem;
            color: #ffffff;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            border-left: 6px solid #ff6b6b;
            padding-left: 1.5rem;
        }
        h2 {
            font-size: 2.2rem;
            color: #4ecdc4;
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #2a3b5c;
        }
        h3 {
            font-size: 1.8rem;
            color: #45b7d1;
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: #8bb9fe;
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.8rem;
            font-size: 1.1rem;
            text-align: justify;
            hyphens: auto;
        }
        .lead {
            font-size: 1.3rem;
            color: #cbd5e1;
            background: rgba(42, 59, 92, 0.3);
            padding: 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #4dabf7;
            margin-bottom: 2.5rem;
        }
        .highlight {
            background: linear-gradient(90deg, rgba(255,107,107,0.1), rgba(78,205,196,0.1));
            padding: 2rem;
            border-radius: 12px;
            margin: 2.5rem 0;
            border: 1px solid rgba(78,205,196,0.3);
        }
        .inline-link {
            font-weight: 700;
            border-bottom: 2px dotted #4dabf7;
        }
        .article-image {
            margin: 2.5rem auto;
            max-width: 900px;
            text-align: center;
        }
        .caption {
            font-size: 0.95rem;
            color: #94a3b8;
            margin-top: 0.8rem;
            font-style: italic;
        }
        .last-updated {
            text-align: right;
            font-size: 0.9rem;
            color: #94a3b8;
            margin-top: 4rem;
            padding-top: 1rem;
            border-top: 1px solid #2a3b5c;
        }
        .sidebar {
            background: rgba(17, 24, 39, 0.8);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid #2a3b5c;
            align-self: start;
            position: sticky;
            top: 120px;
        }
        .widget {
            margin-bottom: 3rem;
        }
        .widget h3 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
            color: #ffd166;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form input {
            width: 100%;
            padding: 1rem;
            border-radius: 30px;
            border: 1px solid #4a5568;
            background: #1a202c;
            color: #e2e8f0;
            font-size: 1rem;
            margin-bottom: 1rem;
        }
        .search-form button {
            width: 100%;
            padding: 1rem;
            border-radius: 30px;
            border: none;
            background: linear-gradient(90deg, #4dabf7, #2b6cb0);
            color: white;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s;
        }
        .search-form button:hover {
            transform: scale(1.03);
        }
        .rating-widget .stars {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 1.5rem 0;
            font-size: 2rem;
            color: #ffd166;
        }
        .stars i {
            cursor: pointer;
            transition: color 0.2s;
        }
        .comment-form textarea {
            width: 100%;
            padding: 1rem;
            border-radius: 12px;
            border: 1px solid #4a5568;
            background: #1a202c;
            color: #e2e8f0;
            font-size: 1rem;
            min-height: 150px;
            margin-bottom: 1rem;
            resize: vertical;
        }
        .comment-form button {
            padding: 0.9rem 2rem;
            border-radius: 30px;
            border: none;
            background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
            color: white;
            font-weight: bold;
            cursor: pointer;
            width: 100%;
        }
        .site-footer {
            background: #111827;
            padding: 4rem 5% 2rem;
            margin-top: 4rem;
            border-top: 2px solid #2a3b5c;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-section h4 {
            color: #4ecdc4;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links a {
            display: block;
            margin-bottom: 0.8rem;
            color: #cbd5e1;
        }
        friend-link {
            display: block;
            padding: 1rem;
            background: rgba(42, 59, 92, 0.5);
            border-radius: 8px;
            margin-bottom: 1rem;
            border-left: 4px solid #ffd166;
        }
        .copyright {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #2a3b5c;
            color: #94a3b8;
            font-size: 0.9rem;
        }
        .emoji {
            font-size: 1.2em;
            margin: 0 5px;
        }
        .bold {
            font-weight: 900;
            color: #ffd166;
        }
        .divider {
            height: 3px;
            background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1);
            border: none;
            margin: 3rem 0;
            border-radius: 3px;
        }
