:root {
    --primary: #007AFF;
    --bg-body: #F5F5F7;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --text-main: #1D1D1F;
    --text-muted: #86868B;
    --radius: 20px;
    --blur: 20px;
}

body {
    background-color: var(--bg-body);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji";
    color: var(--text-main);
}

/* Glass Header */
.site-header {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur));
    -webkit-backdrop-filter: blur(var(--blur));
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 24px;
    color: #000;
    text-decoration: none;
    letter-spacing: -1px;
}

/* Stories Bar */
.stories-bar {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.stories-bar::-webkit-scrollbar {
    display: none;
}

.story-bubble {
    width: 70px;
    flex-shrink: 0;
    text-align: center;
    cursor: pointer;
}

.story-ring {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    margin-bottom: 5px;
    transition: transform 0.2s;
}

.story-ring:hover {
    transform: scale(1.05);
}

.story-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid #F5F5F7;
    /* Match body bg */
    object-fit: cover;
}

.story-name {
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Cards */
.card-glass {
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, 0.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}

.card-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.card-title a {
    color: var(--text-main);
    text-decoration: none;
}

.card-meta {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 10px;
}

/* Breaking News Ticker */
.ticker-wrap {
    background: #000;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
    overflow: hidden;
}

.ticker-item {
    margin-right: 30px;
    display: inline-block;
}

/* Menus */
.nav-link {
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

.nav-link:hover {
    color: #000;
}

.nav-link.active {
    color: var(--primary);
}

/* Footer */
footer {
    background: #fff;
    padding: 60px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}