* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Elements */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(40px);
    animation: float 8s ease-in-out infinite;
}

.blob-1 {
    width: 300px;
    height: 300px;
    background: #fff;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: 50px;
    right: 100px;
    animation-delay: 2s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: #fff;
    bottom: 200px;
    left: 50px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(30px) translateX(20px);
    }
}

.container {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
    z-index: 1;
    position: relative;
}

.content {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 20px 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.8s ease-out;
    max-width: 100%;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Section */
.logo-section {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.logo-container {
    width: 60px;
    height: 60px;
    animation: float 3s ease-in-out infinite;
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(102, 126, 234, 0.3));
}

/* Title Styles */
.main-title {
    font-size: 1.6rem;
    color: #333;
    text-align: center;
    margin-bottom: 3px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.title-underline {
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    margin: 0 auto 6px;
    border-radius: 2px;
}

/* Status Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f0f4ff;
    color: #667eea;
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.6rem;
    margin: 0 auto 8px;
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

/* Subtitle */
.subtitle {
    font-size: 0.8rem;
    color: #666;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 8px;
    margin-bottom: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    background: linear-gradient(135deg, #f5f7ff, #f0f4ff);
    padding: 10px 8px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-icon {
    font-size: 1.4rem;
    display: block;
    margin-bottom: 5px;
}

.feature-item h3 {
    font-size: 0.7rem;
    color: #333;
    margin-bottom: 2px;
    font-weight: 600;
}

.feature-item p {
    font-size: 0.55rem;
    color: #999;
    margin: 0;
}

/* Progress Section */
.progress-section {
    margin: 20px 0;
}

.progress-text {
    text-align: center;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.6rem;
}

.loader {
    width: 100%;
    max-width: 180px;
    height: 4px;
    background: #e8e8e8;
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.loader-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
    border-radius: 10px;
    width: 30%;
    animation: loading 2s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
}

@keyframes loading {
    0% {
        width: 30%;
        margin-left: 0;
    }
    50% {
        width: 70%;
        margin-left: 0;
    }
    100% {
        width: 30%;
        margin-left: 70%;
    }
}

/* Social Container */
.social-container {
    margin-top: 12px;
    padding-top: 10px;
    border-top: 2px solid #f0f0f0;
}

.social-title {
    font-size: 1.1rem;
    color: #333;
    text-align: center;
    margin-bottom: 2px;
    font-weight: 700;
}

.social-subtitle {
    text-align: center;
    color: #999;
    margin-bottom: 12px;
    font-size: 0.7rem;
}

/* Social Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
    gap: 8px;
    margin-bottom: 12px;
}

.social-card {
    position: relative;
    padding: 12px 10px;
    border-radius: 10px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 130px;
    cursor: pointer;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.social-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.social-card:hover .social-icon-box {
    transform: scale(1.2) rotate(10deg);
}

.social-card:hover .hover-text {
    opacity: 1;
    transform: translateY(0);
}

/* Social Icon Box */
.social-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 7px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.social-card h3 {
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.2px;
}

.social-card .members {
    font-size: 0.6rem;
    opacity: 0.95;
    margin-bottom: 3px;
    font-weight: 500;
}

.hover-text {
    font-size: 0.7rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Social Card Colors */
.linkedin-card {
    background: linear-gradient(135deg, #0077b5, #0a66c2);
}

.whatsapp-card {
    background: linear-gradient(135deg, #25d366, #1eaa3a);
}

.youtube-card {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.telegram-card {
    background: linear-gradient(135deg, #0088cc, #0066a1);
}

.facebook-card {
    background: linear-gradient(135deg, #1877f2, #0a51c3);
}

.instagram-card {
    background: linear-gradient(135deg, #e4405f, #c13584, #5b51d8);
}

.twitter-card {
    background: linear-gradient(135deg, #1da1f2, #1a8cd8);
}

/* Website CTA */
.website-cta {
    text-align: center;
    padding: 10px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border-radius: 10px;
    margin-bottom: 8px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.website-cta p {
    font-size: 0.75rem;
    color: #333;
    margin: 0;
}

.website-link {
    color: #667eea;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 2px solid #667eea;
}

.website-link:hover {
    color: #764ba2;
    border-bottom-color: #764ba2;
}

/* Footer */
.footer {
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
}

.footer p {
    font-size: 0.65rem;
    color: #999;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content {
        padding: 40px 25px;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
    }

    .social-card {
        min-height: 200px;
        padding: 20px 15px;
    }

    .social-icon-box {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .main-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .logo-container {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .social-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 12px;
    }

    .social-card {
        min-height: 180px;
        padding: 15px 10px;
    }

    .social-card h3 {
        font-size: 1rem;
    }

    .social-card .members {
        font-size: 0.8rem;
    }

    .social-icon-box {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .social-title {
        font-size: 1.4rem;
    }

    .social-subtitle {
        font-size: 0.85rem;
    }

    .website-cta p {
        font-size: 0.9rem;
    }
        padding-top: 2
    .social-text {
        font-size: 0.8rem;
    }

    .social-text small {
        font-size: 0.7d transparent;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    font-weight: bold;
}

.social-text {
    text-align: center;
    line-height: 1.3;
}

.social-text small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.social-link.linkedin {
    background: linear-gradient(135deg, #0077b5, #0a66c2);
}

.social-link.whatsapp {
    background: linear-gradient(135deg, #25d366, #1eaa3a);
}

.social-link.youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.social-link.telegram {
    background: linear-gradient(135deg, #0088cc, #0066a1);
}

.social-link.facebook {
    background: linear-gradient(135deg, #1877f2, #0a51c3);
}

.social-link.instagram {
    background: linear-gradient(135deg, #e4405f, #c13584);
}

.social-link.twitter {
    background: linear-gradient(135deg, #1da1f2, #1a8cd8);
}

.website-text {
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.website-text strong {
    color: #667eea;
}

.footer-text {
    font-size: 0.85rem;
    color: #999;
    margin-top: 15
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .features {
        gap: 15px;
    }

    .feature-icon {
        font-size: 2rem;
    }
}

@media (max-width: 400px) {
    .content {
        padding: 30px 15px;
    }

    h1 {
        font-size: 1.8rem;
    }

    .icon {
        width: 60px;
        height: 60px;
    }
}
