        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: #0f172a;
            color: #cbd5e1;
            line-height: 1.7;
            max-width: 100vw;
            overflow-x: hidden;
        }
        a {
            color: #60a5fa;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        a:hover {
            color: #38bdf8;
            text-decoration: underline;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 8px;
        }
        .site-header {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 1rem 2rem;
            border-bottom: 2px solid #334155;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo a {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(90deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }
        .logo a:hover {
            text-decoration: none;
        }
        .desktop-nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }
        .desktop-nav a {
            color: #e2e8f0;
            font-weight: 600;
            padding: 0.5rem 0;
            position: relative;
        }
        .desktop-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #60a5fa;
            transition: width 0.3s;
        }
        .desktop-nav a:hover::after {
            width: 100%;
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: #cbd5e1;
            font-size: 1.8rem;
            cursor: pointer;
        }
        .mobile-nav {
            display: none;
            background-color: #1e293b;
            padding: 1rem;
            border-top: 1px solid #334155;
        }
        .mobile-nav.active {
            display: block;
        }
        .mobile-nav ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .breadcrumb {
            padding: 1rem 2rem;
            background-color: #1e293b;
            font-size: 0.9rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: #94a3b8;
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            padding: 0 2rem;
        }
        .content-area {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 2.5rem;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }
        article h1 {
            font-size: 3rem;
            color: #f8fafc;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 5px solid #60a5fa;
            padding-left: 1.5rem;
        }
        article h2 {
            font-size: 2.2rem;
            color: #e2e8f0;
            margin: 2.5rem 0 1.2rem 0;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid #334155;
        }
        article h3 {
            font-size: 1.8rem;
            color: #cbd5e1;
            margin: 2rem 0 1rem 0;
        }
        article h4 {
            font-size: 1.4rem;
            color: #94a3b8;
            margin: 1.5rem 0 0.8rem 0;
        }
        article p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            text-align: justify;
        }
        .highlight {
            background-color: rgba(96, 165, 250, 0.1);
            border-left: 4px solid #60a5fa;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
        }
        .article-img {
            margin: 2.5rem auto;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
            border: 2px solid #334155;
        }
        .inline-link {
            font-weight: 600;
            padding: 0 2px;
        }
        .emoji {
            font-size: 1.2em;
            margin-right: 5px;
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
            background: linear-gradient(135deg, #1e40af, #3730a3);
            padding: 2rem;
            border-radius: 10px;
        }
        .stat-item {
            text-align: center;
            color: #f8fafc;
        }
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: #1e293b;
            border-radius: 12px;
            padding: 1.8rem;
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
        }
        .widget h3 {
            color: #e2e8f0;
            margin-bottom: 1.2rem;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .search-form {
            display: flex;
        }
        .search-form input {
            flex-grow: 1;
            padding: 0.9rem 1.2rem;
            border: 1px solid #475569;
            background-color: #0f172a;
            color: #cbd5e1;
            border-radius: 8px 0 0 8px;
            outline: none;
        }
        .search-form button {
            background-color: #3b82f6;
            color: white;
            border: none;
            padding: 0 1.5rem;
            border-radius: 0 8px 8px 0;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .search-form button:hover {
            background-color: #2563eb;
        }
        .rating-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .rating-stars {
            display: flex;
            flex-direction: row-reverse;
            justify-content: flex-end;
            font-size: 1.8rem;
            gap: 5px;
        }
        .rating-stars input {
            display: none;
        }
        .rating-stars label {
            color: #475569;
            cursor: pointer;
            transition: color 0.2s;
        }
        .rating-stars input:checked ~ label,
        .rating-stars label:hover,
        .rating-stars label:hover ~ label {
            color: #fbbf24;
        }
        .rating-widget textarea,
        .rating-widget input[type="text"],
        .rating-widget input[type="email"] {
            width: 100%;
            padding: 0.9rem;
            background-color: #0f172a;
            border: 1px solid #475569;
            color: #cbd5e1;
            border-radius: 8px;
            outline: none;
        }
        .rating-widget button {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            color: white;
            border: none;
            padding: 1rem;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: opacity 0.3s;
        }
        .rating-widget button:hover {
            opacity: 0.9;
        }
        .site-footer {
            background-color: #0f172a;
            border-top: 2px solid #334155;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }
        friend-link {
            display: block;
            background-color: #1e293b;
            padding: 1.5rem;
            border-radius: 10px;
        }
        .friend-links h3 {
            color: #e2e8f0;
            margin-bottom: 1rem;
        }
        .friend-links ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
        .friend-links a {
            color: #94a3b8;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .friend-links a:hover {
            color: #60a5fa;
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #334155;
            color: #64748b;
            font-size: 0.95rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .desktop-nav {
                display: none;
            }
            .mobile-menu-btn {
                display: block;
            }
            article h1 {
                font-size: 2.5rem;
            }
            article h2 {
                font-size: 2rem;
            }
        }
        @media (max-width: 768px) {
            .site-header, .breadcrumb, .main-container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .content-area, .widget {
                padding: 1.5rem;
            }
            article h1 {
                font-size: 2rem;
                padding-left: 1rem;
            }
            .friend-links ul {
                flex-direction: column;
            }
            .stats-box {
                grid-template-columns: 1fr;
            }
        }
