* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    overflow: hidden;
    background: #f4f6f8;
}

/* ================= TOP BAR ================= */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 48px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 16px;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ================= SLIDER ================= */
.slider-wrapper {
    position: absolute;
    top: 48px;
    height: calc(100vh - 48px);
    width: 100vw;
    overflow: hidden;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 0.4s ease;
}

/* ================= SLIDES ================= */
.slide {
    min-width: 100vw;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
}

/* IMPORTANT: vertical scrolling happens here */
.slide-content {
    width: 100%;
    max-width: 900px;
    padding: 24px;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.slide-content h2 {
    margin-bottom: 16px;
}

.slide-content p {
    font-size: 16px;
    line-height: 1.6;
}

/* ================= TRENDING ================= */
.trend-columns {
    display: flex;
    gap: 24px;
}

.trend-columns ul {
    list-style: none;
    padding-left: 0;
}

.trend-columns li {
    padding: 6px 0;
}

/* ================= DOT NAV ================= */
.dot-nav {
    position: fixed;
    bottom: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: #333;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .trend-columns {
        flex-direction: column;
    }
}
