/* Base Styles */
:root {
    --primary-color: #cc0000;
    --secondary-color: #333;
    --light-color: #f4f4f4;
    --dark-color: #222;
    --text-color: #333;
    --text-light: #777;
    --border-color: #ddd;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #fff;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background: var(--secondary-color);
    color: #fff;
    padding: 8px 0;
    font-size: 0.9rem;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons a {
    color: #fff;
    margin-left: 15px;
    font-size: 0.9rem;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Header */
.main-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.search-bar {
    display: flex;
    width: 300px;
}

.search-bar input {
    width: 100%;
    padding: 8px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px 0 0 4px;
    font-size: 0.9rem;
}

.search-bar button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

/* Navigation */
.main-nav {
    background: var(--primary-color);
}

.main-nav ul {
    list-style: none;
    display: flex;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    color: #fff;
    display: block;
    padding: 15px 20px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.main-nav a:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Breaking News */
.breaking-news {
    background: var(--dark-color);
    color: #fff;
    padding: 10px 0;
}

.breaking-news .container {
    display: flex;
    align-items: center;
}

.breaking-label {
    background: var(--primary-color);
    padding: 3px 10px;
    margin-right: 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

.ticker {
    flex: 1;
    overflow: hidden;
}

.ticker ul {
    list-style: none;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.ticker li {
    display: inline-block;
    margin-right: 30px;
}

.ticker a {
    color: #fff;
}

.ticker a:hover {
    color: var(--primary-color);
}

@keyframes ticker {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Featured Story */
.featured-story {
    margin: 30px 0;
    position: relative;
}

.featured-image {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 5px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: #fff;
    padding: 30px;
}

.featured-overlay .category {
    background: var(--primary-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.featured-overlay h1 {
    font-size: 2.5rem;
    margin: 15px 0;
    line-height: 1.2;
}

.featured-overlay p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.read-more {
    color: #fff;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 5px;
    font-size: 0.8rem;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.grid-item {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.grid-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.grid-item .category {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 3px 10px;
    margin: 15px;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.grid-item h3 {
    padding: 0 15px;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.grid-item p {
    padding: 0 15px;
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.grid-item .read-more {
    display: block;
    padding: 0 15px 15px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Video Section */
.section-title {
    font-size: 1.5rem;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.video-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.video-item {
    min-width: 300px;
}

.video-thumbnail {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 10px;
}

.video-thumbnail img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    cursor: pointer;
}

.video-item h3 {
    font-size: 1.1rem;
}

/* Newsletter */
.newsletter {
    background: var(--secondary-color);
    color: #fff;
    padding: 40px 0;
    text-align: center;
    margin: 40px 0;
}

.newsletter h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.newsletter p {
    margin-bottom: 20px;
    color: #ccc;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-size: 1rem;
}

.newsletter button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 0 25px;
    border-radius: 0 4px 4px 0;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
.main-footer {
    background: var(--dark-color);
    color: #fff;
    padding: 40px 0 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.footer-column p {
    margin-bottom: 15px;
    color: #ccc;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
}

.footer-column a:hover {
    color: #fff;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: #fff;
}

.footer-social a:hover {
    background: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom ul {
    display: flex;
    list-style: none;
}

.footer-bottom li {
    margin-left: 20px;
}

.footer-bottom a {
    color: #999;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Article Page Styles */
.article-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin: 30px auto;
}

.news-article {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.article-meta {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.article-meta span {
    margin-right: 15px;
    margin-bottom: 5px;
}

.article-meta .category {
    background: var(--primary-color);
    color: #fff;
    padding: 3px 10px;
    border-radius: 3px;
    font-weight: bold;
}

.article-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-social-share {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.article-social-share span {
    margin-right: 15px;
    font-weight: bold;
}

.article-social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f4f4f4;
    border-radius: 50%;
    margin-right: 10px;
    color: var(--text-color);
}

.article-social-share a:hover {
    background: var(--primary-color);
    color: #fff;
}

.article-image {
    margin-bottom: 20px;
}

.article-image img {
    width: 100%;
    border-radius: 5px;
}

.caption {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
    text-align: center;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--secondary-color);
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-pullquote {
    margin: 30px 0;
    padding: 20px;
    background: #f9f9f9;
    border-left: 4px solid var(--primary-color);
    font-style: italic;
}

blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: var(--text-light);
}

.article-infographic {
    margin: 30px 0;
    text-align: center;
}

.article-infographic h3 {
    margin-bottom: 10px;
}

.article-update {
    background: #fff8e1;
    padding: 15px;
    border-left: 4px solid var(--warning-color);
    margin: 20px 0;
}

.related-articles {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
}

.related-articles h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.related-articles ul {
    list-style: none;
}

.related-articles li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.related-articles li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.article-tags {
    margin: 30px 0;
    font-size: 0.9rem;
}

.article-tags a {
    display: inline-block;
    background: #f4f4f4;
    padding: 3px 10px;
    border-radius: 3px;
    margin-right: 5px;
    color: var(--text-light);
}

.article-tags a:hover {
    background: var(--primary-color);
    color: #fff;
}

.article-author {
    display: flex;
    align-items: center;
    margin: 40px 0;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.article-author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 5px;
}

.author-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-comments {
    margin-top: 40px;
}

.article-comments h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.comment-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    resize: vertical;
    min-height: 100px;
}

.comment-form button {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.comment {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
}

.comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.comment-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.comment-author h4 {
    margin-right: 10px;
}

.comment-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.comment-content p {
    margin-bottom: 10px;
}

.comment-actions {
    display: flex;
}

.comment-actions a {
    margin-right: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.comment-actions a:hover {
    color: var(--primary-color);
}

.load-more-comments {
    display: block;
    width: 100%;
    padding: 10px;
    background: #f4f4f4;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    cursor: pointer;
}

.load-more-comments:hover {
    background: #e9e9e9;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.latest-news li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.latest-news li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.latest-news h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.latest-news .date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.most-read {
    counter-reset: most-read-counter;
}

.most-read li {
    padding: 10px 0 10px 30px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.most-read li:before {
    counter-increment: most-read-counter;
    content: counter(most-read-counter);
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.most-read li:first-child:before {
    background: var(--danger-color);
}

.most-read li:nth-child(2):before {
    background: var(--warning-color);
}

.most-read li:nth-child(3):before {
    background: var(--info-color);
}

.newsletter-widget input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.newsletter-widget button {
    width: 100%;
    padding: 10px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags a {
    display: inline-block;
    padding: 5px 10px;
    background: #f4f4f4;
    border-radius: 3px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.tags a:hover {
    background: var(--primary-color);
    color: #fff;
}

/* Category Page Styles */
.category-page {
    margin: 30px auto;
}

.category-header {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.category-header h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.category-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.category-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.main-articles {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-card {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.article-card.featured {
    grid-column: 1 / -1;
}

.article-card img {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
}

.article-card.featured img {
    max-height: 400px;
}

.article-content {
    padding: 20px;
}

.article-card .date {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.article-card h2, .article-card h3 {
    margin-bottom: 10px;
}

.article-card p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.category-sidebar {
    position: sticky;
    top: 20px;
    align-self: start;
}

.top-stories li {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.top-stories li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.top-stories h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.top-stories .date {
    font-size: 0.8rem;
    color: var(--text-light);
}

.analysis-item {
    margin-bottom: 20px;
}

.analysis-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 10px;
}

.analysis-item h4 {
    margin-bottom: 5px;
}

.analysis-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.event {
    display: flex;
    margin-bottom: 15px;
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    margin-right: 15px;
    flex-shrink: 0;
}

.event-date .day {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.event-info h4 {
    margin-bottom: 5px;
}

.event-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.category-videos {
    margin-top: 40px;
}

/* About Page Styles */
.about-page {
    margin: 30px auto;
}

.about-page h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.about-section p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    margin: 20px 0;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-member h3 {
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
}

/* Contact Page Styles */
.contact-page {
    margin: 30px auto;
}

.contact-page h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--dark-color);
}

.contact-info h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.info-item h3 {
    margin-bottom: 10px;
}

.info-item p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.info-item a {
    color: var(--primary-color);
}

.map-section {
    margin-bottom: 40px;
}

.map-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.map-container {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.departments h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.department-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.department {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 5px;
}

.department h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.department p {
    margin-bottom: 5px;
    color: var(--text-light);
}

.department a {
    color: var(--primary-color);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark-color);
}

/* Business Category Specific Styles */
.market-data {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.market-index {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.market-index:last-child {
    border-bottom: none;
}

.index-name {
    font-weight: bold;
}

.index-value {
    font-family: monospace;
}

.index-change {
    font-weight: bold;
}

.index-change.positive {
    color: var(--success-color);
}

.index-change.negative {
    color: var(--danger-color);
}

/* Technology Category Specific Styles */
.review-item {
    margin-bottom: 20px;
}

.review-rating {
    color: var(--warning-color);
    margin-top: 5px;
}

.trends-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.trends-list li:last-child {
    border-bottom: none;
}

/* Health Category Specific Styles */
.tip-item {
    display: flex;
    margin-bottom: 15px;
}

.tip-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.doctor-question {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.doctor-question:last-child {
    border-bottom: none;
}

.calculators-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.calculators-list li:last-child {
    border-bottom: none;
}

/* Entertainment Category Specific Styles */
.celebrity-item {
    margin-bottom: 20px;
}

.watch-item {
    display: flex;
    margin-bottom: 15px;
}

.watch-rating {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.coming-soon {
    margin-bottom: 20px;
}