.slideshow-container {
    position: relative;
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.slide {
    display: none;
    animation: fadeIn 0.8s;
}

.slide.active { display: block; }

.slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    text-align: center;
    font-size: 1.2rem;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 1rem;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    background: rgba(0,0,0,0.3);
    border-radius: 50%;
    transition: background 0.3s;
    user-select: none;
}

.prev:hover, .next:hover { background: rgba(0,0,0,0.6); }
.prev { left: 15px; }
.next { right: 15px; }

.dots-container {
    text-align: center;
    padding: 1rem;
    background: rgba(0,0,0,0.1);
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active, .dot:hover { background: var(--primary-color); }

.daily-share {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--card-shadow);
}

.daily-share h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--secondary-color);
}

.share-content {
    line-height: 1.8;
    color: #555;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .slide img { height: 300px; }
    .slideshow-container { margin: 1rem; }
}
