/*
Theme Name: MyCreativePlan Complete Theme
Description: Premium WordPress-theme voor Food & Fitness met dynamische featureblokken, dark mode, nieuwsbrief, en meer.
Author: Stefan Danssaert
Version: 1.0
*/

:root {
    --bg-color: #ffffff;
    --text-color: #222222;
    --h1-color: #333;
    --subtitle-color: #666;
    --button-color: #28c76f;
    --icon-color: #222;
    --footer-bg: #000;
}

html {
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    font-size: 16px; /* Base font size for mobile */
    -webkit-text-size-adjust: 100%; /* Prevent iOS text scaling */
    -ms-text-size-adjust: 100%;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* Mobile-first responsive base */
@media (max-width: 480px) {
    html {
        font-size: 14px; /* Smaller base font on very small screens */
    }
}

/* Extra horizontal scroll prevention - limited scope */
div.homepage-content-wrapper, 
div.feature-block {
    overflow-x: hidden;
}

/* Comprehensive mobile fixes */
@media (max-width: 900px) {
    html {
        overflow-x: hidden;
        overflow-y: auto;
        height: 100%;
    }
    
    body {
        overflow-x: hidden;
        overflow-y: auto;
        height: auto;
        min-height: 100vh;
        -webkit-overflow-scrolling: touch;
        font-size: 0.95rem; /* Slightly smaller font on tablets */
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.9rem; /* Mobile optimized font size */
    }
    
    /* Mobile typography improvements */
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.1rem; }
    
    /* Better button sizing for touch */
    .theme-button,
    .feature-block .btn {
        min-height: 44px; /* Apple's recommended touch target */
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 0.85rem;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.15rem; }
}

