.news-app-container-35d5f880 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fcfcfc;
    color: #1a1a1a;
    max-width: 600px; /* Mobile first but constrains on desktop */
    margin: 0 auto;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
    min-height: 100vh;
}

/* Header */
.news-app-header-35d5f880 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
}

.news-app-header-35d5f880 .logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff6600;
}
.news-app-header-35d5f880 .logo span {
    color: #1a1a1a;
}

/* Categories */
.news-app-categories-35d5f880 {
    background: #fff;
    padding: 0 20px 10px;
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 64px;
    z-index: 99;
    box-shadow: 0 4px 6px -6px rgba(0,0,0,0.1);
}
.news-app-categories-35d5f880::-webkit-scrollbar {
    display: none;
}
.news-app-categories-35d5f880 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}
.news-app-categories-35d5f880 li {
    font-size: 0.95rem;
    color: #666;
    cursor: pointer;
    padding-bottom: 5px;
}
.news-app-categories-35d5f880 li.active {
    color: #1a1a1a;
    font-weight: 600;
    border-bottom: 2px solid #ff6600;
}

/* Main Content */
.news-app-main-35d5f880 {
    padding: 20px;
}

/* Featured Story */
.featured-story-35d5f880 .card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.featured-story-35d5f880 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.featured-story-35d5f880 .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}
.featured-story-35d5f880 .publish-time {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 8px;
    display: block;
}
.featured-story-35d5f880 h2 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.3;
    font-weight: 600;
}

/* Adsense Placeholder */
.ad-placeholder-35d5f880 {
    background: #f0f0f0;
    border: 1px dashed #ccc;
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #999;
    font-size: 0.85rem;
}

/* Section Headings */
.news-app-main-35d5f880 h3 {
    font-size: 1.2rem;
    margin: 0 0 15px 0;
    font-weight: 700;
}

/* News List */
.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.news-item {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.news-item img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}
.news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-content h4 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 600;
}
.news-content .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #888;
}

/* Bottom Nav */
.news-app-bottom-nav-35d5f880 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 100;
}
.news-app-bottom-nav-35d5f880 a {
    color: #999;
    transition: color 0.2s;
}
.news-app-bottom-nav-35d5f880 a.active {
    color: #ff6600;
}
