/* =========================================
   1. VARIABLES & DEFAULTS
   ========================================= */
:root {
    /* BACKGROUNDS */
    --mstp-bg: #121212;          /* Neutral Dark */
    --mstp-card-bg: #1E1E1E;     /* Neutral Dark Grey */
    --mstp-card-border: #333333; /* Low contrast border */

    /* TEXT */
    --mstp-text-main: #E5E7EB;   /* 90% White */
    --mstp-text-muted: #9CA3AF;  /* Mid-Grey */

    /* ACCENTS */
    --mstp-accent: #3b82f6;      /* Pro Blue */
    --mstp-accent-hover: #2563eb; 
    
    --mstp-success: #10b981;     /* Neon Emerald */
    --mstp-danger: #ef4444;      /* Neon Red */
    --mstp-gold: #fbbf24;        
    --mstp-bronze: #D97706;
    --mstp-silver: #94A3B8;
}

/* Global Reset for Plugin Area */
.mstp-wrapper { box-sizing: border-box; }
.mstp-wrapper * { box-sizing: border-box; }

/* =========================================
   2. MAIN CONTAINER
   ========================================= */
.mstp-wrapper {
    background-color: var(--mstp-bg);
    color: var(--mstp-text-main);
    padding: 40px;
    border-radius: 12px;
    width: 100%;
    max-width: 1200px;
    margin: 20px auto;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    border: 1px solid #222; 
    overflow-x: hidden;
}

/* Headings */
.mstp-heading {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--mstp-card-border); 
    margin-bottom: 30px !important;
    display: flex;
    align-items: center;
    line-height: 1.3;
}
.mstp-heading::before {
    content: ''; display: inline-block; width: 6px; height: 24px; 
    background: var(--mstp-accent); margin-right: 15px; border-radius: 2px;
    flex-shrink: 0;
}

.mstp-wrapper h1, .mstp-wrapper h2, .mstp-wrapper h3, .mstp-wrapper h4 { 
    margin-top: 0; color: #ffffff; line-height: 1.3;
}

.mstp-wrapper a { 
    color: var(--mstp-text-main); text-decoration: underline; 
    text-decoration-color: var(--mstp-accent); text-underline-offset: 4px;
    transition: 0.2s; 
}
.mstp-wrapper a:hover { color: var(--mstp-accent); }

/* =========================================
   3. CARDS & HEADER
   ========================================= */
.mstp-card {
    background: var(--mstp-card-bg);
    border: 1px solid var(--mstp-card-border);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5); 
    width: 100%;
}

.mstp-header {
    display: flex !important; align-items: center !important; gap: 25px;
    background: var(--mstp-card-bg); padding: 30px; 
    border-radius: 16px; border: 1px solid var(--mstp-card-border);
    margin-bottom: 30px; flex-wrap: wrap; position: relative; 
    overflow: visible !important; 
    z-index: 50; 
}
.mstp-header::after { content:''; position: absolute; top:0; left:0; width:100%; height:4px; background: var(--mstp-accent); border-radius: 16px 16px 0 0; }

.mstp-avatar-ring {
    width: 90px; height: 90px; border-radius: 50%; padding: 3px;
    background: var(--mstp-card-border); border: 2px solid var(--mstp-accent); flex-shrink: 0;
}
.mstp-avatar-ring img, .emoji-av { 
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover; 
    background: #000; display: flex; align-items: center; justify-content: center; font-size: 40px; margin: 0; 
}

