/* Özel stiller */

body {
    font-family: 'Poppins', 'Inter', sans-serif !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Poppins', sans-serif !important;
    font-weight: 700;
}

@layer utilities {
    .glass-nav {
        backdrop-filter: blur(12px) saturate(150%);
        -webkit-backdrop-filter: blur(12px) saturate(150%);
        background: rgba(0, 0, 0, 0.4);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

/* Kaos Sandığı Animasyonları */
@keyframes levitate {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

@keyframes chest-shake {
    0%, 100% { transform: translateX(0) scale(1); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px) scale(1.02); }
    20%, 40%, 60%, 80% { transform: translateX(5px) scale(1.02); }
}

.animate-chest-shake {
    animation: chest-shake 0.8s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes pop-in {
    0% { opacity: 0; transform: scale(0.8) translateY(20px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.animate-pop-in {
    animation: pop-in 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes slot-drop {
    0% { opacity: 0; transform: translateY(-50px) rotateX(90deg); }
    100% { opacity: 1; transform: translateY(0) rotateX(0deg); }
}

.animate-slot-drop {
    animation: slot-drop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.perk-tooltip { 
    visibility: hidden; 
    opacity: 0; 
    position: absolute; 
    z-index: 50; 
    background: linear-gradient(135deg, rgba(15,15,25,0.98) 0%, rgba(30,30,50,0.98) 100%);
    color: white; 
    padding: 14px 16px; 
    border-radius: 12px; 
    width: 280px; 
    bottom: 100%; 
    left: 50%; 
    transform: translateX(-50%) translateY(-8px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1); 
    pointer-events: none; 
    text-align: center;
    border: 1px solid rgba(255, 206, 0, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.perk-slot:hover .perk-tooltip { 
    visibility: visible; 
    opacity: 1; 
    bottom: 115%;
    transform: translateX(-50%) translateY(0);
}

.perk-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(30,30,50,0.98);
}

.perk-tooltip h4 {
    color: #ffce00;
    font-weight: 800;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 0 8px rgba(255, 206, 0, 0.4);
    margin: 0 0 8px 0;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.perk-tooltip p {
    color: #e0e0e0;
    margin: 0;
    font-size: 0.85em;
    line-height: 1.5;
    text-align: center;
}

/* Add-on Tooltip */
.addon-tooltip {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 50;
    background: linear-gradient(135deg, rgba(15,15,25,0.98) 0%, rgba(40,20,60,0.98) 100%);
    color: white;
    padding: 12px 14px;
    border-radius: 10px;
    width: 240px;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    text-align: center;
    border: 1px solid rgba(168, 85, 247, 0.3);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.addon-slot:hover .addon-tooltip {
    visibility: visible;
    opacity: 1;
    bottom: 110%;
    transform: translateX(-50%) translateY(0);
}

.addon-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 7px solid rgba(40,20,60,0.98);
}

.perk-category-badge { 
    background: rgba(255, 255, 255, 0.1); 
    color: #b388ff; 
    border: 1px solid #b388ff; 
    padding: 4px 10px; 
    border-radius: 20px; 
    font-size: 0.75em; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    font-weight: bold; 
    margin-left: 10px; 
    display: inline-block; 
}   

.perk-tooltip p, .addon-tooltip p {
    white-space: normal !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    line-height: 1.5 !important;
}
