/**
 * SocialBoost - The Celestial Architect
 * Base Styles & Custom Components
 */

:root {
    --surface: #111318;
    --on-surface: #e2e2e9;
    --primary: #c3f5ff;
    --secondary: #deb7ff;
    --primary-glow: rgba(0, 218, 243, 0.3);
}

body {
    background-color: var(--surface);
    color: var(--on-surface);
    font-family: 'Inter', sans-serif;
}

/* Material Symbols Default Config */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
}

/* Celestial Components */
.nebula-glow {
    background: radial-gradient(circle at 50% 50%, rgba(222, 183, 255, 0.1) 0%, transparent 70%);
}

.nebula-blur {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.glass-card, .glass-panel {
    background: rgba(30, 31, 37, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.glowing-core {
    background: var(--primary);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
    transition: all 0.3s ease;
}

.glowing-core:hover {
    background: var(--secondary);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
    transform: translateY(-1px);
}

.payment-grid-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.payment-grid-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.1);
}

.payment-grid-item.active {
    background: rgba(124, 58, 237, 0.08);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(124, 58, 237, 0.15);
}

/* Scrollbar styling for a premium feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--surface);
}
::-webkit-scrollbar-thumb {
    background: #33353a;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #44464c;
}

/* Vibrant Service Cards & Glass Elements */
.premium-card {
    background: #1e1f26; /* Anthracite/Lighter dark for better separation */
    border: 1px solid rgba(255, 255, 255, 0.1); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.5);
    min-height: 280px; /* Even tighter for square look */
}

.premium-card:hover {
    background: #121019;
    border-color: var(--card-glow, rgba(124, 58, 237, 0.4));
    transform: translateY(-5px); /* Less dramatic jump */
    box-shadow: 0 15px 35px -5px var(--card-shadow, rgba(0, 0, 0, 0.4)); /* Softer hover shadow */
}

.service-icon-wrapper {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05); /* Slightly brighter */
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.02);
}

.premium-card:hover .service-icon-wrapper {
    background: var(--service-color-soft);
    border-color: var(--service-color-glow);
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 0 20px var(--service-color-glow);
}

.service-glow {
    position: absolute;
    inset: -15px;
    background: var(--service-color-primary);
    filter: blur(35px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    border-radius: 50%;
}

.premium-card:hover .service-glow {
    opacity: 0.15; /* Even softer, more ambient glow */
}

.buy-button-premium {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);
}

.buy-button-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--service-color-primary);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
    opacity: 0.8;
}

.buy-button-premium:hover::before {
    width: 300%;
    height: 300%;
}

.buy-button-premium:hover {
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 30px var(--service-color-glow);
    transform: scale(1.1);
}

.mesh-bg {
    background: #141621; /* Slightly more colorful 'Midnight Slate' */
    position: relative;
    overflow: hidden;
}

.mesh-bg::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(131, 56, 236, 0.15) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(100px);
}

.mesh-bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(58, 134, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    filter: blur(100px);
}

/* Animations */
@keyframes nebulaPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; transform: scale(1.02); }
}

.animate-nebula {
    animation: nebulaPulse 4s infinite ease-in-out;
}
[ x - c l o a k ]   {   d i s p l a y :   n o n e   ! i m p o r t a n t ;   }  
 