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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 50%, #5b21b6 100%);
    position: relative;
    min-height: 100vh;
    color: #ffffff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, 
            transparent 0%, 
            transparent 35%, 
            rgba(30, 27, 75, 0.3) 40%, 
            rgba(30, 27, 75, 0.7) 45%, 
            #1e1b4b 50%, 
            #1e1b4b 100%);
    pointer-events: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-weight: bold;
    font-size: 52px;
    color: #ffffff;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
}
.coming-soon {
    animation: fadeInUp 1s ease-out;
}

.subtitle {
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 20px;
    font-weight: 500;
}

.main-title {
    font-family: 'Inter', sans-serif;
    font-size: 100px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1;
    letter-spacing: -5px;
}

.description {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 40px;
}

.newsletter-form {
    margin-top: 40px;
}

.email-label {
    display: block;
    font-size: 14px;
    color: #ffffff;
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group {
    display: flex;
    gap: 0;
    max-width: 400px;
}

.email-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #a78bfa;
    border-radius: 8px 0 0 8px;
    background: transparent;
    color: #ffffff;
    font-size: 16px;
    outline: none;
}

.email-input::placeholder {
    color: #9ca3af;
}

.signup-btn {
    padding: 12px 24px;
    background: #ffffff;
    color: #7c3aed;
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.signup-btn:hover {
    background: #f3f4f6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.phone-showcase {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    animation: slideInUp 1s ease-out 0.3s both;
}

.main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    gap: 250px;
}

.content-left {
    flex: 1;
    max-width: 500px;
}

.content-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phones-image {
    max-width: 100%;
    height: auto;
    max-height: 1000px;
    transform: scale(1.7);
}

.feature-text {
    text-align: center;
    font-size: 14px;
    opacity: 0.9;
}

.download-section {
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 40px;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn img {
    height: 100px;
    width: auto;
    display: block;
}

.download-btn:hover {
    transform: translateY(-3px);
}

.floating-elements {
    display: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@media (max-width: 768px) {
    .container {
        padding: 20px;
        padding-top: 30px;
        height: auto;
        min-height: 100vh;
    }
    
    .header {
        margin-bottom: 40px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav {
        display: none;
    }
    
    .logo-text {
        font-size: 42px;
    }
    
    .main-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .content-left {
        max-width: 100%;
    }
    
    .content-right {
        order: -1;
    }
    
    .main-title {
        font-size: 64px;
        line-height: 0.95;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .description {
        font-size: 16px;
        text-align: center;
    }
    
    .input-group {
        flex-direction: column;
        gap: 10px;
        max-width: 100%;
    }
    
    .email-input {
        border-radius: 8px;
        text-align: center;
    }
    
    .signup-btn {
        border-radius: 8px;
        width: 100%;
    }
    
    .phones-image {
        max-height: 300px;
        transform: scale(1.2);
    }
    
    .download-section {
        margin-top: 60px;
    }
    
    .download-buttons {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .download-btn img {
        height: 70px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 15px;
        padding-top: 20px;
    }
    
    .logo-text {
        font-size: 36px;
    }
    
    .main-title {
        font-size: 48px;
        line-height: 0.95;
    }
    
    .subtitle {
        font-size: 14px;
    }
    
    .description {
        font-size: 14px;
    }
    
    .phones-image {
        max-height: 250px;
        transform: scale(1.1);
    }
    
    .download-btn img {
        height: 60px;
    }
} 