/* ═══════════════════════════════════════════════════════════
   DenizLink Puan Sistemi CSS
   Prefix: dlpts-
   ═══════════════════════════════════════════════════════════ */

/* ─── Puan Kutusu (Header) ─── */
.dlpts-box {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.5);
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    white-space: nowrap;
    height: 26px;
    line-height: 1;
    font-family: 'JetBrains Mono', monospace;
}

.dlpts-box:hover {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
    transform: translateY(-1px);
}

/* ─── Davet Balonu (Kredi barı altında konuşma balonu overlay) ─── */
.dlpts-invite-bubble {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    transform: scale(0.6);
    transform-origin: top right;
    opacity: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(0, 32, 18, 0.97), rgba(0, 45, 25, 0.97));
    border: 1px solid rgba(0, 255, 136, 0.5);
    border-radius: 10px;
    padding: 7px 24px 7px 10px;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.15), 0 0 8px rgba(0, 255, 136, 0.1);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    animation: dlpts-bubble-glow 2.5s ease-in-out infinite;
}

.dlpts-invite-bubble.dlpts-bubble-visible {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.dlpts-invite-bubble.dlpts-bubble-exit {
    opacity: 0;
    transform: scale(0.6);
    pointer-events: none;
}

/* Ok işareti (yukarıyı gösteren üçgen - balon aşağıda, sağ hizalı) */
.dlpts-bubble-arrow {
    position: absolute;
    top: -6px;
    right: 16px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(0, 255, 136, 0.5);
}

.dlpts-bubble-arrow::after {
    content: '';
    position: absolute;
    top: 1.5px;
    left: -6px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid rgba(0, 32, 18, 0.97);
}

.dlpts-bubble-text {
    font-size: 0.68rem;
    font-weight: 600;
    color: #00ff88;
    letter-spacing: 0.2px;
}

.dlpts-bubble-close {
    position: absolute;
    top: 2px;
    right: 4px;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: #666;
    font-size: 0.65rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    border-radius: 50%;
    transition: all 0.2s;
}

.dlpts-bubble-close:hover {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
}

@keyframes dlpts-bubble-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(0, 255, 136, 0.15), 0 0 8px rgba(0, 255, 136, 0.1); }
    50% { box-shadow: 0 4px 24px rgba(0, 255, 136, 0.3), 0 0 14px rgba(0, 255, 136, 0.2); }
}

@media (max-width: 480px) {
    .dlpts-invite-bubble {
        padding: 5px 20px 5px 8px;
        border-radius: 8px;
    }
    .dlpts-bubble-text {
        font-size: 0.56rem;
    }
}

/* Coin SVG İkon */
.dlpts-coin-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* Puan Sayısı */
.dlpts-count {
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

/* Pil Göstergesi (Mini Bar) */
.dlpts-bar-wrap {
    width: 36px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.dlpts-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 0.5s ease, background 0.5s ease;
    background: linear-gradient(90deg, #00ff88, #00cc66);
}

/* Renk durumları */
.dlpts-box.dlpts-level-high {
    border-color: rgba(0, 255, 136, 0.5);
    background: rgba(0, 255, 136, 0.08);
}

.dlpts-box.dlpts-level-high .dlpts-count {
    color: #00ff88;
}

.dlpts-box.dlpts-level-high .dlpts-bar-fill {
    background: linear-gradient(90deg, #00ff88, #00cc66);
}

.dlpts-box.dlpts-level-medium {
    border-color: rgba(255, 165, 0, 0.5);
    background: rgba(255, 165, 0, 0.1);
}

.dlpts-box.dlpts-level-medium .dlpts-count {
    color: #ffa500;
}

.dlpts-box.dlpts-level-medium .dlpts-bar-fill {
    background: linear-gradient(90deg, #ffa500, #ff8c00);
}

.dlpts-box.dlpts-level-low {
    border-color: rgba(255, 68, 68, 0.5);
    background: rgba(255, 68, 68, 0.1);
    animation: dlpts-pulse-low 2s ease-in-out infinite;
}

.dlpts-box.dlpts-level-low .dlpts-count {
    color: #ff4444;
}

.dlpts-box.dlpts-level-low .dlpts-bar-fill {
    background: linear-gradient(90deg, #ff4444, #cc0000);
}

@keyframes dlpts-pulse-low {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 68, 68, 0); }
    50% { box-shadow: 0 0 12px 2px rgba(255, 68, 68, 0.3); }
}

/* Puan değişim animasyonu */
.dlpts-count.dlpts-anim-deduct {
    animation: dlpts-shake 0.4s ease;
}

.dlpts-count.dlpts-anim-gain {
    animation: dlpts-bounce 0.5s ease;
}

@keyframes dlpts-shake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-3px); }
    40% { transform: translateX(3px); }
    60% { transform: translateX(-2px); }
    80% { transform: translateX(2px); }
}

