/* 🚀 AŞAMA 2 - CONVERSION BOOSTER STYLES */

/* 1. GELIŞMIŞ OYUN KARTI HOV EFEKTLERI */
.game-card {
    position: relative;
    background: #151937;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.4);
    border: 2px solid #ffd700;
}

.game-card:hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 107, 107, 0.2));
    z-index: 1;
    pointer-events: none;
}

.game-card .play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 2;
}

.game-card:hover .play-overlay {
    opacity: 1;
    transform: translateY(0);
}

.game-card .play-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0a0e27;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 20px;
    border: none;
    cursor: pointer;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.5);
}

.game-card:hover .play-btn {
    transform: scale(1);
}

.game-card .play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 35px rgba(255, 215, 0, 0.7);
}

/* 2. RTP BADGE SİSTEMİ */
.rtp-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    z-index: 3;
    border: 2px solid;
    animation: pulse 2s ease-in-out infinite;
}

.rtp-badge.high {
    color: #00ff88;
    border-color: #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.rtp-badge.medium {
    color: #ffd700;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.rtp-badge.standard {
    color: #ff9500;
    border-color: #ff9500;
    box-shadow: 0 0 20px rgba(255, 149, 0, 0.5);
}

.hot-game-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    z-index: 3;
    animation: shake 1s ease-in-out infinite;
}

/* 3. SOCIAL PROOF FEED */
.social-proof-container {
    position: fixed;
    bottom: 120px;
    left: 20px;
    z-index: 999;
    max-width: 350px;
}

.social-proof-item {
    background: linear-gradient(135deg, #1a1f3a 0%, #151937 100%);
    border: 2px solid #ffd700;
    border-radius: 15px;
    padding: 15px 20px;
    margin-bottom: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideInLeft 0.5s ease-out;
    display: flex;
    align-items: center;
    gap: 15px;
}

.social-proof-item .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.social-proof-item .info {
    flex: 1;
}

.social-proof-item .name {
    color: #ffd700;
    font-weight: bold;
    font-size: 16px;
}

.social-proof-item .win-amount {
    color: #00ff88;
    font-size: 20px;
    font-weight: bold;
    margin: 3px 0;
}

.social-proof-item .time {
    color: #b8b8d1;
    font-size: 12px;
}

/* 4. LIVE COUNTER */
.live-counter {
    position: fixed;
    top: 100px;
    right: 20px;
    background: linear-gradient(135deg, #1a1f3a 0%, #151937 100%);
    border: 2px solid #00ff88;
    border-radius: 20px;
    padding: 20px 30px;
    z-index: 999;
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
    animation: float 3s ease-in-out infinite;
}

.live-counter .pulse-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 1.5s ease-in-out infinite;
}

.live-counter .count {
    color: #ffd700;
    font-size: 28px;
    font-weight: bold;
    display: block;
    margin-top: 5px;
}

.live-counter .label {
    color: #b8b8d1;
    font-size: 14px;
}

/* 5. COUNTDOWN TIMER */
.countdown-timer {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    margin: 30px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 107, 107, 0.4);
}

.countdown-timer::before {
    content: '⏰';
    position: absolute;
    font-size: 150px;
    opacity: 0.1;
    top: -30px;
    right: -30px;
    animation: rotate 20s linear infinite;
}

.countdown-timer .timer-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
}

.countdown-timer .timer-display {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.countdown-timer .timer-unit {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px 25px;
    border-radius: 15px;
    min-width: 100px;
}

.countdown-timer .timer-label {
    display: block;
    font-size: 12px;
    font-weight: normal;
    opacity: 0.8;
    margin-top: 5px;
}

/* 6. URGENCY BADGES */
.urgency-badge {
    background: linear-gradient(45deg, #ff6b6b, #ee5a52);
    padding: 12px 25px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    animation: shake 0.5s ease-in-out infinite;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    margin: 10px;
}

.urgency-badge .icon {
    font-size: 20px;
    animation: pulse 1s ease-in-out infinite;
}

/* 7. FLOATING CTA BUTTON */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #0a0e27;
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.5);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s ease-in-out infinite;
    text-decoration: none;
    display: none;
}

.floating-cta.show {
    display: block;
}

.floating-cta:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.7);
}

.floating-cta .pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid #ffd700;
    border-radius: 50px;
    animation: pulseRing 1.5s ease-out infinite;
}

/* 8. SLOT COUNTER */
.slots-remaining {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    border-radius: 20px;
    display: inline-block;
    margin: 20px 0;
    border: 2px solid #ff6b6b;
}

.slots-remaining .slots-number {
    color: #ff6b6b;
    font-size: 36px;
    font-weight: bold;
    display: block;
}

.slots-remaining .slots-label {
    color: #b8b8d1;
    font-size: 14px;
}

/* ANIMATIONS */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px) rotate(-5deg); }
    75% { transform: translateX(5px) rotate(5deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .social-proof-container {
        max-width: 280px;
        left: 10px;
        bottom: 100px;
    }
    
    .live-counter {
        top: 80px;
        right: 10px;
        padding: 15px 20px;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .countdown-timer .timer-display {
        font-size: 28px;
        gap: 10px;
    }
    
    .countdown-timer .timer-unit {
        padding: 10px 15px;
        min-width: 70px;
    }
}