/* ===================================
   İNDİRLAN MASKOT - SAĞ ALT KÖŞE
   =================================== */

.mascot-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.mascot-icon {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    filter: drop-shadow(0 6px 20px rgba(0, 153, 0, 0.5));
    animation: mascotFloat 3s ease-in-out infinite;
}

.mascot-icon:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 30px rgba(0, 255, 65, 0.7));
}

/* Hafif sallanma animasyonu */
@keyframes mascotFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mesaj Balonu - BÜYÜK VE TUTARLI */
.mascot-bubble {
    position: absolute;
    bottom: 200px;
    right: 10px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border: 2px solid #009900;
    border-radius: 20px;
    padding: 20px 25px;
    max-width: 320px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(0, 153, 0, 0.3);
}

.mascot-bubble.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Balon oku */
.mascot-bubble::after {
    content: '';
    position: absolute;
    bottom: -14px;
    right: 50px;
    width: 0;
    height: 0;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #009900;
}

.mascot-bubble::before {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 52px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #0d0d0d;
    z-index: 1;
}

/* Balon metin - DAHA BÜYÜK */
.mascot-bubble p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #00ff41;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 500;
    text-shadow: 0 0 15px rgba(0, 255, 65, 0.4);
    text-align: center;
}

/* Emoji için */
.mascot-bubble p::after {
    content: ' 🍵';
    font-size: 18px;
}

/* ===================================
   MOBİL UYUM - TABLET
   =================================== */
@media (max-width: 992px) {
    .mascot-container {
        bottom: 20px;
        right: 20px;
    }

    .mascot-icon {
        width: 140px;
        height: 140px;
    }

    .mascot-bubble {
        bottom: 160px;
        max-width: 280px;
        min-width: 220px;
        padding: 16px 20px;
    }

    .mascot-bubble p {
        font-size: 15px;
    }
}

/* ===================================
   MOBİL UYUM - TELEFON
   =================================== */
@media (max-width: 768px) {
    .mascot-container {
        bottom: 15px;
        right: 15px;
    }

    .mascot-icon {
        width: 100px;
        height: 100px;
    }

    .mascot-bubble {
        bottom: 115px;
        right: 5px;
        max-width: 240px;
        min-width: 180px;
        padding: 14px 18px;
        border-radius: 15px;
    }

    .mascot-bubble p {
        font-size: 14px;
        line-height: 1.5;
    }

    .mascot-bubble p::after {
        font-size: 16px;
    }
}

/* ===================================
   MOBİL UYUM - KÜÇÜK TELEFON
   =================================== */
@media (max-width: 480px) {
    .mascot-container {
        bottom: 10px;
        right: 10px;
    }

    .mascot-icon {
        width: 80px;
        height: 80px;
    }

    .mascot-bubble {
        bottom: 95px;
        right: 0;
        max-width: 200px;
        min-width: 160px;
        padding: 12px 15px;
    }

    .mascot-bubble p {
        font-size: 13px;
    }

    .mascot-bubble p::after {
        content: ' ☕';
        font-size: 14px;
    }
}