/* ============================================
   Playerverse Pricing — Frontend Styles
   Pixel-match to Divi pricing + interactive hover
   ============================================ */

.pvp-pricing-section {
    width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
    background: transparent;
}

.pvp-pricing-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    background: transparent;
}

/* ─── Tier Card ─── */
.pvp-tier-card {
    background: #fff;
    color: #333;
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    border: 1px solid #e0e0e0;
    overflow: hidden;

    /* Interactive transitions */
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.35s ease;
    cursor: pointer;
}

/* Hover — lift + glow */
.pvp-tier-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(74, 144, 217, 0.25),
                0 6px 20px rgba(0, 0, 0, 0.1);
    border-color: #4a90d9;
    z-index: 5;
}

/* Featured card — elevated */
.pvp-tier-card.pvp-tier-featured {
    z-index: 2;
    transform: scale(1.04);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    border: 2px solid #4a90d9;
}

.pvp-tier-card.pvp-tier-featured:hover {
    transform: translateY(-10px) scale(1.06);
    box-shadow: 0 24px 60px rgba(74, 144, 217, 0.35),
                0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 6;
}

/* ─── Header — Dark navy bar ─── */
.pvp-tier-header {
    background: #1a2744;
    text-align: center;
    padding: 18px 20px 14px;
    margin: 0;
    transition: background 0.35s ease;
}

.pvp-tier-card:hover .pvp-tier-header {
    background: #223252;
}

.pvp-tier-title {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
    letter-spacing: -0.3px;
    transition: text-shadow 0.3s ease;
}

.pvp-tier-card:hover .pvp-tier-title {
    text-shadow: 0 0 12px rgba(74, 144, 217, 0.6);
}

.pvp-tier-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin: 0;
}

/* Featured subtitle — red/urgency colour */
.pvp-tier-featured .pvp-tier-subtitle {
    color: #e74c3c;
    font-weight: 600;
    font-style: normal;
}

/* ─── Price ─── */
.pvp-tier-price {
    text-align: center;
    margin-bottom: 28px;
    padding: 25px 30px 0;
    line-height: 1;
}

.pvp-price-prefix {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 4px;
}

.pvp-price-amount {
    font-size: 64px;
    font-weight: 300;
    color: #4a90d9;
    letter-spacing: -2px;
    display: inline-block;
    transition: transform 0.35s ease, color 0.35s ease;
}

.pvp-price-currency {
    font-size: 32px;
    font-weight: 300;
    vertical-align: super;
    margin-right: 2px;
    letter-spacing: 0;
}

.pvp-tier-card:hover .pvp-price-amount {
    transform: scale(1.06);
    color: #3570b0;
}

.pvp-price-suffix {
    font-size: 16px;
    color: #888;
    vertical-align: baseline;
}

/* ─── Features List ─── */
.pvp-tier-features {
    list-style: none !important;
    padding: 0 30px !important;
    margin: 0 0 30px 0;
    flex: 1;
}

.pvp-tier-features li {
    list-style: none !important;
    list-style-type: none !important;
    padding: 9px 0 9px 22px;
    position: relative;
    font-size: 15px;
    line-height: 1.5;
    color: #444;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.25s ease, padding-left 0.25s ease;
}

.pvp-tier-features li::marker {
    content: none;
    display: none;
}

.pvp-tier-features li:last-child {
    border-bottom: none;
}

/* Feature highlight on hover */
.pvp-tier-card:hover .pvp-tier-features li:hover {
    background: rgba(74, 144, 217, 0.06);
    padding-left: 28px;
}

.pvp-tier-features li::before {
    content: '●';
    position: absolute;
    left: 0;
    top: 9px;
    color: #4a90d9;
    font-size: 10px;
    transition: transform 0.25s ease;
}

.pvp-tier-card:hover .pvp-tier-features li:hover::before {
    transform: scale(1.4);
}

/* ─── CTA Button ─── */
.pvp-tier-cta {
    text-align: center;
    margin-top: auto;
    padding: 0 30px 30px;
}

