        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a237e;
            --primary-dark: #000051;
            --primary-light: #534bae;
            --accent: #ffab00;
            --accent-dark: #c67c00;
            --text-dark: #2c3e50;
            --text-light: #546e7a;
            --bg-light: #f5f7fa;
            --bg-white: #ffffff;
            --border: #e0e0e0;
            --success: #4caf50;
            --warning: #ff9800;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        body {
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: white;
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }
        .my-logo {
            font-size: 2.2rem;
            font-weight: 800;
            text-decoration: none;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.5px;
            transition: var(--transition);
        }
        .my-logo:hover {
            color: var(--accent);
            transform: scale(1.02);
        }
        .my-logo i {
            color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .nav-desktop a:hover,
        .nav-desktop a.active {
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            padding: 0.5rem;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .nav-mobile {
            position: fixed;
            top: 80px;
            left: 0;
            width: 100%;
            background-color: var(--primary-dark);
            flex-direction: column;
            padding: 1.5rem;
            gap: 1rem;
            display: none;
            box-shadow: var(--shadow);
            z-index: 999;
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            color: white;
            text-decoration: none;
            padding: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            font-weight: 600;
        }
        .nav-mobile a:hover {
            background-color: rgba(255, 255, 255, 0.1);
            padding-left: 1.5rem;
        }
        .breadcrumb {
            background-color: var(--bg-white);
            padding: 1rem 2rem;
            font-size: 0.9rem;
            border-bottom: 1px solid var(--border);
            max-width: 1400px;
            margin: 0 auto;
        }
        .breadcrumb a {
            color: var(--primary);
            text-decoration: none;
        }
        .breadcrumb a:hover {
            text-decoration: underline;
        }
        .breadcrumb span {
            color: var(--text-light);
        }
        .main-container {
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
        }
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
            }
        }
        .content-area {
            background-color: var(--bg-white);
            border-radius: var(--radius);
            padding: 3rem;
            box-shadow: var(--shadow);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .sidebar-widget {
            background-color: var(--bg-white);
            border-radius: var(--radius);
            padding: 1.5rem;
            box-shadow: var(--shadow);
        }
        .sidebar-widget h3 {
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        h1 {
            font-size: 3rem;
            color: var(--primary-dark);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            border-left: 6px solid var(--accent);
            padding-left: 1.5rem;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2.2rem;
            }
        }
        h2 {
            font-size: 2.2rem;
            color: var(--primary);
            margin: 3rem 0 1.5rem;
            padding-bottom: 0.75rem;
            border-bottom: 2px solid var(--border);
        }
        h3 {
            font-size: 1.8rem;
            color: var(--primary-light);
            margin: 2.5rem 0 1rem;
        }
        h4 {
            font-size: 1.4rem;
            color: var(--text-dark);
            margin: 2rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: var(--text-light);
            text-align: justify;
        }
        .lead {
            font-size: 1.3rem;
            color: var(--primary);
            font-weight: 600;
            background: linear-gradient(to right, rgba(255, 171, 0, 0.1), transparent);
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 2.5rem;
        }
        .highlight {
            background-color: #fff8e1;
            border-left: 4px solid var(--accent);
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2.5rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #e3f2fd, #f3e5f5);
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
            transition: var(--transition);
            border: 1px solid var(--border);
        }
        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }
        .stat-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        .stat-card h4 {
            color: var(--primary-dark);
            margin-bottom: 0.5rem;
        }
        .stat-card p {
            font-size: 0.95rem;
            margin-bottom: 0;
        }
        .article-image {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            border-radius: var(--radius);
            margin: 2rem 0;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
        .article-image:hover {
            transform: scale(1.005);
            box-shadow: var(--shadow-hover);
        }
        .image-caption {
            text-align: center;
            font-style: italic;
            color: var(--text-light);
            font-size: 0.95rem;
            margin-top: -1.5rem;
            margin-bottom: 2.5rem;
        }
        .content-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px dotted var(--primary-light);
            transition: var(--transition);
        }
        .content-link:hover {
            color: var(--accent-dark);
            border-bottom-style: solid;
        }
        .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin: 2rem 0;
        }
        .tag {
            background-color: #e8eaf6;
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: var(--transition);
            text-decoration: none;
        }
        .tag:hover {
            background-color: var(--primary);
            color: white;
        }
        .form-container {
            background-color: var(--bg-white);
            border-radius: var(--radius);
            padding: 2rem;
            margin: 3rem 0;
            box-shadow: var(--shadow);
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--primary);
        }
        .form-input,
        .form-textarea,
        .form-select {
            width: 100%;
            padding: 0.9rem 1rem;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            font-size: 1rem;
            transition: var(--transition);
        }
        .form-input:focus,
        .form-textarea:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.1);
        }
        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }
        .form-submit {
            background: linear-gradient(to right, var(--primary), var(--primary-dark));
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: var(--radius);
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        .form-submit:hover {
            background: linear-gradient(to right, var(--primary-dark), #000);
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .rating-container {
            display: flex;
            gap: 0.5rem;
            margin: 1rem 0;
        }
        .rating-star {
            font-size: 2rem;
            color: #ddd;
            cursor: pointer;
            transition: var(--transition);
        }
        .rating-star:hover,
        .rating-star.active {
            color: var(--accent);
        }
        .comments-section {
            margin-top: 4rem;
            border-top: 2px solid var(--border);
            padding-top: 2rem;
        }
        .comment {
            background-color: #f9f9f9;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
            border-left: 4px solid var(--primary-light);
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 0.75rem;
            font-size: 0.9rem;
        }
        .comment-author {
            font-weight: 700;
            color: var(--primary-dark);
        }
        .comment-date {
            color: var(--text-light);
        }
        .site-footer {
            background: linear-gradient(to bottom, var(--primary-dark), #0d0d2e);
            color: white;
            padding: 3rem 2rem 1.5rem;
            margin-top: 4rem;
        }
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }
        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            background-color: rgba(255, 255, 255, 0.05);
            padding: 1rem;
            border-radius: var(--radius);
            margin-bottom: 1rem;
            transition: var(--transition);
        }
        friend-link:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateX(5px);
        }
        friend-link a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: block;
        }
        .copyright {
            text-align: center;
            margin-top: 3rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }
        .text-center { text-align: center; }
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 2rem; }
        .mt-2 { margin-top: 2rem; }
        .mt-4 { margin-top: 4rem; }
        .bold { font-weight: 700; color: var(--primary-dark); }
        .emoji { font-size: 1.2em; margin-right: 5px; }
        .last-updated {
            background-color: #e8f5e9;
            padding: 1rem;
            border-radius: var(--radius);
            font-size: 0.9rem;
            color: #2e7d32;
            margin-bottom: 2rem;
            display: inline-block;
        }
        .last-updated i {
            margin-right: 0.5rem;
        }
        @media (max-width: 768px) {
            .site-header, .breadcrumb, .main-container {
                padding-left: 1rem;
                padding-right: 1rem;
            }
            .content-area {
                padding: 2rem 1.5rem;
            }
            .stats-grid {
                grid-template-columns: 1fr;
            }
        }
