:root {
    --primary: #0f172a;
    --secondary: #64748b;
    --accent: #3b82f6;
    --bg: #ffffff;
    --blob-blue: #eff6ff;
    --blob-yellow: #fefce8;
    --blob-white: #ffffff;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

body {
    font-family: var(--font-family);
    background-color: var(--bg);
    background-image: 
        radial-gradient(at 100% 0%, var(--blob-white) 0px, transparent 50%),
        radial-gradient(at 0% 100%, var(--blob-yellow) 0px, transparent 50%);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

header {
    padding: 1.5rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: calc(100vh - 80px);
    padding: 4rem 0;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    transform: scale(1.1);
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

h1 span {
    color: var(--accent);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.download-buttons {
    display: flex;
    gap: 1rem;
}

.download-button img {
    height: 50px;
    transition: transform 0.2s ease;
}

.download-button:hover img {
    transform: translateY(-2px);
}

footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid #f1f5f9;
    font-size: 0.875rem;
    color: var(--secondary);
}

.footer-links {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.footer-links a {
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.2s;
}

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

@media (max-width: 968px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    .hero-description {
        margin: 0 auto 2.5rem;
    }
    
    .download-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
}

/* Content Pages Styling */
.content-section {
    padding: 6rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.content-section h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary);
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1rem;
}

.content-section h2 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
    color: var(--primary);
}

.content-section p {
    margin-bottom: 1.5rem;
    color: var(--secondary);
    line-height: 1.8;
}

.content-section ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    color: var(--secondary);
}

.content-section li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.content-section .last-update {
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 3rem;
}

.content-section strong {
    color: var(--primary);
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

.delete-account-card {
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    margin-top: 3rem;
    text-align: center;
}

.btn-danger {
    background-color: #ef4444;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 2rem;
    transition: background-color 0.2s;
}

.btn-danger:hover {
    background-color: #dc2626;
}