.pvp-cta-btn {
    display: inline-block;
    padding: 13px 36px;
    border: 2px solid #4a90d9;
    color: #4a90d9;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Fill-from-bottom animation */
.pvp-cta-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, #4a90d9, #3570b0);
    z-index: -1;
    transition: height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pvp-cta-btn:hover {
    color: #fff;
    border-color: #3570b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 144, 217, 0.35);
}

.pvp-cta-btn:hover::before {
    height: 100%;
}

.pvp-cta-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(74, 144, 217, 0.25);
}

/* Featured card: pre-filled button */
.pvp-tier-featured .pvp-cta-btn {
    background: linear-gradient(135deg, #4a90d9, #3570b0);
    color: #fff;
    border-color: #3570b0;
}

.pvp-tier-featured .pvp-cta-btn::before {
    background: linear-gradient(135deg, #3570b0, #254d80);
}

.pvp-tier-featured .pvp-cta-btn:hover {
    box-shadow: 0 8px 28px rgba(74, 144, 217, 0.45);
}

/* Subtle button glow when card is hovered */
.pvp-tier-card:hover .pvp-cta-btn {
    border-color: #3570b0;
    box-shadow: 0 4px 16px rgba(74, 144, 217, 0.2);
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
    .pvp-pricing-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pvp-tier-card {
        max-width: 100%;
        width: 100%;
    }

    .pvp-tier-card.pvp-tier-featured {
        transform: none;
    }

    .pvp-tier-card:hover {
        transform: translateY(-4px);
    }

    .pvp-tier-card.pvp-tier-featured:hover {
        transform: translateY(-4px);
    }
}

/* ============================================
   Special Offer Modal — Premium Dark Design
   ============================================ */

/* ─── Overlay container ─── */
.pvp-offer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pvp-offer-overlay.pvp-offer-visible {
    opacity: 1;
    pointer-events: all;
}

/* ─── Glassmorphism backdrop ─── */
.pvp-offer-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.pvp-offer-overlay.pvp-offer-visible::before {
    opacity: 1;
}

/* ─── Banner card ─── */
.pvp-offer-banner {
    max-width: 520px;
    width: 92%;
    background: linear-gradient(165deg, #1a1a2e 0%, #16162a 40%, #0f0f1e 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px 36px 36px;
    text-align: center;
    position: relative;
    z-index: 101;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6),
                0 0 60px rgba(139, 92, 246, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.04);

    /* Start off-screen */
    transform: translateY(40px) scale(0.96);
    opacity: 0;
    transition: none;
}

.pvp-offer-overlay.pvp-offer-visible .pvp-offer-banner {
    animation: pvp-modal-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

@keyframes pvp-modal-in {
    0%   { transform: translateY(40px) scale(0.96); opacity: 0; }
    100% { transform: translateY(0) scale(1); opacity: 1; }
}

.pvp-offer-banner.pvp-offer-exit {
    animation: pvp-modal-out 0.35s cubic-bezier(0.55, 0, 1, 0.45) forwards !important;
}

@keyframes pvp-modal-out {
    0%   { transform: translateY(0) scale(1); opacity: 1; }
    100% { transform: translateY(30px) scale(0.96); opacity: 0; }
}

/* ─── Close button ─── */
.pvp-offer-close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 110;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    line-height: 1;
    padding: 0;
}

.pvp-offer-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ─── Eyebrow label ─── */
.pvp-offer-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #a78bfa;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* ─── Title (product name) ─── */
.pvp-offer-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

/* ─── Subtitle ─── */
.pvp-offer-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 24px;
    line-height: 1.5;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
}

/* ─── Price ─── */
.pvp-offer-price {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -1px;
}

.pvp-offer-price-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

/* ─── Value framing ─── */
.pvp-offer-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(139, 92, 246, 0.06);
    border: 1px solid rgba(139, 92, 246, 0.1);
    border-radius: 10px;
    padding: 12px 18px;
    margin: 0 auto 16px;
    max-width: 400px;
    line-height: 1.5;
}

/* ─── Scarcity (refined) ─── */
.pvp-offer-scarcity {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.15);
    padding: 6px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
}