@keyframes dlpts-bounce {
    0% { transform: scale(1); }
    30% { transform: scale(1.3); }
    60% { transform: scale(0.95); }
    100% { transform: scale(1); }
}

/* ─── Toast Bildirim Sistemi ─── */
.dlpts-toast-container {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
    max-width: 380px;
}

.dlpts-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: rgba(10, 10, 20, 0.95);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 136, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: auto;
    transform: translateX(120%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    max-width: 100%;
}

.dlpts-toast.dlpts-toast-visible {
    transform: translateX(0);
    opacity: 1;
}

.dlpts-toast.dlpts-toast-exit {
    transform: translateX(120%);
    opacity: 0;
}

.dlpts-toast-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 255, 136, 0.15);
}

.dlpts-toast-icon svg {
    width: 18px;
    height: 18px;
}

.dlpts-toast-content {
    flex: 1;
    min-width: 0;
}

.dlpts-toast-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #00ff88;
    margin-bottom: 4px;
    line-height: 1.3;
}

.dlpts-toast-msg {
    font-size: 0.72rem;
    color: #b0b8c4;
    line-height: 1.4;
}

.dlpts-toast-close {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: color 0.2s;
}

.dlpts-toast-close:hover {
    color: #ff4444;
}

/* Toast tiplerine göre renkler */
.dlpts-toast.dlpts-toast-warning {
    border-color: rgba(255, 165, 0, 0.4);
}

.dlpts-toast.dlpts-toast-warning .dlpts-toast-icon {
    background: rgba(255, 165, 0, 0.15);
}

.dlpts-toast.dlpts-toast-warning .dlpts-toast-title {
    color: #ffa500;
}

.dlpts-toast.dlpts-toast-danger {
    border-color: rgba(255, 68, 68, 0.4);
}

.dlpts-toast.dlpts-toast-danger .dlpts-toast-icon {
    background: rgba(255, 68, 68, 0.15);
}

.dlpts-toast.dlpts-toast-danger .dlpts-toast-title {
    color: #ff4444;
}

.dlpts-toast.dlpts-toast-gold {
    border-color: rgba(255, 215, 0, 0.4);
}

.dlpts-toast.dlpts-toast-gold .dlpts-toast-icon {
    background: rgba(255, 215, 0, 0.15);
}

.dlpts-toast.dlpts-toast-gold .dlpts-toast-title {
    color: #ffd700;
}

/* Toast butonları */
.dlpts-toast-actions {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.dlpts-toast-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dlpts-toast-btn.dlpts-btn-invite {
    background: rgba(0, 255, 136, 0.15);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.dlpts-toast-btn.dlpts-btn-invite:hover {
    background: rgba(0, 255, 136, 0.25);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.dlpts-toast-btn.dlpts-btn-premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2), rgba(255, 140, 0, 0.2));
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.dlpts-toast-btn.dlpts-btn-premium:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 140, 0, 0.3));
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

/* ─── Davet Paylaşım Modalı ─── */
.dlpts-invite-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dlpts-invite-overlay.dlpts-visible {
    opacity: 1;
    visibility: visible;
}

.dlpts-invite-modal {
    background: rgba(12, 12, 28, 0.97);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 255, 136, 0.1);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dlpts-invite-overlay.dlpts-visible .dlpts-invite-modal {
    transform: scale(1) translateY(0);
}

.dlpts-invite-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 10px;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
}

.dlpts-invite-header h3 {
    font-size: 0.95rem;
    color: #00ff88;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.dlpts-invite-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
}

.dlpts-invite-close:hover {
    background: rgba(255, 68, 68, 0.15);
    border-color: rgba(255, 68, 68, 0.3);
    color: #ff4444;
}

.dlpts-invite-body {
    padding: 14px 18px;
}

.dlpts-invite-info {
    text-align: center;
    margin-bottom: 12px;
}

