.fpg-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.fpg-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
}

.fpg-modal-content {
    position: relative;
    z-index: 1000000;
    max-width: 450px;
    margin: 8% auto;
    background: transparent;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 0;
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
    overflow: hidden;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.fpg-modal-header {
    background: linear-gradient(135deg, #0052da 0%, #176eff 100%);
    color: white;
    padding: 24px 20px;
    border-radius: 12px 12px 0 0;
}

.fpg-modal-icon {
    font-size: 32px;
    margin-bottom: 8px;
    display: block;
    opacity: 0.9;
}

.fpg-modal-title {
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
	position: relative;
    display: inline-block;
}

.badge-pro {
    background: #dc3545;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    margin-left: 0px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    vertical-align: middle;
	position: absolute;
	right: -40px;
	top: -14px;
}

.fpg-modal-body {
    padding: 30px 24px 0;
	background: #ffffff;
}

.fpg-modal-body p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin: 0 0 0px 0;
	padding-bottom: 10px;
	display: block;
}

.fpg-modal-footer {
    padding: 20px 24px 30px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
	background: #ffffff;
}

.fpg-pro-btn {
    background: linear-gradient(135deg, #0052da 0%, #176eff 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px #0052da7a;
}

.fpg-pro-btn:hover {
    background: linear-gradient(135deg, #176eff 0%, #0052da 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px #0052da7a;
    text-decoration: none;
    color: #fff;
}

.fpg-modal-close {
    font-size: 24px;
    cursor: pointer;
    color: #ffffff;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    border-radius: 50%;
    background: transparent;
	position: absolute;
	right: 6px;
	top: 6px;
	background: transparent;
	z-index: 8;
	line-height: 1;
}

.fpg-modal-close:hover {
    color: #666;
    background: #f8f9fa;
    transform: rotate(90deg);
}