
/* --- css/shortlinks.css --- */

.shortlink-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.shortlink-card-pro {
    background: #0f1e35;
    
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    transition: transform 0.2s;
}

/* Világító ikon visszaállítása */
.provider-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #00d2ff, #3a7bd5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3); /* Itt a glow! */
    margin-right: 15px;
}

/* Gomb színe: Tompább sárga, sötét szöveggel */
.btn-claim-animated {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 12px;
    background: #ff9f1c; 
    color: #000 !important; 
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s;
}

.btn-claim-animated:hover {
    color: #000 !important;
    background: #d97706;
    transform: translateY(-2px);
}

.btn-disabled {
    width: 100%;
    padding: 12px;
    background: #1e293b;
    color: #475569;
    border: none;
    border-radius: 10px;
    cursor: not-allowed;
}

.card-completed { opacity: 0.7; }
.reward-badge { background: rgba(56, 189, 248, 0.1); color: #38bdf8; padding: 4px 8px; border-radius: 6px; font-size: 12px; }
.progress-text { font-size: 12px; color: #94a3b8; }





     /* NORMÁL ÉRTESÍTÉS STÍLUSA */
        .mini-toast {
            position: fixed; top: 80px; right: 20px; z-index: 9998;
            background: #1e293b; border: 1px solid #10b981;
            border-radius: 10px; padding: 15px; min-width: 250px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
            transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.26, 1.55);
            animation: slideInToast 0.5s forwards;
        }
        .toast-content { display: flex; align-items: center; gap: 15px; }
        .toast-icon { font-size: 24px; }
        .toast-text strong { display: block; color: #fff; font-size: 14px; margin-bottom: 3px; }
        .toast-text p { margin: 0; color: #94a3b8; font-size: 13px; }

        @keyframes slideInToast {
            from { transform: translateX(120%); }
            to { transform: translateX(0); }
        }

        /* MYSTERY BOX STÍLUSA */
        .mystery-box-overlay {
            position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(15, 23, 42, 0.75); /* Kellemes sötétítő hatás */
            display: flex; align-items: center; justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s;
            animation: fadeInOverlay 0.3s forwards;
        }

        .mystery-box-modal {
            background: #1e293b;
            border: 1px solid #3b82f6; /* Visszafogott kék keret */
            border-radius: 16px;
            padding: 30px 40px;
            text-align: center;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(59, 130, 246, 0.15); /* Halvány ragyogás */
            transition: transform 0.5s, opacity 0.5s;
            animation: popInModal 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
        }

        .mystery-box-icon {
            margin-bottom: 15px;
            animation: wiggleIcon 2s infinite ease-in-out; /* Kis mozgás, ami vonzza a szemet */
        }


        /* Az új Ajándékdoboz kép mérete */
        .custom-mystery-icon {
            width: 60px; /* Itt tudod állítani, mekkora legyen az ajándékdoboz */
            height: auto;
            filter: drop-shadow(0px 4px 10px rgba(59, 130, 246, 0.4)); /* Halványkék ragyogás magán a dobozon is! */
        }

        .mystery-box-modal h4 {
            color: #fff;
            margin: 0 0 8px 0;
            font-size: 20px;
            font-weight: 700;
        }

        .mystery-box-modal p {
            color: #94a3b8;
            margin: 0;
            font-size: 15px;
        }

        .mystery-box-modal p span {
            color: #f59e0b; /* Arany/Sárga kiemelés az összegnek */
            font-weight: 800;
            font-size: 17px;
            display: block;
            margin-top: 5px;
        }

        @keyframes fadeInOverlay {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes popInModal {
            from { transform: scale(0.5); opacity: 0; }
            to { transform: scale(1); opacity: 1; }
        }

        @keyframes wiggleIcon {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(-10deg) scale(1.1); }
            50% { transform: rotate(10deg) scale(1.1); }
            75% { transform: rotate(-5deg) scale(1.1); }
        }   
    
    