/* Custom CSS for Wintino Casino */
/* Animation styles: Shimmer + Float */

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.shimmer-btn {
    position: relative;
    overflow: hidden;
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
    background-image: linear-gradient(
        90deg,
        #FBBF24 0%,
        #FDE68A 25%,
        #FBBF24 50%,
        #FDE68A 75%,
        #FBBF24 100%
    );
}

.shimmer-card {
    position: relative;
    overflow: hidden;
}

.shimmer-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 215, 0, 0.08),
        transparent
    );
    animation: shimmer-slide 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmer-slide {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 200%;
    }
}

/* Float Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.float-animation-slow {
    animation: float 6s ease-in-out infinite;
}

.float-animation-delay {
    animation: float 4s ease-in-out infinite;
    animation-delay: -2s;
}

/* Subtle glow effects */
.glow-amber {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.15),
                0 0 40px rgba(251, 191, 36, 0.08);
}

.glow-amber-strong {
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.25),
                0 0 60px rgba(251, 191, 36, 0.12);
}

/* Pulsing accent */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
    }
    50% {
        box-shadow: 0 0 35px rgba(251, 191, 36, 0.4);
    }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite;
}

/* Prose readability for review content */
.prose-casino {
    line-height: 1.75;
    color: #d1d5db;
}

.prose-casino h2 {
    color: #fbbf24;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.prose-casino h3 {
    color: #f3f4f6;
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.prose-casino p {
    margin-bottom: 1.25rem;
}

.prose-casino ul,
.prose-casino ol {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.prose-casino li {
    margin-bottom: 0.5rem;
}

.prose-casino a {
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.2s;
}

.prose-casino a:hover {
    color: #fde68a;
    text-decoration: underline;
}

/* Card hover effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3),
                0 0 20px rgba(251, 191, 36, 0.1);
}

/* Slot card image zoom */
.slot-card img {
    transition: transform 0.4s ease;
}

.slot-card:hover img {
    transform: scale(1.08);
}

/* Badge styles */
.badge-rtp {
    background: linear-gradient(135deg, #10b981, #059669);
}

.badge-jackpot {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.badge-bonus {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.badge-popular {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

/* Table styling */
.payment-table {
    border-collapse: separate;
    border-spacing: 0;
}

.payment-table th {
    background: #1f1f1f;
    color: #fbbf24;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 0.875rem 1rem;
    text-align: left;
    border-bottom: 2px solid #2a2a2a;
}

.payment-table td {
    padding: 0.875rem 1rem;
    border-bottom: 1px solid #2a2a2a;
    color: #d1d5db;
    font-size: 0.875rem;
}

.payment-table tbody tr {
    transition: background 0.2s;
}

.payment-table tbody tr:hover {
    background: #1f1f1f;
}

/* FAQ accordion styles */
.faq-item {
    border-bottom: 1px solid #2a2a2a;
}

.faq-question {
    cursor: pointer;
    user-select: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1rem;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    transition: transform 0.3s ease;
}

/* Smooth scrolling offset for sticky header */
[id] {
    scroll-margin-top: 100px;
}

/* Provider pills */
.provider-pill {
    transition: all 0.2s ease;
}

.provider-pill:hover {
    background: #fbbf24;
    color: #0a0a0a;
    transform: scale(1.05);
}

/* Review card */
.review-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #141414 100%);
}

/* Feature spotlight */
.spotlight-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 10, 10, 0.95) 0%,
        rgba(10, 10, 10, 0.6) 50%,
        transparent 100%
    );
}

/* Quiz radio buttons */
.quiz-radio:checked + label {
    background: #fbbf24;
    color: #0a0a0a;
    border-color: #fbbf24;
}

/* iOS rounded style enhancements */
.ios-card {
    border-radius: 1.25rem;
    background: linear-gradient(180deg, #1f1f1f 0%, #141414 100%);
    border: 1px solid #2a2a2a;
}

.ios-button {
    border-radius: 9999px;
    font-weight: 600;
    transition: all 0.2s ease;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

/* Responsive text */
@media (max-width: 640px) {
    .prose-casino h2 {
        font-size: 1.25rem;
    }
    
    .prose-casino h3 {
        font-size: 1.1rem;
    }
}
