        * { 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: #333;
            background-color: #f8f9fa;
            overflow-x: hidden;
        }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        ul, ol { list-style-position: inside; margin-left: 1.2em; }
        img { max-width: 100%; height: auto; display: block; }
        h1, h2, h3, h4 { color: #2c3e50; margin-bottom: 0.8rem; font-weight: 700; line-height: 1.3; }
        h1 { font-size: 2.8rem; margin-top: 1.5rem; }
        h2 { font-size: 2.2rem; margin-top: 2.5rem; padding-bottom: 0.5rem; border-bottom: 2px solid #eee; }
        h3 { font-size: 1.8rem; margin-top: 2rem; }
        p { margin-bottom: 1.5rem; font-size: 1.1rem; }
        .lead { font-size: 1.3rem; color: #555; font-weight: 300; }
        .highlight { background-color: #fffacd; padding: 0.2rem 0.4rem; border-radius: 3px; }
        .emoji { font-size: 1.2em; margin-right: 0.3rem; }
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, #1a2980, #26d0ce);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 2rem;
            font-weight: 900;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo .io { color: #ffde59; }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop { display: none; }
        }
        .nav-desktop a {
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            font-weight: 600;
        }
        .nav-desktop a:hover {
            background-color: rgba(255,255,255,0.15);
        }
        .hamburger {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger { display: block; }
        }
        .nav-mobile {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: #1a2980;
            flex-direction: column;
            padding: 1rem;
            gap: 1rem;
            display: none;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .nav-mobile.active {
            display: flex;
        }
        .nav-mobile a {
            padding: 0.8rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #e9ecef;
            font-size: 0.95rem;
        }
        .breadcrumb a { color: #1a2980; }
        .breadcrumb a:hover { text-decoration: underline; }
        .breadcrumb span { color: #6c757d; }
        .search-section {
            background-color: #fff;
            padding: 2rem 0;
            margin: 1rem 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .search-form {
            max-width: 700px;
            margin: 0 auto;
            display: flex;
            gap: 10px;
        }
        .search-input {
            flex-grow: 1;
            padding: 1rem 1.5rem;
            border: 2px solid #ddd;
            border-radius: 50px;
            font-size: 1.1rem;
            transition: border 0.3s;
        }
        .search-input:focus {
            outline: none;
            border-color: #26d0ce;
        }
        .search-btn {
            background: linear-gradient(to right, #1a2980, #26d0ce);
            color: white;
            border: none;
            padding: 0 2rem;
            border-radius: 50px;
            cursor: pointer;
            font-weight: 600;
            font-size: 1.1rem;
            transition: transform 0.3s;
        }
        .search-btn:hover {
            transform: scale(1.05);
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            margin: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content { grid-template-columns: 1fr; }
        }
        .article-content {
            background-color: white;
            padding: 2.5rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        .featured-image {
            width: 100%;
            border-radius: 10px;
            margin: 2rem 0;
            border: 5px solid #f1f1f1;
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background-color: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .widget-title {
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #eee;
        }
        .rating-widget form, .comment-widget form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            margin-bottom: 1rem;
        }
        .star-rating .star:hover,
        .star-rating .star.active {
            color: #ffde59;
        }
        textarea, input[type="text"], input[type="email"] {
            width: 100%;
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: inherit;
            font-size: 1rem;
        }
        .submit-btn {
            background-color: #2c3e50;
            color: white;
            border: none;
            padding: 0.8rem 1.5rem;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 600;
            transition: background 0.3s;
        }
        .submit-btn:hover {
            background-color: #1a2980;
        }
        .accordion {
            margin: 2rem 0;
            border: 1px solid #e1e1e1;
            border-radius: 8px;
            overflow: hidden;
        }
        .accordion-header {
            padding: 1.2rem 1.5rem;
            background-color: #f8f9fa;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s;
        }
        .accordion-header:hover {
            background-color: #e9ecef;
        }
        .accordion-content {
            padding: 1.5rem;
            display: none;
            border-top: 1px solid #e1e1e1;
        }
        .accordion.active .accordion-content {
            display: block;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 5px 5px 15px #d9d9d9, -5px -5px 15px #ffffff;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            color: #1a2980;
            margin-bottom: 0.5rem;
        }
        .footer-links-section {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 3rem 0 2rem;
            margin-top: 4rem;
        }
        .web-links-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-bottom: 2rem;
        }
        .web-link {
            background-color: rgba(255,255,255,0.05);
            padding: 1rem;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .web-link:hover {
            background-color: rgba(255,255,255,0.1);
        }
        .web-link a {
            color: #26d0ce;
        }
        .web-link a:hover {
            text-decoration: underline;
        }
        .site-footer {
            background-color: #1a252f;
            color: #bdc3c7;
            text-align: center;
            padding: 2rem 0;
            font-size: 0.95rem;
        }
        .copyright {
            margin-top: 1rem;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            h2 { font-size: 1.8rem; }
            h3 { font-size: 1.5rem; }
            .article-content { padding: 1.5rem; }
            .search-form { flex-direction: column; }
            .search-btn { padding: 1rem; }
        }
