:root {
    --primary-color: #6044ea;
    --accent-color: #f54e25;
    --background-color: #f8f9fa;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
    --gradient-start: #6044ea;
    --gradient-end: #8772ff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(96, 68, 234, 0.05) 0%, rgba(245, 78, 37, 0.03) 50%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
    animation: rotate 30s infinite linear;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
    z-index: 1;
}

.logo-container {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.logo {
    max-width: 400px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(96, 68, 234, 0.2));
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateY(-5px);
    filter: drop-shadow(0 15px 20px rgba(96, 68, 234, 0.3));
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 800px;
}

h1 {
    font-size: 3.2rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), #8772ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(96, 68, 234, 0.1);
}

.tagline {
    font-size: 1.4rem;
    color: var(--light-text);
    max-width: 600px;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.coming-soon {
    display: inline-block;
    background: linear-gradient(to right, var(--accent-color), #ff7851);
    color: var(--white);
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0.5rem 0 1.5rem;
    animation: pulse 2s infinite;
    box-shadow: 0 5px 15px rgba(245, 78, 37, 0.3);
}

.features {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    width: 100%;
    overflow-x: visible;
    padding-bottom: 1rem;
}

.feature {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: none;
    flex: 1;
    min-width: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    color: var(--text-color);
}

.feature p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

footer {
    text-align: center;
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 2rem;
    width: 100%;
    position: relative;
    z-index: 1;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(96, 68, 234, 0.2);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(245, 78, 37, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 25px rgba(245, 78, 37, 0.4);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 5px 15px rgba(245, 78, 37, 0.3);
    }
}

/* Responsive styles */
@media (max-width: 900px) {
    .features {
        gap: 1rem;
    }
    
    .feature {
        padding: 1.2rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.4rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .features {
        flex-direction: row;
        align-items: stretch;
    }
    
    .feature {
        font-size: 0.9rem;
    }
    
    .feature i {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .logo {
        max-width: 280px;
    }
    
    .coming-soon {
        padding: 0.6rem 1.8rem;
    }
    
    .feature {
        min-width: 0;
        padding: 0.8rem;
        gap: 0.5rem;
    }
    
    .feature i {
        font-size: 1.6rem;
    }
    
    .feature h3 {
        font-size: 0.9rem;
    }
    
    .feature p {
        font-size: 0.75rem;
    }
} 