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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
}

    .hero h1 {
        font-size: 3em;
        margin-bottom: 10px;
    }

    .hero .tagline {
        font-size: 1.3em;
        opacity: 0.9;
    }

.badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9em;
    margin-top: 15px;
}

.section {
    padding: 40px 20px;
}

    .section h2 {
        color: #6366f1;
        margin-bottom: 20px;
        font-size: 1.8em;
    }

    .section h3 {
        color: #374151;
        margin: 25px 0 15px;
    }

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.feature {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #6366f1;
}

    .feature h4 {
        color: #6366f1;
        margin-bottom: 8px;
    }

.coming-soon {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

    .coming-soon h4 {
        color: #d97706;
    }

.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75em;
    font-weight: 600;
}

.status-live {
    background: #d1fae5;
    color: #065f46;
}

.status-soon {
    background: #fef3c7;
    color: #92400e;
}

.app-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #111;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
}

    .app-btn:hover {
        background: #333;
    }

.contact {
    background: #6366f1;
    color: white;
    text-align: center;
}

    .contact a {
        color: white;
    }

ul {
    margin-left: 20px;
}

li {
    margin: 8px 0;
}

.info-box {
    margin-top: 15px;
    padding: 15px;
    background: #eff6ff;
    border-radius: 8px;
    border: 1px solid #bfdbfe;
}

.warning-box {
    background: #fffbeb;
    border-color: #fcd34d;
}
