body {
    font-family: 'Arial', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

footer {
    margin-top: auto;
}

.carousel-item {
    background-color: #000;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 20px;
}

.table th {
    background-color: #f8f9fa;
}

.card {
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.ratio-16x9 {
    background-color: #000;
}

.carousel-caption {
    bottom: 0;
    padding: 1rem;
}

@media (max-width: 768px) {
    .carousel-caption {
        font-size: 0.8rem;
    }
    
    .carousel-caption h5 {
        font-size: 1rem;
    }
}
