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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

/* Logo */
.logo {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.logo a {
    color: #fff;
    text-decoration: none;
}

.logo a:hover {
    opacity: 0.8;
}

/* Splash Screen Styles */
.splash-screen {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 40px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.logo-section {
    margin-bottom: 40px;
}

.logo-section .logo {
    color: #667eea;
    font-size: 4rem;
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.3rem;
    color: #666;
    font-weight: 300;
}

.content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.feature {
    padding: 20px;
}

.feature .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.feature h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
}

/* Privacy Page Styles */
.privacy-page {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 60px 80px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.page-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.page-header .logo {
    font-size: 2.5rem;
    color: #667eea;
}

.privacy-page article.content {
    text-align: left;
}

.privacy-page h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.last-updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 40px;
}

.privacy-page section {
    margin-bottom: 35px;
}

.privacy-page h2 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 15px;
    margin-top: 20px;
}

.privacy-page p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-page ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.privacy-page li {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.privacy-page strong {
    color: #333;
}

/* Footer */
.footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
    text-align: center;
}

.footer a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}

.footer a:hover {
    text-decoration: underline;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .splash-screen,
    .privacy-page {
        padding: 40px 30px;
    }
    
    .logo-section .logo {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .content h2 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .privacy-page h1 {
        font-size: 2rem;
    }
    
    .privacy-page h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .splash-screen,
    .privacy-page {
        padding: 30px 20px;
    }
    
    .logo-section .logo {
        font-size: 2.5rem;
    }
    
    .content h2 {
        font-size: 1.8rem;
    }
}