/* ─── CTA Button — premium gradient ─── */
.pvp-offer-cta {
    display: inline-block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    padding: 14px 40px;
    border-radius: 12px;
    text-decoration: none;
    border: none;
    margin-bottom: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.3);
    letter-spacing: 0.3px;
}

.pvp-offer-cta:hover {
    background: linear-gradient(135deg, #6d28d9, #5b21b6);
    box-shadow: 0 6px 28px rgba(124, 58, 237, 0.45);
    transform: translateY(-1px);
    color: #ffffff;
}

.pvp-offer-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 12px rgba(124, 58, 237, 0.3);
}

/* ─── Deadline ─── */
.pvp-offer-deadline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    margin-top: 4px;
    margin-bottom: 4px;
}

/* ─── Trust line ─── */
.pvp-offer-trust {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 8px;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
    .pvp-offer-banner { padding: 32px 24px 28px; }
    .pvp-offer-title { font-size: 22px; }
    .pvp-offer-price { font-size: 38px; }
    .pvp-offer-subtitle { font-size: 13px; }
    .pvp-offer-cta { font-size: 14px; padding: 12px 28px; }
    .pvp-offer-close { width: 30px; height: 30px; font-size: 16px; top: 10px; right: 12px; }
    .pvp-form-row { flex-direction: column; gap: 0; }
}

/* ═══════════════════════════════════════
   OFFER CONTACT FORM — Premium
   ═══════════════════════════════════════ */

.pvp-offer-form-view {
    text-align: center;
    padding: 0;
}

.pvp-offer-form-intro {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 20px;
    line-height: 1.5;
}

.pvp-offer-form {
    text-align: left;
    max-width: 440px;
    margin: 0 auto;
}

.pvp-form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.pvp-form-row-single {
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

.pvp-form-field {
    flex: 1;
    min-width: 0;
}

.pvp-form-label {
    display: block;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 5px;
    letter-spacing: 0.3px;
}

.pvp-form-input {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 14px;
    color: #e0e7ff;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.pvp-form-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-size: 13px;
}

.pvp-form-input:focus {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

/* Offer code — locked style */
.pvp-form-code {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.25);
    color: #a78bfa;
    cursor: default;
    letter-spacing: 2px;
    text-align: center;
    font-weight: 600;
}

.pvp-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 18px;
    gap: 14px;
}

.pvp-form-back {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pvp-form-back:hover {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.pvp-form-submit {
    flex: 1;
    font-size: 14px !important;
    padding: 12px 20px !important;
}

/* ─── Form status messages ─── */
.pvp-form-status {
    margin-top: 16px;
    padding: 16px;
    border-radius: 10px;
    text-align: center;
}

.pvp-form-success {
    color: #a78bfa;
}

.pvp-form-success-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.pvp-form-success-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.pvp-form-success-msg {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.pvp-form-error {
    color: #fca5a5;
    font-size: 13px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.2);
}

/* ============================================
   Trust Cards — Match Live Site Exactly
   Section: et_pb_section_1 (3x blurb cards)
   ============================================ */

/* Section background + tighten gap with hero above */
.home .et_pb_section_0 {
    padding-bottom: 20px !important;
}
.home .et_pb_section_1 {
    background-color: #191A21 !important;
    padding-top: 20px !important;
}

/* Constrain image/icon size to ~57px like live */
.home .et_pb_section_1 .et_pb_main_blurb_image {
    margin-bottom: 30px !important;
    text-align: center !important;
}

.home .et_pb_section_1 .et_pb_main_blurb_image img {
    width: 57px !important;
    height: 57px !important;
    max-width: 57px !important;
}

/* Card styling */
.home .et_pb_section_1 .et_pb_blurb {
    background-color: #242732 !important;
    border-radius: 14px !important;
    padding: 38px 41px !important;
    text-align: center !important;
}

/* Blurb content container */
.home .et_pb_section_1 .et_pb_blurb_content {
    text-align: center !important;
    padding: 0 !important;
}

/* Header text */
.home .et_pb_section_1 .et_pb_module_header {
    font-family: "Open Sans", Arial, sans-serif !important;
    font-size: 25px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    line-height: 1em !important;
    text-align: center !important;
    padding-bottom: 10px !important;
}

.home .et_pb_section_1 .et_pb_module_header a {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Description text */
.home .et_pb_section_1 .et_pb_blurb_description {
    font-family: "Open Sans", Arial, sans-serif !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #ffffff !important;
    line-height: 1.8em !important;
    text-align: center !important;
}

.home .et_pb_section_1 .et_pb_blurb_description p {
    margin-bottom: 0 !important;
}

/* Container alignment */
.home .et_pb_section_1 .et_pb_blurb_container {
    text-align: center !important;
}

/* ============================================
   Teaser Banner — Compact Homepage Strip
   Usage: [playerverse_pricing mode="teaser"]
   ============================================ */


/* Wrapper inserted after the Divi header by JS */
#pvp-teaser-wrap {
    padding: 84px 20px 0;
    position: relative;
    z-index: 999;
}

/* When WP admin bar is present, add its 32px to the header clearance */
.admin-bar #pvp-teaser-wrap {
    padding-top: 116px;
}

.pvp-teaser-banner {
    max-width: 1280px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(30, 27, 75, 0.8));
    border: 1px solid rgba(108, 99, 255, 0.4);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    animation: pvp-teaser-fadein 0.6s ease-out, pvp-teaser-pulse 3s infinite alternate;
    box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pvp-teaser-banner::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    animation: pvp-teaser-shine 4s infinite;
}