.mstp-profile-info { flex: 1; min-width: 200px; word-wrap: break-word; }
.mstp-profile-info h1 { font-size: 2.2rem; margin-bottom: 5px; color: #fff; font-weight: 900; letter-spacing: -1px; }
.mstp-profile-meta { color: var(--mstp-text-muted); font-size: 1rem; }

.mstp-wallet { 
    display: inline-block; background: rgba(16, 185, 129, 0.1); color: #10b981; 
    padding: 6px 14px; border-radius: 4px; font-weight: 700; font-size: 0.9rem; margin-top: 10px; 
    border: 1px solid rgba(16, 185, 129, 0.3); letter-spacing: 0.5px;
}

/* =========================================
   4. BUTTONS & INPUTS
   ========================================= */
.mstp-btn {
    background: var(--mstp-accent); color: #ffffff !important; 
    padding: 14px 28px; border-radius: 8px; font-weight: 700; 
    text-decoration: none !important; border: none; cursor: pointer; 
    display: inline-block; text-align: center; width: auto; font-size: 1rem;
    transition: all 0.2s ease; text-transform: uppercase; letter-spacing: 1px;
}
.mstp-btn.registered { background: var(--mstp-success) !important; cursor: default; }
.mstp-btn:hover { background: var(--mstp-accent); filter: brightness(1.2); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.5); }

.mstp-btn-edit {
    background: transparent; color: #fff; border: 1px solid var(--mstp-card-border); 
    padding: 10px 20px; border-radius: 6px; cursor: pointer; transition: 0.2s; font-size: 0.9rem; font-weight: 600;
}
.mstp-btn-edit:hover { border-color: var(--mstp-accent); color: var(--mstp-accent); }

