/* Support Heart Button */
.support-heart-btn {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #16213e 0%, #1a2842 100%);
    border: 2px solid #2a3f5f;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    /*display: flex;*/
    align-items: center;
    justify-content: center;
    z-index: 100;
    padding: 0;
    line-height: 1;
    display: none !important;
}

.support-heart-btn:hover {
    border-color: #ff4757;
    box-shadow: 0 6px 20px rgba(255, 71, 87, 0.4);
    transform: translateY(-2px);
    animation: heartbeat 0.6s ease-in-out;
}

.support-heart-btn:active {
    transform: scale(0.95);
}

@keyframes heartbeat {
    0%, 100% { transform: translateY(-2px) scale(1); }
    25% { transform: translateY(-2px) scale(1.1); }
    50% { transform: translateY(-2px) scale(1); }
    75% { transform: translateY(-2px) scale(1.1); }
}

/* Support Modal */
.support-message {
    background: rgba(0, 212, 255, 0.1);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.6;
}

.support-message p {
    margin: 0;
}

.support-options {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.support-option {
    background: linear-gradient(135deg, #1a2842 0%, #16213e 100%);
    border: 2px solid #2a3f5f;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    display: grid;
    grid-template-columns: 40px 1fr 30px;
    gap: 12px;
    align-items: center;
    transition: all 0.3s;
    position: relative;
}

.support-option:hover {
    border-color: #00d4ff;
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.support-option:active {
    transform: scale(0.98);
}

.support-option.featured {
    border-color: #f7b731;
    background: linear-gradient(135deg, rgba(247, 183, 49, 0.15) 0%, #16213e 100%);
}

.support-option.featured:hover {
    border-color: #f7b731;
    box-shadow: 0 4px 20px rgba(247, 183, 49, 0.4);
}

.support-feature-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: linear-gradient(135deg, #f7b731, #f39c12);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(247, 183, 49, 0.5);
}

.support-option-icon {
    font-size: 28px;
    text-align: center;
}

.support-option-content {
    flex: 1;
}

.support-option-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.support-option-desc {
    color: #8b8b9e;
    font-size: 12px;
}

.support-option-arrow {
    color: #00d4ff;
    font-size: 24px;
    font-weight: 700;
}

.support-footer {
    background: #0f1929;
    border-radius: 10px;
    padding: 14px;
    margin-bottom: 16px;
}

.support-stats {
    display: grid;
    gap: 10px;
}

.support-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #8b8b9e;
    font-size: 13px;
}

.support-stat-icon {
    font-size: 18px;
}

.support-stat strong {
    color: #00d4ff;
    font-weight: 800;
}

/* Ad Notifications */
.ad-notification,
.thank-you-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: linear-gradient(135deg, #1a2842 0%, #16213e 100%);
    border: 3px solid #00d4ff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.6);
    z-index: 2000;
    display: flex;
    gap: 15px;
    align-items: center;
    max-width: 90%;
    width: 400px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ad-notification.show,
.thank-you-notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.thank-you-notification {
    border-color: #00d2a0;
    box-shadow: 0 20px 60px rgba(0, 210, 160, 0.6);
}

.ad-notification-content,
.thank-you-content {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.ad-notification-icon,
.thank-you-icon {
    font-size: 48px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    flex-shrink: 0;
}

.ad-notification-text,
.thank-you-text {
    flex: 1;
    color: #ffffff;
}

.ad-notification-text strong,
.thank-you-text strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

@media (max-width: 380px) {
    .support-heart-btn {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}