.scs-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0f0f0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-align: center;
    font-family: sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

.scs-content {
    max-width: 600px;
    width: 100%;
}

.scs-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #333;
}

.scs-content p {
    font-size: 1.2rem;
    color: #555;
}

/* 📱 Responsive for mobile screens */
@media (max-width: 768px) {
    .scs-content h1 {
        font-size: 2rem;
    }

    .scs-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .scs-content h1 {
        font-size: 1.5rem;
    }

    .scs-content p {
        font-size: 0.9rem;
    }
}
