/* Thiết lập cơ bản: Chống tràn màn hình */
body, html { 
    margin: 0; 
    padding: 0; 
    height: 100%; 
    overflow: hidden; 
    background-color: #000; 
    font-family: 'Segoe UI', sans-serif;
}

/* Đảm bảo Swiper phủ toàn màn hình */
.swiper { 
    width: 100%; 
    height: 100vh; 
}

/* Slide ảnh: Căn giữa nội dung tuyệt đối */
.swiper-slide { 
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;
    display: flex !important; 
    align-items: center; 
    justify-content: center;
    height: 100vh;
}

/* Khối nội dung: Làm mờ (Glassmorphism) */
.content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px); /* Hỗ trợ trình duyệt cũ */
    padding: 40px; 
    border-radius: 20px;
    max-width: 80%; 
    text-align: center;
    color: #fff; 
    font-size: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Thanh phát nhạc APlayer */
#aplayer { 
    position: fixed; 
    bottom: 20px; 
    left: 20px; 
    right: 20px; 
    z-index: 1000; 
    background: rgba(0, 0, 0, 0.6); 
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

/* Đảm bảo phân trang (pagination) hiển thị đúng */
.swiper-pagination-bullet {
    background: #fff !important;
}