        * { 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, #0c0f15 0%, #1a1d2b 100%);
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }
        a { color: #4dabf7; text-decoration: none; transition: color 0.3s, transform 0.2s; }
        a:hover { color: #74c0fc; transform: translateY(-2px); }
        img { max-width: 100%; height: auto; display: block; }
        .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        .text-center { text-align: center; }
        .bold { font-weight: 700; }
        .highlight { background: linear-gradient(90deg, transparent 0%, rgba(77, 171, 247, 0.2) 50%, transparent 100%); padding: 2px 8px; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .site-header {
            background: rgba(18, 22, 33, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 2px solid #2a3b5a;
            position: sticky;
            top: 0;
            z-index: 1000;
            padding: 15px 0;
        }
        .header-content {
            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, #4dabf7);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .my-logo:hover { transform: scale(1.05); }
        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }
        .main-nav a {
            color: #b8c1cc;
            font-weight: 600;
            padding: 8px 12px;
            border-radius: 6px;
        }
        .main-nav a:hover {
            background: rgba(77, 171, 247, 0.15);
            color: #74c0fc;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: #b8c1cc;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 5px;
        }
        .mobile-nav {
            display: none;
            flex-direction: column;
            background: rgba(18, 22, 33, 0.98);
            border-top: 1px solid #2a3b5a;
            padding: 15px;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            z-index: 999;
        }
        .mobile-nav.active { display: flex; }
        .mobile-nav a {
            padding: 12px 20px;
            border-bottom: 1px solid #2a3b5a;
            color: #b8c1cc;
        }
        .mobile-nav a:last-child { border-bottom: none; }
        .breadcrumb {
            padding: 15px 0;
            background: rgba(30, 35, 50, 0.7);
            margin-bottom: 30px;
        }
        .breadcrumb ul {
            display: flex;
            list-style: none;
            flex-wrap: wrap;
            gap: 10px;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 10px;
            color: #4dabf7;
        }
        .breadcrumb a { color: #a0aec0; }
        .main-content {
            flex: 1;
            padding: 30px 0;
        }
        .article-header { margin-bottom: 40px; }
        .article-header h1 {
            font-size: 2.8rem;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .meta-info {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            color: #a0aec0;
            font-size: 0.9rem;
            border-bottom: 1px dashed #4dabf7;
            padding-bottom: 15px;
        }
        .last-updated::before { content: '🕒 '; }
        .article-body {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 40px;
        }
        @media (max-width: 992px) {
            .article-body { grid-template-columns: 1fr; }
        }
        .article-section {
            background: rgba(25, 30, 45, 0.7);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 30px;
            border-left: 5px solid #4dabf7;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            transition: transform 0.3s;
        }
        .article-section:hover { transform: translateY(-5px); }
        .article-section h2 {
            color: #4dabf7;
            font-size: 2rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #2a3b5a;
        }
        .article-section h3 {
            color: #74c0fc;
            font-size: 1.5rem;
            margin: 25px 0 15px;
        }
        .article-section h4 {
            color: #a5d8ff;
            font-size: 1.2rem;
            margin: 20px 0 10px;
        }
        .article-section p {
            margin-bottom: 20px;
            text-align: justify;
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            border: 3px solid #2a3b5a;
            margin: 25px auto;
            box-shadow: 0 8px 20px rgba(0,0,0,0.4);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .widget {
            background: rgba(25, 30, 45, 0.7);
            border-radius: 12px;
            padding: 25px;
            border-top: 5px solid #ff6b6b;
        }
        .widget h3 {
            color: #ff6b6b;
            margin-bottom: 20px;
            font-size: 1.4rem;
        }
        .search-form { display: flex; }
        .search-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid #4dabf7;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 6px 0 0 6px;
        }
        .search-form button {
            background: #4dabf7;
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 6px 6px 0;
            cursor: pointer;
            transition: background 0.3s;
        }
        .search-form button:hover { background: #339af0; }
        .rating-widget .stars {
            display: flex;
            gap: 5px;
            margin-bottom: 15px;
        }
        .rating-widget .star {
            font-size: 1.8rem;
            color: #555;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-widget .star:hover,
        .rating-widget .star.active { color: #ffd43b; }
        .rating-form input, .rating-form textarea, .comment-form input, .comment-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 15px;
            background: rgba(255,255,255,0.08);
            border: 1px solid #555;
            border-radius: 6px;
            color: white;
        }
        .rating-form button, .comment-form button {
            width: 100%;
            padding: 12px;
            background: linear-gradient(90deg, #ff6b6b, #4dabf7);
            color: white;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: opacity 0.3s;
        }
        .rating-form button:hover, .comment-form button:hover { opacity: 0.9; }
        .related-links ul {
            list-style: none;
            padding-left: 0;
        }
        .related-links li {
            padding: 12px 0;
            border-bottom: 1px dashed #444;
        }
        .related-links li:last-child { border-bottom: none; }
        .related-links a::before { content: '🔗 '; }
        .site-footer {
            background: rgba(12, 15, 25, 0.95);
            border-top: 2px solid #2a3b5a;
            padding: 40px 0 20px;
            margin-top: 50px;
        }
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-widget h4 {
            color: #4dabf7;
            margin-bottom: 20px;
            font-size: 1.3rem;
        }
        friend-link {
            display: block;
            padding: 8px 0;
            color: #a0aec0;
            border-bottom: 1px dotted #444;
        }
        friend-link:last-child { border-bottom: none; }
        friend-link::before { content: '🤝 '; }
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #333;
            color: #888;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
            .main-nav { display: none; }
            .article-header h1 { font-size: 2rem; }
            .article-section { padding: 20px; }
            .header-content, .footer-content { flex-direction: column; text-align: center; gap: 15px; }
        }
