/* --- NEW GAMIFICATION BANNER --- */
.gamification-banner {
    background-image: url('assets/images/gamification_banner_new.png');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    height: 380px;
    /* Biraz daha yükselttik */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* İç dolgu */
    padding: 0 60px;
}

/* Koyu degrade filtre - Yazıların okunması için */
.gamification-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.gami-text {
    position: relative;
    z-index: 2;
    max-width: 550px;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.gami-text h2 {
    font-size: 3.5rem;
    /* Çok daha büyük başlık */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    font-family: 'Outfit', sans-serif;
    /* Varsa modern font */
    letter-spacing: -1px;
}

.gami-text h2 span {
    background: linear-gradient(to right, #f1c40f, #ffeb3b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(241, 196, 15, 0.4));
}

.gami-text p {
    color: #ddd;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
    border-left: 4px solid #f1c40f;
    padding-left: 15px;
}

.gami-buttons {
    display: flex;
    gap: 20px;
}

.btn-gami {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Elastik efekt */
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Primary Button (Görevler) */
.btn-gami.primary {
    background: linear-gradient(135deg, #f1c40f 0%, #d4ac0d 100%);
    color: #000;
    box-shadow: 0 10px 20px rgba(241, 196, 15, 0.3);
    border: none;
}

.btn-gami.primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.5);
}

/* Secondary Button (Market) */
.btn-gami.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-gami.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    border-color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gamification-banner {
        height: auto;
        padding: 40px 25px;
        background-position: left center;
        /* Mobilde görselin solunu göster */
        text-align: center;
        flex-direction: column;
        justify-content: center;
    }

    .gamification-banner::before {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
        /* Mobilde daha koyu */
    }

    .gami-text {
        max-width: 100%;
    }

    .gami-text h2 {
        font-size: 2.2rem;
    }

    .gami-text p {
        border-left: none;
        padding-left: 0;
        font-size: 1rem;
    }

    .gami-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-gami {
        width: 100%;
        justify-content: center;
    }
}

/* --- OTHER STYLES (Header Points, Missions, Shop) preserved --- */
.header-points {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
    transition: 0.3s;
    cursor: pointer;
}

.header-points:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.header-points i {
    filter: drop-shadow(0 0 5px orange);
}

.mission-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    border-color: #555;
    background: #222;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #007bff;
    flex-shrink: 0;
}

.mission-content {
    flex: 1;
}

.mission-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.mission-desc {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 8px;
}

.mission-reward {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(241, 196, 15, 0.1);
    color: #f1c40f;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.btn-mission {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.2s;
}

.btn-mission:hover {
    background: #0056b3;
}

.btn-mission.claimed {
    background: #28a745;
    cursor: default;
    opacity: 0.7;
}

.btn-mission.disabled {
    background: #444;
    cursor: not-allowed;
    color: #888;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.shop-card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 16px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
}

.shop-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: #007bff;
}

.shop-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #111;
    padding: 20px;
}

.shop-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.shop-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 8px;
}

.shop-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    flex: 1;
}

.shop-price {
    font-size: 20px;
    color: #f1c40f;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.btn-buy {
    background: #28a745;
    color: #fff;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.btn-buy:hover {
    background: #218838;
}

.btn-buy:disabled {
    background: #444;
    cursor: not-allowed;
    color: #888;
}