@keyframes pvp-teaser-pulse {
    0% { box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1); border-color: rgba(108, 99, 255, 0.3); }
    100% { box-shadow: 0 10px 40px rgba(108, 99, 255, 0.4); border-color: rgba(108, 99, 255, 0.7); }
}

@keyframes pvp-teaser-shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.pvp-teaser-inner {
    padding: 24px 36px;
}

.pvp-teaser-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* ─── Left: Eyebrow + Product ─── */
.pvp-teaser-left {
    flex: 1;
    min-width: 0;
}

.pvp-teaser-eyebrow {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #c4b5fd;
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.25);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.pvp-teaser-product {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pvp-teaser-product-name {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.2px;
}

.pvp-teaser-product-desc {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.4;
}

/* ─── Centre: Pricing ─── */
.pvp-teaser-centre {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.pvp-teaser-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.pvp-teaser-was {
    font-size: 16px;
    color: #6b7280;
    text-decoration: line-through;
    text-decoration-color: rgba(107, 114, 128, 0.6);
    font-weight: 500;
}

.pvp-teaser-now {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    line-height: 1;
}

.pvp-teaser-scarcity {
    font-size: 11px;
    font-weight: 600;
    color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    padding: 3px 12px;
    border-radius: 20px;
    letter-spacing: 0.3px;
    white-space: nowrap;
}

/* ─── Right: CTA ─── */
.pvp-teaser-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.pvp-teaser-cta {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #6c63ff, #7c3aed);
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 16px rgba(108, 99, 255, 0.3);
    white-space: nowrap;
    letter-spacing: 0.2px;
}

.pvp-teaser-cta:hover {
    background: linear-gradient(135deg, #7c73ff, #8b5cf6);
    box-shadow: 0 6px 24px rgba(108, 99, 255, 0.45);
    transform: translateY(-1px);
    color: #ffffff;
    text-decoration: none;
}

.pvp-teaser-cta:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(108, 99, 255, 0.3);
}

.pvp-teaser-reassurance {
    font-size: 11px;
    color: #6b7280;
    text-align: center;
    line-height: 1.3;
    max-width: 200px;
}

/* ─── Animation ─── */
@keyframes pvp-teaser-fadein {
    0%   { opacity: 0; transform: translateY(-12px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
    .pvp-teaser-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .pvp-teaser-left {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .pvp-teaser-product {
        align-items: center;
    }

    .pvp-teaser-inner {
        padding: 24px 20px;
    }

    .pvp-teaser-reassurance {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .pvp-teaser-now {
        font-size: 26px;
    }

    .pvp-teaser-product-name {
        font-size: 16px;
    }

    .pvp-teaser-cta {
        font-size: 13px;
        padding: 10px 24px;
    }
}