.site-content, main {
    margin: 0 auto;
    padding: 1.5rem 1.5rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Mobile main container */
@media (max-width: 768px) {
    .site-content, main {
        padding: 1rem 1.25rem; /* Better alignment with header on mobile */
    }
}

@media (max-width: 480px) {
    .site-content, main {
        padding: 0.75rem 1rem; /* Maintain decent alignment on very small screens */
    }
}

/* Force override for homepage main container to align with header - DISABLED for full width hero */
/*
main[style*="padding"] {
    padding: 1.5rem 1.5rem !important;
}

@media (max-width: 768px) {
    main[style*="padding"] {
        padding: 1rem 25px !important;
    }
}

@media (max-width: 480px) {
    main[style*="padding"] {
        padding: 0.75rem 1rem !important;
    }
}
*/

body {
    max-width: 100%;
    width: 100%;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.6; /* Better readability on mobile */
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: all 0.3s ease;
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
    position: static;
    min-height: 100vh;
    height: auto;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased; /* Better text rendering */
    -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile-friendly images */
@media (max-width: 768px) {
    /* (Removed) no global rounding of all images on mobile */
    
    /* Prevent images from being too small on mobile */
    .feature-block .icon img {
        min-width: 40px;
        min-height: 40px;
    }
}

/* Mobile-friendly forms and inputs */
@media (max-width: 768px) {
    input, textarea, select, button {
        font-size: 16px; /* Prevent zoom on iOS */
        -webkit-appearance: none; /* Remove iOS styling */
        appearance: none; /* Standard property */
        border-radius: 8px;
        padding: 12px 16px;
        border: 1px solid #ddd;
        box-sizing: border-box;
    }
    
    button, .theme-button, .feature-block .btn {
        cursor: pointer;
        -webkit-tap-highlight-color: rgba(0,0,0,0.1); /* Better touch feedback */
        user-select: none;
    }
}

/* Mobile performance and accessibility */
@media (max-width: 768px) {
    /* Improve scrolling performance */
    .homepage-content-wrapper {
        -webkit-overflow-scrolling: touch;
        will-change: scroll-position;
    }
    
    /* Better focus states for keyboard navigation */
    a:focus, button:focus, input:focus, textarea:focus, select:focus {
        outline: 2px solid #007cba;
        outline-offset: 2px;
    }
    
    /* Smooth animations only if user doesn't prefer reduced motion */
    @media (prefers-reduced-motion: no-preference) {
        .feature-block, .author-block {
            transition: transform 0.2s ease-out;
        }
    }
    
        /* High contrast support */
    @media (prefers-contrast: high) {
        .feature-block {
            border-width: 2px;
        }
        
        .theme-button, .feature-block .btn {
            border: 2px solid currentColor;
        }
    }
}

/* Mobile-friendly blog styling for index.php */
@media (max-width: 900px) {
    .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .blog-post-card {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .blog-post-card h2 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    .blog-post-meta {
        font-size: 0.875rem;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .category-icon {
        width: 24px;
        height: 24px;
    }
    
    .read-more-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-height: 44px; /* Touch target */
    }
    
    .pagination {
        margin: 30px 15px;
    }
    
    .pagination a, .pagination span {
        padding: 8px 12px;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.author-block {
    width: 94.5%;
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .author-block {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
    }
    
    .author-image {
        width: 150px !important;
        height: 150px !important;
        margin: 0 0 1rem 0 !important;
    }
}

.author-image {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 20px;
}

/* =================================================
   MOBILE FEATURE BLOCKS LAYOUT - ICOON LINKS NAAST TEKST
   ================================================= */

/* Mobile-only horizontal layout for feature blocks */
@media (max-width: 768px) {
    .feature-blocks {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .feature-block {
        display: grid !important;
        grid-template-columns: 60px 1fr !important;
        grid-template-rows: auto auto !important;
        grid-template-areas: 
            "icon title"
            "icon description" !important;
        align-items: start !important;
        text-align: left !important;
        padding: 1.5rem !important;
        gap: 0.8rem 1rem !important;
        min-height: auto !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Icoon styling - grid area icon */
    .feature-block .icon {
        grid-area: icon !important;
        width: 48px !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        text-align: center !important;
        align-self: start !important;
        justify-self: center !important;
    }
    
    .feature-block .icon img {
        width: 48px !important;
        height: 48px !important;
        object-fit: contain !important;
    }
    
    .feature-block i {
        grid-area: icon !important;
        width: 48px !important;
        height: 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 24px !important;
        margin: 0 !important;
        align-self: start !important;
        justify-self: center !important;
    }
    
    /* H3 styling - grid area title */
    .feature-block h3 {
        grid-area: title !important;
        margin: 0 !important;
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        text-align: left !important;
        align-self: end !important;
    }
    
    /* P styling - grid area description */
    .feature-block p {
        grid-area: description !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        text-align: left !important;
        opacity: 0.8 !important;
        align-self: start !important;
    }
    
    /* Zorg dat h3 en p als groep bij elkaar blijven */
    .feature-block h3 + p {
        margin-top: 0 !important;
    }
    
    /* LinkedIn block speciale styling voor mobiel */
    .feature-block[href*="linkedin"] {
        background: linear-gradient(135deg, #0077b5, #005885) !important;
    }
    
    .feature-block[href*="linkedin"] h3,
    .feature-block[href*="linkedin"] p {
        color: white !important;
    }
    
    .feature-block[href*="linkedin"] .icon,
    .feature-block[href*="linkedin"] i {
        color: white !important;
    }
}

/* Extra small screens - meer compacte versie */
@media (max-width: 480px) {
    .feature-blocks {
        padding: 0.5rem;
        gap: 0.8rem;
    }
    
    .feature-block {
        padding: 1.2rem !important;
        gap: 0.8rem !important;
    }
    
    .feature-block .icon,
    .feature-block i {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }
    
    .feature-block h3 {
        font-size: 1rem !important;
        margin-bottom: 0.3rem !important;
    }
    
    .feature-block p {
        font-size: 0.85rem !important;
    }
}

/* Author LinkedIn Button */
.author-linkedin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    margin-top: 1rem;
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 119, 181, 0.2);
    min-height: 44px; /* Touch target size */
}

@media (max-width: 768px) {
    .author-linkedin-btn {
        width: 100% !important;
        max-width: 280px !important;
        margin: 1rem auto 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        text-align: center !important;
        padding: 14px 20px !important;
        font-size: 15px !important;
    }
}

.author-linkedin-btn:hover {
    background: linear-gradient(135deg, #005885 0%, #0077b5 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 119, 181, 0.3);
    color: white;
    text-decoration: none;
}

.author-linkedin-btn svg {
    flex-shrink: 0;
}

/* Category */
.category-archive {
    max-width: 100%;
    margin: 0 auto;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
    padding-bottom: 2rem;
    overflow-x: hidden;
    box-sizing: border-box;
}

.filter-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-categories label {
    background: #f1f1f1;
    padding: 0.5rem 1rem;
    border-radius: 6px;
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
        box-sizing: border-box;
}

@media (max-width: 600px) {
    .filter-categories {
        flex-direction: column;
        gap: 0.2rem;
        align-items: stretch;
    }
    .filter-categories label {
        width: 100%;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
    }
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.post-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.post-card .meta {
    font-size: 0.85rem;
    color: #666;
}

/* Theme */
.theme-button {
    padding: 0.7rem 1.2rem;
    background: linear-gradient(90deg, #00c875 0%, #00fff0 100%);
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
    transition: background 0.3s ease;
}

.theme-button:hover {
    background: linear-gradient(90deg, #00fff0 0%, #00c875 100%);
}


/* Feature Blokken */
.homepage-featured-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem; /* Reduced from 2rem for closer spacing */
    margin-top: 2rem;
    max-width: 100%;
    margin: 0 auto;
    padding: 0.5rem; /* Reduced padding */
}

/* Mobile grid override */
@media (max-width: 900px) {
    .homepage-featured-categories {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
        gap: 1rem !important;
        padding: 0.5rem !important;
        margin: 0 !important;
    }
}

.feature-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin: 1rem auto;
    padding: 0 1rem;
}

.feature-block {
    flex: 1 1 calc(25% - 1.5rem); /* Flexible layout for multiple feature blocks */
    background: #fff;
    padding: 1rem; /* Reduced from 2rem */
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 280px; /* Slightly smaller to prevent overlap */
    max-width: 350px; /* Add max-width to control size */
    margin: 0.75rem; /* Consistent margin for spacing */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.feature-block:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Add arrow indicator directly after text */
.feature-block::after {
    content: '→';
    display: block;
    text-align: right;
    font-size: 1.5rem;
    opacity: 0.7;
    transition: transform 0.3s ease;
    color: #666;
    margin-top: 1rem; /* Small space after text */
    line-height: 1;
}

.feature-block:hover::after {
    transform: translateX(4px);
    opacity: 1;
}

/* Add shimmer effect like LinkedIn block */
.feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px;
}

.feature-block:hover::before {
    opacity: 1;
}

/* Ensure parent containers don't clip shadows on desktop only */
@media (min-width: 901px) {
    main, section {
        overflow: visible !important;
    }
    
    .homepage-featured-categories,
    .homepage-content-wrapper {
        overflow: visible !important;
    }
}

/* Mobile scroll fix */
@media (max-width: 900px) {
    html, body {
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
        height: auto;
        min-height: 100vh;
        position: static;
    }
    
    main {
        overflow: visible;
        height: auto;
        position: static;
    }
    
    section {
        overflow: visible;
        height: auto;
        position: static;
    }
    
    .homepage-featured-categories,
    .homepage-content-wrapper {
        overflow: visible;
        height: auto;
        position: static;
    }
}

.feature-block .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}



.feature-block i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--icon-color);
}

/* Feature block buttons removed - now fully clickable cards */

/* Typography for feature blocks as links */
.feature-block h3 {
    color: #333;
    margin-bottom: 0.75rem; /* Reduced margin */
    font-size: 1.25rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-block p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0; /* Remove margin so arrow flows directly after text */
    transition: color 0.3s ease;
}

.feature-block:hover h3 {
    color: #00c875;
}

.feature-block:hover p {
    color: #333;
}

/* LinkedIn specific styling - blue background with white text */
.feature-block[href*="linkedin"] {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
    color: white;
}

.feature-block[href*="linkedin"] h3 {
    color: white;
}

.feature-block[href*="linkedin"] p {
    color: white;
    opacity: 0.9;
}

.feature-block[href*="linkedin"]:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.feature-block[href*="linkedin"]:hover h3 {
    color: white;
}

.feature-block[href*="linkedin"]:hover p {
    color: white;
    opacity: 1;
}

.feature-block[href*="linkedin"]::after {
    color: white;
    opacity: 0.8;
}

.feature-block[href*="linkedin"]:hover::after {
    color: white;
    opacity: 1;
}

/* Comprehensive mobile optimization */
@media (max-width: 900px) {
  .homepage-featured-categories {
    flex-direction: column !important;
    gap: 1rem !important;
    align-items: stretch !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
  }
  
  .feature-block {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0.5rem 0 !important; /* Consistent with desktop */
    box-sizing: border-box !important;
    padding: 1.5rem !important;
    position: relative !important;
    overflow: visible !important;
    display: block !important;
    text-decoration: none !important;
    color: inherit !important;
  }
  

}

@media (max-width: 768px) {
  .feature-block {
    padding: 1.25rem !important;
    margin: 0 0 0.75rem 0 !important;
    border-radius: 16px !important;
    /* Improved touch interaction */
    transform: none !important;
  }
  
  .feature-block:hover {
    transform: none !important; /* Disable hover effects on mobile */
  }
  
  .feature-block h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
  }
  
  .feature-block p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
    margin-bottom: 1rem !important;
  }
}

@media (max-width: 480px) {
  .feature-block {
    padding: 1rem !important;
    margin: 0 0 0.5rem 0 !important;
  }
  
  .feature-block .icon img {
    height: 50px !important; /* Smaller icons on very small screens */
  }
}

/* Homepage Content Wrapper - Categories + LinkedIn */
.homepage-content-wrapper {
    display: flex;
    gap: 1.5rem; /* Increased gap to prevent overlap */
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem 0; /* Remove horizontal padding to align with header */
    box-sizing: border-box;
    overflow: visible;
}

/* Mobile homepage wrapper */
@media (max-width: 900px) {
    .homepage-content-wrapper {
        flex-direction: column;
        gap: 1rem;
        padding: 0.5rem 0; /* Remove horizontal padding on mobile too */
        align-items: center;
    }
}

@media (max-width: 768px) {
    .homepage-content-wrapper {
        padding: 0.25rem 0; /* Remove horizontal padding for small screens */
        gap: 0.75rem;
    }
}

.homepage-featured-categories {
    flex: 3;
    min-width: 300px;
    display: flex;
    align-items: stretch; /* Back to stretch for perfect alignment */
    overflow: visible; /* Ensure shadows aren't clipped */
    padding: 0; /* Remove padding that causes misalignment */
}





@media (max-width: 600px) {
    .site-content, main {
        padding: 1rem 0.5rem;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    .newsletter input[type="email"] {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    .newsletter button {
        width: 100%;
    }
    
    .homepage-content-wrapper {
        padding: 0.5rem;
        gap: 0.5rem;
        max-width: 100%;
        overflow: visible;
        box-sizing: border-box;
        margin: 0;
        position: static;
        height: auto;
    }
    
    .feature-block {
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    

}

/* === MCP: Mobile fixes and mission/vision block === */
@media (max-width: 768px) {
  .homepage-featured-categories { display:block !important; }
  .feature-block { display:flex !important; align-items:center; gap:12px; padding:14px 16px; }
  .feature-block .icon { flex:0 0 56px; margin:0; display:flex; align-items:center; justify-content:center; }
  .feature-block .icon img { height:56px; width:56px; object-fit:contain; }
  .feature-block h3 { margin:0 0 2px 0; }
  .feature-block p  { margin:0; line-height:1.35; }
  .image-footer { border-radius:0 !important; }
}
.mission-vision { display:block; margin:3rem 0; }
.mission-vision h3 { margin:0 0 .25rem 0; }
.mission-vision p  { margin:0; color: var(--subtitle-color); }
@media (max-width: 768px) { .mission-vision { display:block; margin:3rem 0; } }

.mission-vision .mission, .mission-vision .vision { margin-bottom: 1.25rem; }


/* === MCP Update: Categories row pills === */
.mcp-categories-row{
  padding: 12px 0 20px;
}
.mcp-categories-row .categories-inner{
  max-width: 1200px; margin: 0 auto; padding: 0 16px;
}
.mcp-categories-row .categories-list{
  display:flex; flex-wrap:wrap; gap:10px; list-style:none; margin:0; padding:0;
}
.mcp-categories-row .cat-pill{
  display:inline-block; padding:8px 14px; border-radius: 999px;
  background:#0e1117; color:#fff; text-decoration:none; font-weight:600;
  border:1px solid rgba(255,255,255,0.08);
}
.mcp-categories-row .cat-pill:hover{ transform: translateY(-1px); }


/* === MCP Update: Hero image beside H1 & P === */
.mcp-hero-wrap{ grid-template-columns: 1.2fr .8fr; gap: 1.25rem; }
.mcp-hero-image img{ width:100%; height:auto; display:block; border-radius: 16px; }
@media (max-width: 980px){
  .mcp-hero-wrap{ grid-template-columns: 1fr; }
  .mcp-hero-image{ order:2; }
}


/* === MCP Update 2: Plan Picker full-width under author === */
.plan-picker-section{
  width:100%;
  box-sizing:border-box;
  margin: 24px auto 12px;
  max-width: 1200px;
  padding: 0 16px;
}
.plan-picker-section .mcp-chip-gold{
  width:100%;
  display:block;
}
/* Ensure hero is not reserving a column for the chip anymore */
.mcp-hero-wrap{ grid-template-columns: 1.2fr .8fr; }
@media (max-width: 980px){
  .plan-picker-section{ margin: 16px auto 8px; }
}


/* === MCP Update 3: Plan Picker background inside inner card (.die-ui), overlay below UI === */
.mcp-chip-gold .die{
  position: relative;
  overflow: visible;
  background: transparent !important;
}
.mcp-chip-gold .die > svg.die-bg{
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: .45;
  mix-blend-mode: screen;
}
.mcp-chip-gold .die-ui{
  position: relative;
  z-index: 2;
  border-radius: 24px;
  overflow: hidden;
  background: #0e1117 url("https://mycreativeplan.com/wp-content/uploads/2025/10/ChatGPT-Image-14-okt-2025-07_33_04.png")
              65% center / cover no-repeat;
  padding: inherit;
}
.mcp-chip-gold .die-ui::after{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 70% 30%, rgba(0,255,240,.18), rgba(0,200,117,.08) 45%, rgba(0,200,117,0) 80%);
  pointer-events: none;
}
