/*
 * SmartClass4Kids Central Brand Foundation
 * Purges Astra theme artifacts and enforces the "Immersive World" aesthetic
 */

/* 1. ABSOLUTE BLUE PURGE (Theme Nuke) */
html,
body,
#page, 
#primary,
#content,
.site-content,
#main,
.ast-container,
.hfeed,
.site,
article,
.ast-article-inner,
.ast-article-single,
.ast-separate-container,
.entry-content,
.post-content {
    background-color: #e5e4fa !important;
    background: #e5e4fa !important;
    background-image: radial-gradient(rgba(79, 60, 134, 0.1) 1px, transparent 0) !important;
    background-size: 24px 24px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-height: 100vh !important;
    border: none !important;
    box-shadow: none !important;
}

/* 2. IMMERSIVE WORLD TEXTURES */
.sc4k-modern-background-wrapper {
    background-image: radial-gradient(rgba(79, 60, 134, 0.1) 1px, transparent 0) !important;
    /* Subtle dot grid */
    background-size: 24px 24px !important;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Radial Center Glow */
.sc4k-modern-background-wrapper::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(241, 99, 52, 0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

/* 3. AESTHETIC REFINEMENTS */
.text-navy {
    color: #1E293B !important;
}

.text-orange {
    color: #F16334 !important;
}

.font-outfit {
    font-family: 'Outfit', sans-serif !important;
}

/* Primary Brand Button Style */
.sc4k-btn-primary {
    background-color: #76347d !important;
    color: #fbb7fe !important;
    border: none !important;
    padding: 14px 40px !important;
    border-radius: 999px !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    cursor: pointer !important;
    box-shadow: 0 10px 20px rgba(118, 52, 125, 0.25) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    gap: 8px !important;
}

.sc4k-btn-primary:hover {
    background-color: #612a67 !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 15px 30px rgba(118, 52, 125, 0.4) !important;
}

.sc4k-btn-primary:active {
    transform: translateY(-1px) !important;
}