.dlpts-invite-info p {
    font-size: 0.75rem;
    color: #b0b8c4;
    line-height: 1.4;
    margin: 0;
}

.dlpts-invite-info .dlpts-bonus-highlight {
    color: #ffd700;
    font-weight: 700;
    font-size: 0.95rem;
}

/* Referans Kodu Kutusu */
.dlpts-ref-code-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px dashed rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    margin-bottom: 12px;
}

.dlpts-ref-code-label {
    font-size: 0.7rem;
    color: #888;
    white-space: nowrap;
}

.dlpts-ref-code-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #00ff88;
    letter-spacing: 1px;
    flex: 1;
    font-family: 'JetBrains Mono', monospace;
}

.dlpts-ref-code-copy {
    padding: 4px 10px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 6px;
    color: #00ff88;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'JetBrains Mono', monospace;
}

.dlpts-ref-code-copy:hover {
    background: rgba(0, 255, 136, 0.2);
}

/* Referans Link Kutusu */
.dlpts-ref-link-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    margin-bottom: 14px;
}

.dlpts-ref-link-input {
    flex: 1;
    background: none;
    border: none;
    color: #b0b8c4;
    font-size: 0.7rem;
    font-family: 'JetBrains Mono', monospace;
    outline: none;
    min-width: 0;
}

.dlpts-ref-link-copy {
    padding: 4px 10px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 6px;
    color: #00ff88;
    font-size: 0.68rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'JetBrains Mono', monospace;
    white-space: nowrap;
}

.dlpts-ref-link-copy:hover {
    background: rgba(0, 255, 136, 0.2);
}

/* Paylaşım Butonları Grid */
.dlpts-share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.dlpts-share-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dlpts-share-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.dlpts-share-btn svg {
    width: 24px;
    height: 24px;
}

.dlpts-share-btn span {
    font-size: 0.62rem;
    color: #b0b8c4;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
}

