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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: #333;
    background-color: white;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 550px;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0;
    font-weight: 700;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    color: #555;
}

a {
    text-decoration: none;
    color: #0066cc;
}

/* Logo */
.logo img {
    width: 120px;
    height: auto;
    margin-bottom: 0.5rem;
}

/* Description */
.description {
    max-width: 500px;
    margin: 1rem auto 1.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    font-size: 0.95rem;
    font-weight: 500;
    background-color: #f8f9fa;
    padding: 0.75rem 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* App Store Button */
.app-store {
    margin: 0.5rem 0 1.5rem;
}

.app-store img {
    height: 40px;
}

/* Legal Links */
.legal-links {
    font-size: 0.8rem;
    color: #999;
}

.legal-links a {
    color: #999;
}

.legal-links a:hover {
    color: #666;
}

/* Media Queries */
@media (max-width: 600px) {
    .features {
        flex-direction: column;
        gap: 0.75rem;
    }
} 