/* Global Pacific Shield: Premium Styles */
.gp-shield-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gp-shield-modal.active {
    display: flex;
    opacity: 1;
}

.gp-shield-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 60px 40px;
    border-radius: 32px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.6);
    transform: translateY(20px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.gp-shield-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.gp-shield-modal.active .gp-shield-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.gp-shield-card h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
    letter-spacing: -1px;
    line-height: 1;
}

.gp-shield-card p {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
}

.gp-shield-primary-btn {
    background: #ef4444;
    color: white;
    padding: 18px 30px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3);
}

.gp-shield-primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.4);
    background: #f87171;
}

.gp-shield-secondary-btn {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gp-shield-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}