/* Bitcoin Gradient Text */
.bitcoin-gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fdba74 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(26, 11, 46, 0.6);
    border: 2px solid rgba(139, 92, 246, 0.6);
}

/* Slides Container */
.carousel-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: transparent;
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.carousel-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #2d1b4e;
}

.carousel-slide img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    border-radius: 24px;
    margin: auto;
}

/* Slide Caption */
.slide-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(26, 11, 46, 0.95) 0%, rgba(26, 11, 46, 0.75) 50%, transparent 100%);
    padding: 32px 32px 48px;
    border-radius: 24px 24px 0 0;
    text-align: left;
}

.slide-caption h3 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #fff;
}

.slide-caption p {
    font-size: 1.125rem;
    color: #d1d5db;
}

/* Navigation Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(76, 29, 149, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(76, 29, 149, 0.5);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(76, 29, 149, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 24px;
}

.carousel-btn.next {
    right: 24px;
}

/* Dots Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    width: 32px;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-slides {
        aspect-ratio: 3 / 4;
    }
    
    .carousel-slide {
        justify-content: flex-start;
    }
    
    .carousel-slide img {
        width: 100%;
        height: auto;
        max-height: 310px;
        margin: 0;
        border-radius: 24px 24px 0 0;
        object-fit: cover;
    }
    
    .slide-caption {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        background: transparent;
        padding: 20px 24px;
        border-radius: 0 0 24px 24px;
    }
    
    .slide-caption h3 {
        font-size: 1.5rem;
    }
    
    .slide-caption p {
        font-size: 1rem;
    }
    
    .carousel-btn {
        display: none;
    }
}

/* Pause on Hover Indicator */
.carousel-wrapper:hover .carousel-btn {
    opacity: 1;
}
