:root {
    --cd-primary: #E80088;
    --cd-hover-bg: #fff0f5;
    --bg-light: #f8f9fa;
}

body {
    background-color: var(--bg-light);
    color: #333;
    font-family:"Sour Gummy", sans-serif; 
}

.cd-icon {
    width: 40px;
    height: 40px;
    fill: currentColor; 
    color: #444;
    transition: all 0.2s ease;
}

.icon-card {
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    border: 1px solid #e0e0e0 !important;
    border-radius: 12px;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--cd-primary) !important;
    background-color: var(--cd-hover-bg);
}

.icon-card:hover .cd-icon {
    transform: scale(1.1);
    color: var(--cd-primary);
}

.icon-name {
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 500;
}

header {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.mask-test-section {
    background: #ffffff;
    border: 1px solid #f1d7e3;
}


.mask-test-icon {
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #444;
}