/* Paylaşım platform renkleri */
.dlpts-share-btn.dlpts-share-whatsapp:hover { border-color: #25d366; }
.dlpts-share-btn.dlpts-share-whatsapp svg { color: #25d366; }

.dlpts-share-btn.dlpts-share-facebook:hover { border-color: #1877f2; }
.dlpts-share-btn.dlpts-share-facebook svg { color: #1877f2; }

.dlpts-share-btn.dlpts-share-messenger:hover { border-color: #006aff; }
.dlpts-share-btn.dlpts-share-messenger svg { color: #006aff; }

.dlpts-share-btn.dlpts-share-linkedin:hover { border-color: #0a66c2; }
.dlpts-share-btn.dlpts-share-linkedin svg { color: #0a66c2; }

.dlpts-share-btn.dlpts-share-instagram:hover { border-color: #e4405f; }
.dlpts-share-btn.dlpts-share-instagram svg { color: #e4405f; }

.dlpts-share-btn.dlpts-share-instagram-dm:hover { border-color: #c13584; }
.dlpts-share-btn.dlpts-share-instagram-dm svg { color: #c13584; }

.dlpts-share-btn.dlpts-share-sms:hover { border-color: #4caf50; }
.dlpts-share-btn.dlpts-share-sms svg { color: #4caf50; }

.dlpts-share-btn.dlpts-share-copy:hover { border-color: #00ff88; }
.dlpts-share-btn.dlpts-share-copy svg { color: #00ff88; }

/* ─── Referans Kodu Giriş (URL'den gelen) ─── */
.dlpts-referral-banner {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    margin: 8px 0;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    font-size: 0.75rem;
    color: #ffd700;
}

.dlpts-referral-banner.dlpts-visible {
    display: flex;
}

/* ─── Günlük Bonus Kutlama ─── */
.dlpts-daily-celebration {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    z-index: 100001;
    background: rgba(10, 10, 25, 0.97);
    border: 2px solid #ffd700;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    max-width: 360px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 50px rgba(255, 215, 0, 0.15);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dlpts-daily-celebration.dlpts-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.dlpts-daily-celebration .dlpts-daily-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 16px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.dlpts-daily-celebration .dlpts-daily-icon svg {
    width: 32px;
    height: 32px;
    color: #ffd700;
}

.dlpts-daily-celebration h4 {
    color: #ffd700;
    font-size: 1.1rem;
    margin: 0 0 8px;
}

.dlpts-daily-celebration p {
    color: #b0b8c4;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 0 16px;
}

.dlpts-daily-celebration .dlpts-daily-close {
    padding: 8px 24px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border: none;
    border-radius: 8px;
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: 'JetBrains Mono', monospace;
    transition: all 0.2s;
}

.dlpts-daily-celebration .dlpts-daily-close:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transform: translateY(-1px);
}

/* ─── Responsive: Tablet ─── */
@media (max-width: 768px) {
    .dlpts-box {
        padding: 2px 8px;
        gap: 4px;
        font-size: 0.68rem;
        height: 24px;
    }

    .dlpts-coin-icon {
        width: 14px;
        height: 14px;
    }

    .dlpts-bar-wrap {
        width: 28px;
        height: 6px;
    }

    .dlpts-toast-container {
        top: 70px;
        right: 10px;
        left: 10px;
        max-width: none;
    }

    .dlpts-toast {
        padding: 12px 14px;
    }

    .dlpts-share-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }

    .dlpts-invite-modal {
        max-width: 100%;
        border-radius: 12px;
    }

    .dlpts-invite-header {
        padding: 16px 18px 12px;
    }

    .dlpts-invite-body {
        padding: 16px 18px;
    }
}

/* ─── Responsive: Mobil ─── */
@media (max-width: 480px) {
    .dlpts-box {
        padding: 2px 6px;
        gap: 3px;
        font-size: 0.62rem;
        height: 22px;
        border-radius: 14px;
    }

    .dlpts-coin-icon {
        width: 12px;
        height: 12px;
    }

    .dlpts-bar-wrap {
        width: 22px;
        height: 5px;
    }

    .dlpts-toast-container {
        top: 60px;
        right: 8px;
        left: 8px;
    }

    .dlpts-toast {
        padding: 10px 12px;
        gap: 8px;
    }

    .dlpts-toast-icon {
        width: 26px;
        height: 26px;
    }

    .dlpts-toast-title {
        font-size: 0.75rem;
    }

    .dlpts-toast-msg {
        font-size: 0.68rem;
    }

    .dlpts-share-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }

    .dlpts-share-btn {
        padding: 10px 6px;
    }

    .dlpts-share-btn svg {
        width: 24px;
        height: 24px;
    }

    .dlpts-share-btn span {
        font-size: 0.58rem;
    }

    .dlpts-invite-modal {
        max-height: 85vh;
    }

    .dlpts-invite-header h3 {
        font-size: 0.95rem;
    }

    .dlpts-daily-celebration {
        padding: 24px 20px;
        max-width: 320px;
    }

    .dlpts-ref-code-box {
        flex-wrap: wrap;
    }
}

/* ─── Admin Panel Puan Badge ─── */
.dlpts-admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    cursor: pointer;
    transition: all 0.2s;
}

.dlpts-admin-badge:hover {
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 0 8px rgba(255, 215, 0, 0.2);
}

.dlpts-admin-badge svg {
    width: 12px;
    height: 12px;
}

/* Admin Puan Düzenleme Modalı */
.dlpts-admin-modal {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.dlpts-admin-modal.dlpts-visible {
    opacity: 1;
    visibility: visible;
}

.dlpts-admin-modal-content {
    background: #1a1a2e;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 24px;
    max-width: 400px;
    width: 100%;
}

.dlpts-admin-modal-content h4 {
    color: #00ff88;
    margin: 0 0 16px;
    font-size: 1rem;
}

.dlpts-admin-modal-content label {
    display: block;
    color: #b0b8c4;
    font-size: 0.78rem;
    margin-bottom: 6px;
}

.dlpts-admin-modal-content input[type="number"] {
    width: 100%;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 6px;
    color: #f4fff9;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.85rem;
    margin-bottom: 12px;
    outline: none;
}

.dlpts-admin-modal-content input[type="number"]:focus {
    border-color: #00ff88;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
}

.dlpts-admin-modal-content .dlpts-admin-info {
    font-size: 0.7rem;
    color: #888;
    margin-bottom: 16px;
}

.dlpts-admin-modal-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.dlpts-admin-modal-actions button {
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.dlpts-admin-save {
    background: linear-gradient(135deg, #00ff88, #00cc66);
    color: #000;
}

.dlpts-admin-save:hover {
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.dlpts-admin-cancel {
    background: rgba(255, 255, 255, 0.05);
    color: #b0b8c4;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.dlpts-admin-cancel:hover {
    background: rgba(255, 255, 255, 0.1);
}
