/* Container */
.news-app-50668ac4 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fafafa;
    color: #1a1a1a;
    max-width: 480px; /* Mobile width */
    margin: 0 auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    min-height: 100vh;
    overflow-x: hidden;
}

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

.logo-50668ac4 {
    font-size: 1.4rem;
    font-weight: 800;
    background: #ff6600;
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}
.logo-50668ac4 span {
    color: #1a1a1a;
    background: transparent;
}
.search-50668ac4 {
    color: #1a1a1a;
    cursor: pointer;
}

/* Categories Scroll */
.categories-scroll-50668ac4 {
    background: #fff;
    padding: 0 24px 15px;
    overflow-x: auto;
    white-space: nowrap;
    position: sticky;
    top: 72px; /* Below header */
    z-index: 99;
    border-bottom: 1px solid #f0f0f0;
}
.categories-scroll-50668ac4::-webkit-scrollbar {
    display: none;
}
.categories-scroll-50668ac4 ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
}
.categories-scroll-50668ac4 li {
    font-size: 0.95rem;
    color: #888;
    cursor: pointer;
    font-weight: 500;
    padding-bottom: 5px;
    position: relative;
}
.categories-scroll-50668ac4 li.active {
    color: #1a1a1a;
}
.categories-scroll-50668ac4 li.active::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    height: 3px;
    background: #ff6600;
    border-radius: 3px 3px 0 0;
}

/* Main Content */
.content-50668ac4 {
    padding: 24px 24px 90px; /* Bottom padding for nav */
}

/* Featured Story */
.featured-50668ac4 {
    margin-bottom: 30px;
}
.featured-card-50668ac4 {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    height: 260px;
}
.featured-card-50668ac4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.overlay-50668ac4 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}
.time-50668ac4 {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 6px;
    display: block;
    font-weight: 500;
}
.overlay-50668ac4 h2 {
    margin: 0;
    font-size: 1.3rem;
    line-height: 1.3;
    font-weight: 600;
}
.bookmark-icon-50668ac4 {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

/* Adsense Area */
.ad-banner-50668ac4 {
    background: #f5f5f5;
    border: 1px dashed #ddd;
    text-align: center;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 30px;
    color: #aaa;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Lists */
.news-list-section-50668ac4 {
    margin-bottom: 35px;
}
.news-list-section-50668ac4 h3 {
    font-size: 1.2rem;
    margin: 0 0 16px 0;
    font-weight: 700;
    color: #1a1a1a;
}
.news-list-50668ac4 {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.news-card-50668ac4 {
    display: flex;
    gap: 16px;
    background: #fff;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    align-items: center;
}
.news-card-50668ac4 img {
    width: 90px;
    height: 90px;
    border-radius: 12px;
    object-fit: cover;
}
.card-content-50668ac4 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-content-50668ac4 h4 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    color: #1a1a1a;
}
.card-meta-50668ac4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #888;
}

/* Bottom Navigation */
.bottom-nav-50668ac4 {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: #fff;
    display: flex;
    justify-content: space-between;
    padding: 16px 32px 24px; /* Extra bottom padding for modern phones */
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    z-index: 100;
    border-radius: 24px 24px 0 0;
}
.bottom-nav-50668ac4 a {
    color: #b0b0b0;
    transition: color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bottom-nav-50668ac4 a.active {
    color: #ff6600;
}
