:root {
    --primary-color: #ffd6e0; /* Soft pink */
    --secondary-color: #ffefcf; /* Soft yellow */
    --accent-color: #c5e1f0; /* Soft blue */
    --text-color: #5a5a5a;
    --background-color: #fff8fa;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content {
    max-width: 800px;
    text-align: center;
    animation: fadeIn 1s ease-in;
}

.logo-container {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.logo {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 1;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    top: -20px;
    left: -30px;
    animation: float 6s ease-in-out infinite;
}

.bubble-2 {
    width: 70px;
    height: 70px;
    background-color: var(--secondary-color);
    top: 10px;
    right: -20px;
    animation: float 7s ease-in-out infinite 1s;
}

.bubble-3 {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    bottom: -10px;
    right: 30px;
    animation: float 5s ease-in-out infinite 0.5s;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    animation: slideUp 1s ease-out 0.3s both;
}

.description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    animation: slideUp 1s ease-out 0.6s both;
}

.early-access {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    animation: slideUp 1s ease-out 0.9s both;
}

.early-access h3 {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.form-group {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
    outline: none;
}

button {
    background-color: var(--accent-color);
    color: var(--text-color);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 0 5px 5px 0;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #b0d1e4;
}

#form-message {
    margin-top: 1rem;
    height: 1.5rem;
}

.success-message {
    color: #4caf50;
}

.error-message {
    color: #f44336;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@media (max-width: 768px) {
    .logo {
        font-size: 2.8rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    input[type="email"] {
        border-radius: 5px;
        margin-bottom: 0.8rem;
    }
    
    button {
        border-radius: 5px;
    }
}

/* Privacy Policy Styles */
.privacy-container {
    min-height: auto;
    padding: 2rem 1rem;
}

.privacy-content {
    text-align: left;
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.privacy-content h2 {
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
}

.privacy-content h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-color);
}

.privacy-content h4 {
    font-size: 1.2rem;
    margin: 1.2rem 0 0.5rem;
    color: var(--text-color);
}

.privacy-content p {
    margin-bottom: 1rem;
}

.privacy-content ul, 
.privacy-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    margin-bottom: 0.5rem;
}

.privacy-content section {
    margin-bottom: 2rem;
}

.effective-date {
    margin-bottom: 2rem;
}

.policy-footer {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

/* Footer Styles */
.site-footer {
    background-color: white;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
} 