* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Figtree", sans-serif !important;
    background: #ddddddff; /* Changed to white */
    min-height: 100vh;
    color: #333; /* Changed to dark text for better contrast */
    overflow-x: hidden;
}

.container {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background: #ffffff; /* Changed to white */
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); /* Added subtle shadow for depth */
    border-radius: 30px;
}


/* Hero Section */
.hero {
    padding: 25px 32px 10px;
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.logo-container {
    margin-bottom: 10px;
}

.logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: rgba(102, 126, 234, 0.1); /* Purple tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(102, 126, 234, 0.2); /* Purple border */
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.logo::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    animation: shine 2s ease-in-out infinite;
}

.brand-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2); /* Purple gradient */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.tagline {
    font-size: 1.125rem;
    color: #666; /* Darker text for better contrast */
    font-weight: 500;
    line-height: 1.5;
}

.stats-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    padding: 24px;
    background: rgba(102, 126, 234, 0.05); /* Light purple background */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(102, 126, 234, 0.1); /* Light purple border */
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea; /* Purple color */
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: #666; /* Darker text */
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(102, 126, 234, 0.3); /* Purple divider */
}

/* Content Wrapper */
        .content-wrapper {
            flex: 1;
            overflow-y: hidden;
            padding-bottom: 20px;
        }

        /* Social Section */
        .social-section {
            padding: 20px 24px 10px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 20px;
        }

        .section-header h2 {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: #333;
        }

        .section-header p {
            color: #666;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .social-grid {
            display: grid;
            gap: 10px;
            grid-template-columns: 1fr 1fr;
        }

        .social-grid .telegram {
            grid-column: span 2;
        }

        .social-button {
            display: flex;
            align-items: center;
            padding: 10px;
            background: rgba(102, 126, 234, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.1);
            position: relative;
            overflow: hidden;
        }

        .social-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .social-button:hover::before {
            left: 100%;
        }

        .social-button:hover {
            transform: translateY(-4px);
            background: rgba(102, 126, 234, 0.1);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
        }

        .social-button:active {
            transform: translateY(-2px) scale(0.98);
        }

        .social-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 16px;
            flex-shrink: 0;
            color: white;
            font-size: 24px;
        }

        .telegram .social-icon { background: linear-gradient(135deg, #0088cc, #006bb3); }
        .whatsapp .social-icon { background: linear-gradient(135deg, #25d366, #1ea952); }
        .instagram .social-icon { background: linear-gradient(135deg, #e4405f, #833ab4); }
        .twitter .social-icon { background: linear-gradient(135deg, #1da1f2, #0d8bd9); }
        .youtube .social-icon { background: linear-gradient(135deg, #ff0000, #cc0000); }

        .social-content {
            flex: 1;
            text-align: left;
        }

        .social-content h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 2px;
            color: #333;
        }

        .follower-count {
            font-size: 0.875rem;
            color: #667eea;
            font-weight: 500;
            display: block;
            margin-bottom: 4px;
        }

        .social-content p {
            font-size: 0.875rem;
            color: #666;
            line-height: 1.4;
        }

        .social-arrow {
            opacity: 0.7;
            transition: all 0.3s ease;
            color: #667eea;
        }

        .social-button:hover .social-arrow {
            opacity: 1;
            transform: translateX(4px);
        }

        /* App Section */
        .app-section {
            padding: 25px 24px;
        }

        .app-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }

        .app-button {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 24px 16px;
            background: rgba(102, 126, 234, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            text-decoration: none;
            color: #333;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.1);
            position: relative;
            overflow: hidden;
        }

        .app-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .app-button:hover::before {
            left: 100%;
        }

        .app-button:hover {
            transform: translateY(-4px);
            background: rgba(102, 126, 234, 0.1);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
        }

        .app-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            color: white;
            font-size: 28px;
        }

        /* .android .app-icon { background: linear-gradient(135deg, #3ddc84, #2db665); } */
        .android .app-icon { background: black; }
        /* .ios .app-icon { background: linear-gradient(135deg, #007aff, #0051d5); } */
        .ios .app-icon { background: #2196f3; }

        .app-content h3 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: #333;
        }

        .download-count {
            font-size: 0.75rem;
            color: #667eea;
            font-weight: 500;
            display: block;
            margin-bottom: 4px;
        }

        .app-content p {
            font-size: 0.75rem;
            color: #666;
            line-height: 1.4;
        }

        /* Website Section */
        .website-section {
            padding: 0 24px 0px;
        }

        .website-button {
            display: flex;
            align-items: center;
            padding: 24px;
            background: rgba(102, 126, 234, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            text-decoration: none;
            color: #333;
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.1);
            position: relative;
            overflow: hidden;
        }

        .website-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .website-button:hover::before {
            left: 100%;
        }

        .website-button:hover {
            transform: translateY(-4px);
            background: rgba(102, 126, 234, 0.1);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.1);
        }

        .website-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
            color: white;
            font-size: 28px;
        }

        .website-content {
            flex: 1;
            text-align: left;
        }

        .website-content h3 {
            font-size: 1.25rem;
            font-weight: 600;
            margin-bottom: 4px;
            color: #333;
        }

        .website-content p {
            font-size: 0.875rem;
            color: #666;
            line-height: 1.4;
        }

        .website-arrow {
            opacity: 0.7;
            transition: all 0.3s ease;
            color: #667eea;
        }

         /* Footer */
        .footer {
            padding: 25px 15px 20px;
            text-align: center;
            border-top: 1px solid rgba(102, 126, 234, 0.1);
            margin-top: 0px;
        }

        .footer-content p {
            color: #666;
            font-size: clamp(0.8rem, 3vw, 0.875rem);
            margin-bottom: 4px;
        }

        .footer-content p:last-child {
            margin-bottom: 0;
            font-weight: 500;
        }



/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

@keyframes countUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 480px) {
    .container {
        max-width: 100%;
    }
    
    .hero {
        padding: 10px 20px 0px;
    }
    
    .brand-name {
        font-size: 2.5rem;
    }
    
    .stats-container {
        gap: 24px;
        margin-top: 24px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .social-section,
    .app-section,
    .website-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .social-button,
    .website-button {
        padding: 5px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .app-grid {
        gap: 12px;
    }
    
    .app-button {
        padding: 20px 12px;
    }
}

@media (max-width: 360px) {
    .hero {
        padding: 10px 16px 0px;
    }
    
    .brand-name {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }
    
    .website-icon,
    .app-icon {
        width: 48px;
        height: 48px;
    }
}

/* Loading animations for dynamic content */
.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

