        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        :root {
            --primary: #1a365d;
            --secondary: #e53e3e;
            --accent: #f6e05e;
            --light: #f7fafc;
            --dark: #2d3748;
            --gray: #a0aec0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --radius: 8px;
            --transition: all 0.3s ease;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        ul {
            list-style: none;
        }
        button, input, textarea {
            font: inherit;
            border: none;
            outline: none;
        }
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .site-header {
            background: linear-gradient(135deg, var(--primary) 0%, #15325a 100%);
            color: white;
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
        }
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo a {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo i {
            color: var(--accent);
        }
        .nav-desktop {
            display: flex;
            gap: 2rem;
        }
        @media (max-width: 768px) {
            .nav-desktop {
                display: none;
            }
        }
        .nav-desktop a {
            font-weight: 600;
            padding: 0.5rem 1rem;
            border-radius: var(--radius);
        }
        .nav-desktop a:hover {
            background-color: rgba(255, 255, 255, 0.15);
            color: var(--accent);
        }
        .hamburger {
            display: none;
            background: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }
        }
        .mobile-nav {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            background-color: var(--primary);
            padding: 1rem;
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        .mobile-nav.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav a {
            display: block;
            padding: 1rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            font-weight: 600;
        }
        .mobile-nav a:hover {
            background-color: rgba(255,255,255,0.1);
            color: var(--accent);
        }
        .breadcrumb {
            padding: 1rem 0;
            background-color: #edf2f7;
            font-size: 0.9rem;
        }
        .breadcrumb ul {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }
        .breadcrumb li:not(:last-child)::after {
            content: '›';
            margin-left: 0.5rem;
            color: var(--gray);
        }
        .breadcrumb a:hover {
            color: var(--secondary);
        }
        .search-bar {
            background: white;
            padding: 2rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .search-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .search-input {
            flex: 1;
            padding: 1rem 1.5rem;
            background: #f8f9fa;
        }
        .search-btn {
            background: var(--secondary);
            color: white;
            padding: 0 2rem;
            cursor: pointer;
            font-weight: 600;
        }
        .search-btn:hover {
            background: #c53030;
        }
        .main-content {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 2.5rem;
            padding: 2.5rem 0;
        }
        @media (max-width: 992px) {
            .main-content {
                grid-template-columns: 1fr;
            }
        }
        .article-content {
            background: white;
            padding: 2.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .article-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #e2e8f0;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .author {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .author-img {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            display: grid;
            place-items: center;
            color: white;
        }
        h1 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
            }
        }
        .lead {
            font-size: 1.25rem;
            color: var(--dark);
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 2px dashed #cbd5e0;
        }
        h2 {
            font-size: 1.8rem;
            color: var(--primary);
            margin: 2.5rem 0 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        h3 {
            font-size: 1.4rem;
            color: var(--secondary);
            margin: 1.8rem 0 1rem;
        }
        p {
            margin-bottom: 1.5rem;
            text-align: justify;
        }
        .highlight {
            background: linear-gradient(120deg, var(--accent) 0%, var(--accent) 100%);
            background-repeat: no-repeat;
            background-size: 100% 0.4em;
            background-position: 0 88%;
            font-weight: 700;
            padding: 0 2px;
        }
        .featured-image {
            margin: 2rem 0;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            position: relative;
        }
        .featured-image img {
            width: 100%;
            transition: transform 0.5s ease;
        }
        .featured-image:hover img {
            transform: scale(1.03);
        }
        .img-caption {
            text-align: center;
            font-style: italic;
            padding: 0.5rem;
            color: var(--gray);
            font-size: 0.9rem;
            background: #f8f9fa;
        }
        blockquote {
            border-left: 4px solid var(--secondary);
            padding-left: 1.5rem;
            margin: 2rem 0;
            font-style: italic;
            color: var(--dark);
            background: #fff5f5;
            padding: 1.5rem;
            border-radius: 0 var(--radius) var(--radius) 0;
        }
        .related-links {
            background: #f0f9ff;
            padding: 1.5rem;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .related-links h3 {
            margin-top: 0;
        }
        .related-links ul {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
        }
        .related-links li a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 0.5rem;
            border-radius: 4px;
        }
        .related-links li a:hover {
            background: white;
            color: var(--secondary);
        }
        .stats-box {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }
        .stat {
            background: var(--primary);
            color: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            text-align: center;
        }
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--accent);
        }
        .interactive-cta {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, var(--primary), #2a4365);
            color: white;
            border-radius: var(--radius);
            margin: 2rem 0;
        }
        .interactive-cta h3 {
            color: white;
        }
        .cta-btn {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            font-weight: 700;
            margin-top: 1rem;
            box-shadow: 0 4px 10px rgba(229, 62, 62, 0.3);
        }
        .cta-btn:hover {
            background: #ff3b3b;
            transform: translateY(-3px);
        }
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .widget {
            background: white;
            padding: 1.5rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
        }
        .widget-title {
            font-size: 1.2rem;
            color: var(--primary);
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid var(--accent);
        }
        .live-widget {
            background: linear-gradient(135deg, #2b6cb0, #1a365d);
            color: white;
        }
        .live-widget .widget-title {
            color: white;
            border-bottom-color: var(--accent);
        }
        .countdown {
            font-size: 2rem;
            text-align: center;
            font-weight: 800;
            color: var(--accent);
            margin: 1rem 0;
        }
        .tweet-list li {
            padding: 1rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .tweet-list li:last-child {
            border-bottom: none;
        }
        .poll-option {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.5rem 0;
        }
        .poll-bar {
            height: 10px;
            background: #e2e8f0;
            border-radius: 5px;
            margin-top: 0.5rem;
            overflow: hidden;
        }
        .poll-fill {
            height: 100%;
            background: var(--secondary);
            border-radius: 5px;
        }
        .rating-section, .comments-section {
            background: white;
            padding: 2rem;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            margin-top: 2rem;
        }
        .rating-container {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }
        .star-rating {
            display: flex;
            gap: 5px;
            font-size: 2rem;
            color: var(--gray);
            cursor: pointer;
        }
        .star-rating .active {
            color: var(--accent);
        }
        .star-rating:hover .star {
            color: var(--accent);
        }
        .star-rating .star:hover ~ .star {
            color: var(--gray);
        }
        #rating-form, #comment-form {
            display: grid;
            gap: 1rem;
            margin-top: 1rem;
        }
        .form-group {
            display: flex;
            flex-direction: column;
        }
        .form-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        .form-control {
            padding: 0.8rem 1rem;
            border: 1px solid #cbd5e0;
            border-radius: var(--radius);
            transition: var(--transition);
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
        }
        .submit-btn {
            background: var(--primary);
            color: white;
            padding: 1rem;
            border-radius: var(--radius);
            font-weight: 600;
            cursor: pointer;
            justify-self: start;
        }
        .submit-btn:hover {
            background: #2a4365;
        }
        .comments-list {
            margin-top: 2rem;
        }
        .comment {
            padding: 1.5rem;
            border: 1px solid #e2e8f0;
            border-radius: var(--radius);
            margin-bottom: 1.5rem;
            background: #f8f9fa;
        }
        .comment-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--gray);
        }
        .site-footer {
            background: var(--dark);
            color: white;
            padding: 3rem 0 1.5rem;
            margin-top: 3rem;
        }
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }
        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            display: block;
        }
        .footer-links h4 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        .footer-links ul li {
            margin-bottom: 0.5rem;
        }
        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }
        friend-link {
            display: block;
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid #4a5568;
        }
        .friend-link-title {
            color: var(--accent);
            margin-bottom: 1rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .friend-links a {
            background: rgba(255,255,255,0.1);
            padding: 0.5rem 1rem;
            border-radius: 20px;
        }
        .friend-links a:hover {
            background: var(--secondary);
        }
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #4a5568;
            color: var(--gray);
            font-size: 0.9rem;
        }
