/* Modern Glassmorphism Efektleri */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Gelişmiş Gradient Arka Plan */
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #0f0f23 0%, #1a0f2e 25%, #2d0f1a 50%, #1a0f2e 75%, #0f0f23 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff;
    min-height: 100vh;
    height: 100vh;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Modern Bonus Kartları */
.bonus-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    margin: 10px 0;
    padding: 12px 10px 10px 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 60px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 12px;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.bonus-card:hover::before {
    left: 100%;
}

.bonus-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.bonus-card:hover .bonus-site {
    color: #8b9eff;
    text-shadow: 0 0 15px rgba(139, 158, 255, 0.5);
}

.bonus-card:hover .bonus-amount {
    color: #fff176;
    text-shadow: 0 0 15px rgba(255, 241, 118, 0.5);
}

/* Modern Buton Tasarımı */
.bonus-btn {
    font-size: 1.1em;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 16px 36px 16px 20px;
    box-shadow: 
        0 8px 25px rgba(102, 126, 234, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    position: relative;
    display: flex; 
    align-items: center; 
    flex-direction: column; 
    justify-content: center;
    min-width: 140px;
    min-height: 56px;
    overflow: hidden;
    margin-left: 20px;
}

.bonus-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.bonus-btn:hover::before {
    left: 100%;
}

.bonus-btn .mini {
    font-size: .85em;
    color: #ffeb3b;
    font-weight: bold;
    margin-left: 8px;
    margin-top: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.bonus-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 15px 35px rgba(102, 126, 234, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Modern Welcome Banner */
.welcome-banner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    max-width: 380px;
    margin: 15px auto 10px auto;
    padding: 15px 10px 12px 10px;
    text-align: center;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s ease;
}

.welcome-banner:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.welcome-banner .main {
    color: #fff;
    font-size: 1.2em;
    font-weight: 900;
    margin-bottom: 4px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: .02em;
}

.welcome-banner .desc {
    color: #e8e8e8;
    font-size: 1em;
    line-height: 1.3;
}

.welcome-banner .highlight {
    color: #667eea;
    font-weight: 900;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

/* Modern Badge Tasarımı */
.bonus-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 700;
    font-size: .9em;
    padding: 4px 12px;
    border-radius: 12px;
    margin-left: 8px;
    margin-bottom: 4px;
    animation: badgePulse 2s ease-in-out infinite;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

/* Modern Site İsimleri */
.bonus-site {
    font-size: 1.15em;
    font-weight: 900;
    color: #667eea;
    letter-spacing: .02em;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

/* Modern Bonus Miktarları */
.bonus-amount {
    font-size: 1.12em;
    color: #ffeb3b;
    font-weight: 900;
    margin-left: 6px;
    text-shadow: 0 0 10px rgba(255, 235, 59, 0.3);
}

/* Gelişmiş Animasyonlar */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

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

.bonus-card:nth-child(even) {
    animation-delay: 2s;
}

.bonus-card:nth-child(3n) {
    animation-delay: 4s;
}

/* Modern Toast Bildirimi */
.live-toast {
    position: fixed;
    right: 20px;
    bottom: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    font-size: 1.05em;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding: 16px 20px 16px 16px;
    min-width: 200px;
    z-index: 99;
    gap: 10px;
    transition: all 0.3s ease;
}

.live-toast:hover {
    transform: translateX(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.close-toast {
    margin-left: 10px; 
    background: none; 
    border: none; 
    color: #fff; 
    font-size: 1.3em; 
    cursor: pointer; 
    opacity: .6;
    transition: opacity 0.3s ease;
}

.close-toast:hover {
    opacity: 1;
}

/* Modern Popup */
.popup-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 40px 20px 30px 20px;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.popup-title {
    color: #667eea;
    font-weight: 800;
    font-size: 1.35em;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(102, 126, 234, 0.5);
}

.popup-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 16px;
    padding: 12px 48px;
    font-weight: 800;
    margin-top: 25px;
    font-size: 1.1em;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.popup-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.popup-text { 
    color: #e8e8e8; 
    font-size: 1.02em; 
    margin-bottom: 10px; 
    line-height: 1.5;
}

.popup b { 
    color: #667eea; 
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
}

/* Responsive İyileştirmeler */
@media screen and (max-width: 720px){
    .welcome-banner, .guvenli-badge, .bonus-list {
        max-width: 92vw;
    }
    .bonus-card {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 8px 12px 8px;
        min-height: 55px;
        border-radius: 12px;
        margin: 12px 0;
        gap: 0;
    }
    .bonus-card-content { 
        align-items: flex-start; 
        gap: 6px;
    }
    .bonus-btn { 
        min-width: 90px; 
        min-height: 40px; 
        padding: 10px 0; 
        margin-left: 0; 
        margin-top: 12px; 
        font-size: 0.95em;
    }
    .live-toast { 
        right: 8px; 
        bottom: 8px; 
        min-width: 140px; 
        padding: 10px 12px 10px 10px; 
        font-size: 0.9em;
    }
    .welcome-banner {
        padding: 16px 10px 12px 10px;
        margin: 15px auto 12px auto;
    }
    .stats-container {
        gap: 10px;
        margin: 12px auto;
    }
    .stat-item {
        padding: 8px 12px;
        min-width: 80px;
    }
    .stat-number {
        font-size: 1em;
    }
    .filter-container {
        gap: 8px;
        margin: 12px auto;
    }
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8em;
    }
}

/* Eksik CSS Sınıfları */
.bonus-card-content {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.bonus-desc {
    color: #e8e8e8;
    font-size: .98em;
    margin-top: 3px;
    font-weight: 600;
    line-height: 1.3;
}

.bonus-micro {
    color: #b8b8b8;
    font-size: .9em;
    margin-left: 6px;
    display: inline-block;
    font-weight: 500;
}

.bonus-btn.jump { 
    animation: btnjump .3s cubic-bezier(.51,1.2,.53,1.35) alternate; 
}

@keyframes btnjump { 
    100% { transform: translateY(-8px) scale(1.05); } 
}

/* Konfeti animasyonu */
.confetti {
    position: fixed;
    font-size: 1.8em;
    font-weight: bold;
    pointer-events: none;
    z-index: 900;
    animation: konfetiYukari 1.2s cubic-bezier(.51,1.2,.53,1.35);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

@keyframes konfetiYukari {
    0% { opacity: 0.8; transform: scale(0.8) translateY(0) rotate(0deg);}
    50% { opacity: 1; transform: scale(1.1) translateY(-25px) rotate(180deg);}
    100% { opacity: 0; transform: scale(1.3) translateY(-60px) rotate(360deg);}
}

/* Popup */
.popup {
    display: none;
    position: fixed;
    z-index: 888;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.close-popup {
    position: absolute;
    top: 15px; right: 20px;
    color: #667eea;
    font-size: 1.8em;
    cursor: pointer;
    opacity: .7;
    transition: opacity 0.3s ease;
}

.close-popup:hover {
    opacity: 1;
}

/* BONUS KARTLARI — MASAÜSTÜNDE YATAY, MOBİLDE DİKEY */
.bonus-list-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.bonus-list {
    max-width: 380px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 2;
    position: relative;
}

/* Güvenlik damgası */
.guvenli-badge {
    margin: 16px auto 0 auto;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    color: #667eea;
    font-size: 1em;
    border-radius: 12px;
    padding: 10px 16px 10px 14px;
    border: 1px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

/* Vegas arka plan efekti */
.vegas-bg {
    position: fixed;
    z-index: 0;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background:
        url('roulette.png') no-repeat right 28% top 39% / 160px auto,
        url('dice.png') no-repeat left 8% bottom 12% / 80px auto;
    opacity: 0.05;
    pointer-events: none;
}

.vegas-overlay {
    position: fixed;
    z-index: 1;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: radial-gradient(ellipse at center, rgba(26,8,26,0.2) 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

/* Eski micro badge, ab, shadow, special class'lar, vs. */
.bonus-btn.ab2 { background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);}
.bonus-btn.ab3 { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #667eea 100%);}
.bonus-btn.shadow { box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4); }
.bonus-btn.special { filter: brightness(1.1) saturate(1.4);}
.bonus-btn:hover.special { filter: brightness(1.15) saturate(1.9);}

.bonus-list.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.bonus-card {
    margin: 0;
    min-width: 0;
}

@media screen and (max-width: 720px){
    .bonus-btn {
        font-size: 0.95em;
        padding: 8px 12px 8px 12px;
        min-width: 70px;
        min-height: 32px;
    }
    .bonus-btn .mini {
        font-size: .75em;
        margin-top: 2px;
    }
}

.telegram-banner {
    max-width: 470px;
    margin: 16px auto 13px auto;
    padding: 13px 25px 13px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 23px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    font-family: 'Montserrat', Arial, sans-serif;
    position: relative;
}

.tg-logo-bg {
    background: radial-gradient(circle at 62% 38%, #667eea 0%, #764ba2 80%);
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.tg-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tg-title {
    font-size: 1.28em;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 7px;
    text-shadow: 0 3px 17px rgba(102, 126, 234, 0.3);
}

.tg-tikla {
    font-size: 1.38em;
    color: #667eea;
    font-weight: 900;
    margin-top: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.tg-tikla a {
    color: #667eea;
    font-weight: 900;
    margin-left: 6px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.13s;
}

.tg-tikla a:hover {
    color: #fff;
    text-shadow: 0 0 18px rgba(102, 126, 234, 0.8);
}

@media (max-width: 700px) {
    .telegram-banner {
        max-width: 97vw;
        gap: 11px;
        padding: 10px 3vw 10px 2vw;
    }
    .tg-logo-bg { width: 36px; height: 36px;}
    .tg-title, .tg-tikla { font-size: 1em; }
}

/* --- Eski micro badge, ab, shadow, special class'lar, vs. --- */
.bonus-btn.ab2 { background: linear-gradient(90deg,#2ff5f9 0,#f7e200 45%,#ff1db7 100%);}
.bonus-btn.ab3 { background: linear-gradient(90deg,#ffe48b 0,#ffb700 50%,#ff1db7 100%);}
.bonus-btn.shadow { box-shadow: 0 6px 24px 2px #ffd59b77; }
.bonus-btn.special { filter: brightness(1.1) saturate(1.4);}
.bonus-btn:hover.special { filter: brightness(1.15) saturate(1.9);}

.bonus-list.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}
.bonus-card {
    margin: 0;
    min-width: 0;
}

@media screen and (max-width: 720px){
    .welcome-banner, .guvenli-badge, .bonus-list {
        max-width: 99vw;
    }
    .bonus-btn {
        font-size: 0.95em;
        padding: 7px 10px 7px 10px;
        min-width: 68px;
        min-height: 28px;
    }
    .bonus-btn .mini {
        font-size: .74em;
        margin-top: 1px;
    }
}

.telegram-banner {
    max-width: 470px;
    margin: 16px auto 13px auto;
    padding: 13px 25px 13px 15px;
    background: linear-gradient(90deg, #111a2c 70%, #16d0fd 120%);
    border: 3px solid #47a9fd;
    border-radius: 23px;
    display: flex;
    align-items: center;
    gap: 22px;
    box-shadow: 0 4px 38px #1ed9ff55, 0 0 0 3px #2a88f480;
    font-family: 'Montserrat', Arial, sans-serif;
    position: relative;
}
.tg-logo-bg {
    background: radial-gradient(circle at 62% 38%, #27d0ff 0%, #229ed9 80%);
    border-radius: 50%;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 22px #27e2ff95, 0 0 0 2px #47a9fd;
    flex-shrink: 0;
}
.tg-banner-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.tg-title {
    font-size: 1.28em;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.02em;
    margin-bottom: 7px;
    text-shadow: 0 3px 17px #0ecfff88;
}
.tg-tikla {
    font-size: 1.38em;
    color: #39c6ff;
    font-weight: 900;
    margin-top: 1px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-shadow: 0 2px 8px #39c6ff44;
}
.tg-tikla a {
    color: #35b6fa;
    font-weight: 900;
    margin-left: 6px;
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.13s;
}
.tg-tikla a:hover {
    color: #fff;
    text-shadow: 0 0 18px #1ed9ff;
}
@media (max-width: 700px) {
    .telegram-banner {
        max-width: 97vw;
        gap: 11px;
        padding: 10px 3vw 10px 2vw;
    }
    .tg-logo-bg { width: 36px; height: 36px;}
    .tg-title, .tg-tikla { font-size: 1em; }
}

/* Hızlı Filtreler */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px auto;
    max-width: 380px;
    padding: 0 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 6px 12px;
    color: #b8b8b8;
    font-weight: 600;
    font-size: 0.8em;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.filter-btn:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
    color: #fff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

@media screen and (max-width: 720px) {
    .filter-container {
        gap: 8px;
        padding: 0 15px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85em;
    }
}

/* Canlı İstatistikler */
.stats-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px auto;
    max-width: 400px;
    padding: 0 10px;
}

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 12px;
    text-align: center;
    min-width: 80px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.stat-number {
    font-size: 1.2em;
    font-weight: 900;
    color: #667eea;
    text-shadow: 0 0 10px rgba(102, 126, 234, 0.3);
    margin-bottom: 3px;
    animation: numberPulse 2s ease-in-out infinite;
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.stat-label {
    font-size: 0.85em;
    color: #b8b8b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media screen and (max-width: 720px) {
    .stats-container {
        flex-direction: column;
        gap: 12px;
        padding: 0 15px;
    }
    
    .stat-item {
        min-width: auto;
        padding: 12px 15px;
    }
    
    .stat-number {
        font-size: 1.2em;
    }
}

/* Particles.js */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}