/* Reset & Base Styles */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
}

/* Main Wrapper with Modern Gradient */
.scs-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    text-align: center;
    padding: 20px;
    box-sizing: border-box;
}

/* Card Container */
.scs-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
    /* Fade-in Animation */
    animation: fadeIn 0.8s ease-out forwards;
    opacity: 0;
}

/* Logo Styling */
.scs-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
    display: inline-block;
}

/* Typography */
.scs-content h1 {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
}

.scs-content p {
    font-size: 1.125rem;
    color: #5d6778;
    line-height: 1.6;
    margin: 0;
}

/* Social Icons Container */
.scs-social-icons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Individual Icon Circles */
.scs-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f2f5;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scs-icon span {
    font-size: 20px;
    line-height: 20px;
}

/* Icon Hover Effects */
.scs-icon:hover {
    transform: translateY(-3px);
    color: #fff;
}

.scs-icon.facebook:hover { background-color: #1877F2; }
.scs-icon.twitter:hover { background-color: #000000; }
.scs-icon.instagram:hover { background-color: #E1306C; }

/* Animation Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .scs-content {
        padding: 30px 20px;
    }

    .scs-content h1 {
        font-size: 2rem;
    }

    .scs-content p {
        font-size: 1rem;
    }
    
    .scs-logo {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .scs-content h1 {
        font-size: 1.75rem;
    }
}