/* Board Game Theme Custom Styles */

body {
    font-family: 'Nunito', sans-serif;
}

/* Swiper Customization */
.swiper {
    width: 100%;
    padding-bottom: 80px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #8B4513 !important;
    background: white;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: #8B4513 !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: #FFD700 !important;
}

/* Hover effects */
.hover-grow:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease-in-out;
}

/* Card shadow effects */
.card-shadow {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease-in-out;
}

.card-shadow:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Dice animation for fun */
@keyframes dice-roll {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(90deg); }
    50% { transform: rotate(180deg); }
    75% { transform: rotate(270deg); }
}

.dice-animation:hover {
    animation: dice-roll 0.5s ease-in-out;
}