.mstp-inp, select.mstp-inp, textarea.mstp-inp {
    width: 100%; padding: 14px; background: #0a0a0a; border: 1px solid var(--mstp-card-border); 
    color: #fff; border-radius: 6px; margin-bottom: 15px; display: block; font-size: 16px; 
    transition: border-color 0.2s;
    box-sizing: border-box; 
}
select.mstp-inp option { background: #0a0a0a; color: #fff; }
.mstp-inp:focus { border-color: var(--mstp-accent); outline: none; }
.mstp-inp::placeholder { color: #525252; opacity: 1; }

label { color: var(--mstp-text-muted); font-size: 0.85rem; font-weight: 600; margin-bottom: 8px; display: block; text-transform: uppercase; letter-spacing: 0.5px; }

/* =========================================
   5. REFERRAL BOX & ALERTS
   ========================================= */
.mstp-share-box {
    display: flex !important; align-items: center !important; justify-content: space-between;
    gap: 20px; background: var(--mstp-card-bg); border: 1px solid var(--mstp-card-border);
    border-left: 4px solid var(--mstp-gold); border-radius: 12px; padding: 25px; margin-bottom: 30px;
    flex-wrap: wrap;
    position: relative; z-index: 1; 
}
.ref-icon { font-size: 24px; color: var(--mstp-gold); width: 45px; height: 45px; background: rgba(251, 191, 36, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ref-content { flex: 1; text-align: left; min-width: 250px; }
.ref-content h3 { margin: 0 0 5px 0; color: #fff; font-size: 1.1rem; }
.ref-content p { margin: 0; color: var(--mstp-text-muted); font-size: 0.95rem; }

.ref-actions-container { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }

.share-dock {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 10px 18px;
    display: inline-flex;
    gap: 12px;
    align-items: center;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.05);
}

.share-icon-btn { 
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: transparent; color: #ccc; 
    transition: all 0.2s ease;
    text-decoration: none !important;
    font-size: 20px;
    border: none;
    cursor: pointer;
} 
.btn-wa:hover { color: #25D366; background: rgba(37, 211, 102, 0.1); transform: scale(1.1); }
.btn-fb:hover { color: #1877F2; background: rgba(24, 119, 242, 0.1); transform: scale(1.1); }
.btn-x:hover  { color: #000; background: #fff; transform: scale(1.1); }
.btn-em:hover { color: #EA4335; background: rgba(234, 67, 53, 0.1); transform: scale(1.1); }
.btn-sms:hover { color: #10b981; background: rgba(16, 185, 129, 0.1); transform: scale(1.1); }
.btn-native:hover { color: var(--mstp-accent); background: rgba(59, 130, 246, 0.1); transform: scale(1.1); }

.copy-btn { font-size: 0.8rem; padding: 6px 12px; opacity: 0.7; border-color: #444; }
.copy-btn:hover { opacity: 1; border-color: #fff; }

.mstp-alert { padding: 20px; border-radius: 8px; margin-bottom: 30px; text-align: center; font-weight: bold; font-size: 1rem; border-left: 5px solid; }
.mstp-alert.success { background: rgba(16, 185, 129, 0.1); color: #fff; border-color: #10b981; } 
.mstp-alert.info { background: rgba(59, 130, 246, 0.1); color: #fff; border-color: #3b82f6; }
.mstp-alert.waiver-alert { background: rgba(245, 158, 11, 0.1); color: #fbbf24; border-color: #fbbf24; text-transform: uppercase; letter-spacing: 0.5px; }

.mstp-pulse-alert { animation: mstp-pulse 2s infinite; box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); }
@keyframes mstp-pulse { 0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7); } 70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(251, 191, 36, 0); } 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); } }

/* =========================================
   6. LOGIN GRID (PORTAL LANDING) - NEW
   ========================================= */
.mstp-login-grid {
    display: grid;
    grid-template-columns: 1fr; /* Mobile First: 1 Column */
    gap: 30px;
}
@media(min-width: 768px) {
    .mstp-login-grid {
        grid-template-columns: 1fr 1fr; /* Desktop: 2 Columns */
    }
}

/* =========================================
   7. TROPHIES
   ========================================= */
.trophy-header { display: flex !important; justify-content: space-between !important; align-items: center !important; border-bottom: 1px solid var(--mstp-card-border); padding-bottom: 15px; margin-bottom: 20px; flex-wrap: wrap; }
.trophy-nav { display: flex !important; gap: 10px; }
.t-nav-item { padding: 6px 14px; border-radius: 20px; cursor: pointer; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; color: var(--mstp-text-muted); background: transparent; border: 1px solid var(--mstp-card-border); transition: 0.2s; }
.t-nav-item.active, .t-nav-item:hover { background: var(--mstp-text-main); color: #000; border-color: #fff; }
.mstp-trophy-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; padding: 20px 10px; }
.hex-badge-wrapper { width: 110px; height: 120px; position: relative; perspective: 1000px; cursor: pointer; margin-bottom: 10px; }
.hex-badge-inner { position: relative; width: 100%; height: 100%; text-align: center; transition: transform 0.6s cubic-bezier(0.4, 2, 0.5, 1); transform-style: preserve-3d; }
.hex-badge-wrapper:hover .hex-badge-inner, .hex-badge-wrapper.active .hex-badge-inner { transform: rotateY(180deg); }
.hex-front, .hex-back { position: absolute; width: 100%; height: 100%; backface-visibility: hidden; display: flex; align-items: center; justify-content: center; filter: drop-shadow(0 5px 8px rgba(0,0,0,0.5)); }
.hex-shape { width: 100%; height: 100%; background: #222; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 1; position: relative; }
.hex-border { position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: #444; z-index: 0; clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%); transition: background 0.3s ease; }
.hex-front .hex-shape { background: #1a1a1a; }
.hex-content { margin-top: -15px; display: flex; align-items: center; justify-content: center; }
.hex-icon-font { font-size: 32px; color: #fff; }
.hex-icon-img { width: 40px; height: auto; object-fit: contain; }
.hex-title-front { font-size: 0.65rem; text-transform: uppercase; color: #E5E7EB; margin-top: 6px; max-width: 80%; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 700; }
.hex-bottom-stats { display: flex; align-items: center; gap: 5px; margin-top: 6px; width: 60%; }
.hex-pct-text { font-size: 0.65rem; color: #fff; font-weight: bold; font-family: monospace; }
.hex-mini-bar { flex: 1; height: 3px; background: #333; border-radius: 2px; }
.hex-mini-fill { height: 100%; background: #fff; }
.hex-back { transform: rotateY(180deg); }
.hex-back .hex-shape { background: #000; }
.hex-info { width: 85%; text-align: center; }
.hex-status-label { font-size: 0.55rem; color: #666; letter-spacing: 1px; text-transform: uppercase; display:block; font-weight: 700; }
.hex-big-stat { font-size: 1.1rem; font-weight: 900; color: #fff; margin: 4px 0; display:block; }
.hex-title-back { font-size: 0.65rem; color: var(--mstp-accent); text-transform: uppercase; line-height: 1.2; margin-top: 4px; font-weight: 700; }

/* Status Colors */
.hex-badge-wrapper.is-locked .hex-border { background: #333 !important; }
.hex-badge-wrapper.is-locked .hex-shape { background: #1a1a1a; opacity: 0.5; }
.hex-badge-wrapper.is-locked .hex-icon-font { color: #555; }
.hex-badge-wrapper.is-locked .hex-pct-text, .hex-badge-wrapper.is-locked .hex-mini-bar { display: none; }
.hex-badge-wrapper.is-wip .hex-border { background: #e5e5e5 !important; }
.hex-badge-wrapper.is-wip .hex-icon-font { color: #fff; }
.hex-badge-wrapper.is-wip .hex-pct-text { color: #3b82f6; } 
.hex-badge-wrapper.is-wip .hex-mini-fill { background: #3b82f6; } 
.hex-badge-wrapper.is-unlocked.rarity-bronze .hex-border { background: #D97706; }
.hex-badge-wrapper.is-unlocked.rarity-silver .hex-border { background: #94A3B8; }
.hex-badge-wrapper.is-unlocked.rarity-gold .hex-border { background: #F59E0B; box-shadow: 0 0 15px rgba(245, 158, 11, 0.3); }
.hex-badge-wrapper.is-unlocked.rarity-neon .hex-border { background: var(--mstp-accent); box-shadow: 0 0 15px var(--mstp-accent); }

/* =========================================
   8. PROGRAM TICKETS (RESPONSIVE GRID)
   ========================================= */
.mstp-prog-list { display: flex; flex-direction: column; gap: 20px; }

/* Default: Mobile / Stacked */
.mstp-prog-ticket { 
    display: flex; 
    flex-direction: column; 
    border: 1px solid var(--mstp-card-border); 
    border-radius: 12px; 
    background: var(--mstp-card-bg); 
    overflow: hidden; 
    transition: transform 0.2s, box-shadow 0.2s;
    margin-bottom: 25px;
}
.mstp-prog-ticket:hover { 
    transform: translateY(-2px); 
    border-color: var(--mstp-accent); 
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
.mstp-prog-ticket.is-enrolled { border-left: 6px solid var(--mstp-success); }

/* Image Container */
.mstp-img-wrapper { 
    width: 100%; 
    height: 180px; /* Mobile Banner Height */
    background: #1a1a1a; 
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}
.mstp-img-wrapper img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center; 
    display: block;
}

/* Content */
.mstp-prog-info { padding: 20px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.mstp-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.mstp-tag { background: #262626; color: #fff; padding: 4px 10px; border-radius: 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.mstp-prog-title { font-size: 1.3rem; color: #fff; margin: 0 0 8px 0; font-weight: 700; }
.mstp-prog-meta { display: flex; flex-direction: column; gap: 5px; color: var(--mstp-text-muted); font-size: 0.95rem; }
.mstp-prog-action { padding: 20px; background: rgba(255,255,255,0.03); display: flex; align-items: center; justify-content: center; border-top: 1px solid var(--mstp-card-border); }

/* Accordion Styles */
.mstp-desc-toggle {
    color: var(--mstp-accent);
    cursor: pointer;
    font-size: 0.9rem;
    margin-top: 10px;
    display: inline-block;
    font-weight: 600;
    text-decoration: underline;
}
.mstp-desc-content {
    display: none; 
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--mstp-card-border);
    color: var(--mstp-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.mstp-desc-content p { margin-bottom: 10px; }

/* DESKTOP GRID LAYOUT (Min Width 768px) */
@media(min-width: 768px) {
    .mstp-prog-ticket {
        display: grid;
        grid-template-columns: 280px 1fr 200px; /* Rigid Columns: Image | Info | Action */
        align-items: stretch;
    }
    
    .mstp-img-wrapper {
        width: 100%; /* Fills the 280px grid column */
        height: 100%; /* Full height of card */
        min-height: 200px; 
    }
    
    .mstp-prog-action {
        border-top: none;
        border-left: 1px solid var(--mstp-card-border);
        flex-direction: column;
    }
}

/* =========================================
   9. REGISTRATION GRID (RESPONSIVE)
   ========================================= */
.mstp-reg-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); 
    gap: 25px; 
    margin-bottom: 30px; 
}

.mstp-reg-card { 
    display: flex; 
    flex-direction: column; 
    border: 1px solid var(--mstp-card-border); 
    border-radius: 12px; 
    overflow: hidden; 
    background: var(--mstp-card-bg); 
    position: relative; 
    cursor: pointer; 
    transition: all 0.2s; 
    height: 100%; 
}

.mstp-reg-card:hover { border-color: var(--mstp-accent); transform: translateY(-3px); }
.mstp-reg-card.active { border: 2px solid var(--mstp-accent); transform: scale(1.02); box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 5; }

.mstp-reg-img { 
    width: 100%; 
    height: 160px; 
    background: #1a1a1a; 
    position: relative;
    overflow: hidden;
}
.mstp-reg-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    object-position: center;
}

.select-badge {
    position: absolute; top: 15px; right: 15px;
    background: var(--mstp-accent); color: #fff;
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; opacity: 0; transform: scale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 20; box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
.mstp-reg-card.active .select-badge { opacity: 1; transform: scale(1); }
.mstp-reg-card input { position: absolute; opacity: 0; }
.reg-card-details { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.reg-card-details h3 { margin: 0 0 10px 0; font-size: 1.15rem; color: #fff; line-height: 1.3; }
.reg-meta-row { display: flex; justify-content: space-between; margin-bottom: 12px; font-size: 0.9rem; color: var(--mstp-text-muted); font-weight: 600; }
.reg-price { color: var(--mstp-success); }
.mstp-mini-tag { display: inline-block; font-size: 0.7rem; text-transform: uppercase; background: rgba(255,255,255,0.1); padding: 2px 6px; border-radius: 4px; color: #ccc; margin-right: 4px; margin-bottom: 4px; }
.mstp-reg-card.general-card { justify-content: center; align-items: center; border: 2px dashed var(--mstp-card-border); background: transparent; }
.mstp-reg-card.general-card:hover { border-color: var(--mstp-text-main); }

/* =========================================
   10. TABS & MODALS
   ========================================= */
.mstp-tabs { display: flex; gap: 5px; overflow-x: auto; padding-bottom: 0; margin-bottom: 30px; border-bottom: 1px solid var(--mstp-card-border); }
.mstp-tab { padding: 12px 24px; background: transparent; border: none; border-bottom: 2px solid transparent; color: var(--mstp-text-muted); cursor: pointer; white-space: nowrap; transition: 0.2s; font-size: 1rem; font-weight: 600; }
.mstp-tab.active { color: #fff; border-bottom-color: var(--mstp-accent); }
.mstp-tab:hover { color: #fff; }
.mstp-tab-content { display: none !important; } 
.mstp-tab-content.active { display: block !important; animation: fadeIn 0.3s ease; }
.mstp-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.mstp-stat-card { background: var(--mstp-bg); border: 1px solid var(--mstp-card-border); border-radius: 12px; padding: 25px; text-align: center; }
.mstp-stat-title { color: var(--mstp-text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 8px; font-weight: 700; }
.mstp-stat-val { font-size: 2.2rem; font-weight: 800; color: #fff; }
.mstp-chart-wrap { height: 150px; width: 100%; margin-top: 15px; }
.mstp-upsell-card { background: var(--mstp-card-bg); border: 1px solid var(--mstp-accent); border-radius: 12px; padding: 40px; text-align: center; margin-bottom: 30px; }
.mstp-modal { display: none; position: fixed; top:0; left:0; width: 100%; height: 100%; background: rgba(0,0,0,0.9); z-index: 9999; align-items: center; justify-content: center; }
.mstp-modal-box { background: var(--mstp-card-bg); padding: 40px; width: 90%; max-width: 500px; border-radius: 16px; border: 1px solid var(--mstp-card-border); color: var(--mstp-text-main); box-shadow: 0 20px 50px rgba(0,0,0,0.5); overflow-y: auto; max-height: 90vh; }

/* =========================================
   11. TESTIMONIALS
   ========================================= */
.review-grid { display: grid !important; gap: 20px !important; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.review-slider { display: flex !important; gap: 20px !important; overflow-x: auto !important; scroll-snap-type: x mandatory; padding-bottom: 20px; -webkit-overflow-scrolling: touch; }
.review-slider .mstp-review-card { flex: 0 0 350px; scroll-snap-align: start; }
.mstp-review-card { background: var(--mstp-card-bg); border: none; border-radius: 12px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); position: relative; overflow: hidden; }
.rev-header { display: flex; justify-content: space-between; margin-bottom: 15px; }
.rev-stars { color: var(--mstp-gold); letter-spacing: 2px; font-size: 1rem; }
.rev-body { font-style: italic; color: #e5e5e5; font-size: 1.05rem; line-height: 1.6; margin-bottom: 25px; }
.rev-meta { border-top: 1px solid var(--mstp-card-border); padding-top: 15px; font-size: 0.9em; color: var(--mstp-text-muted); }
.rev-role { color: var(--mstp-accent); font-weight: 700; display: block; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; font-size: 0.8rem; }

/* =========================================
   12. MARKETING GRID
   ========================================= */
.mstp-marketing-section { margin-bottom: 50px; }
.mstp-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; }
.mstp-feature-card { background: var(--mstp-card-bg); border: 1px solid var(--mstp-card-border); border-radius: 12px; padding: 30px; display: flex; align-items: flex-start; gap: 20px; transition: transform 0.2s, border-color 0.2s; }
.mstp-feature-card:hover { transform: translateY(-3px); border-color: var(--mstp-text-muted); }
.feat-icon { font-size: 2rem; flex-shrink: 0; width: 60px; height: 60px; background: #0a0a0a; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--mstp-card-border); }
.feat-content { font-size: 1rem; line-height: 1.6; color: var(--mstp-text-muted); }
.feat-content strong { color: #fff; display: block; margin-bottom: 8px; font-size: 1.1rem; font-weight: 700; }

.mstp-sib-link { transition: background-color 0.2s ease, padding-left 0.2s ease; }
.mstp-sib-link:hover { background-color: var(--mstp-accent) !important; color: #fff !important; padding-left: 20px !important; }

/* Mobile */
@media(max-width:768px) {
    .mstp-wrapper { padding: 20px; }
    .mstp-header { flex-direction: column !important; text-align: center; }
    .mstp-share-box { flex-direction: column !important; text-align: center; }
    .mstp-prog-action { width: 100%; padding: 20px; flex-direction: row; justify-content: space-between; border-left: none; border-top: 1px solid var(--mstp-card-border); }
    .mstp-reg-grid { grid-template-columns: 1fr; }
    .mstp-features-grid { grid-template-columns: 1fr; }
    .ref-actions-container { align-items: center; width: 100%; }
    .share-dock { width: 100%; justify-content: space-around; }
}

@keyframes fadeIn { from{opacity:0;transform:translateY(5px)} to{opacity:1;transform:translateY(0)} }