:root {
    --primary: #f4a09c;
    --primary-glow: rgba(244, 160, 156, 0.4);
    --secondary: #6c5ce7;
    --bg-dark: #120810;
    --bg-accent: #1A0B16;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* App-Matching Background */
.mesh-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-accent) 50%, var(--bg-dark) 100%);
}

.blob-container {
    position: absolute;
    width: 200vw;
    height: 100vh;
    animation: slide 25s infinite linear alternate;
}

.mesh-blob {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 145, 164, 0.05) 0%, rgba(18, 8, 16, 0) 100%);
    transform: rotate(30deg);
}

@keyframes slide {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0%);
    }
}

/* Layout Container */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

/* Header & Logo */
header {
    margin-bottom: 4rem;
    text-align: center;
}

.logo-icon {
    font-size: 3rem;
    color: var(--primary);
    filter: drop-shadow(0 0 15px var(--primary-glow));
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.5rem;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 5rem;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title span {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 5rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.badge {
    background: rgba(244, 160, 156, 0.1);
    color: var(--primary);
    padding: 0.6rem 2rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    border: 1px solid rgba(244, 160, 156, 0.2);
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn-badge {
    display: inline-block;
    height: 48px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-badge img {
    height: 100%;
}

.btn-badge.disabled {
    opacity: 0.5;
    cursor: default;
    filter: grayscale(0.2);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
}

/* Footer Section */
footer {
    margin-top: auto;
    padding: 6rem 0 2rem;
    text-align: center;
    width: 100%;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: color 0.2s, opacity 0.2s;
    opacity: 0.6;
}

.footer-link span.mdi {
    font-size: 1.2rem;
}

.footer-link:hover {
    color: var(--primary);
    opacity: 1;
}

.copyright {
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    color: rgba(244, 160, 156, 0.15);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 90%;
    max-width: 500px;
    padding: 3.5rem;
    border-radius: 3rem;
    position: relative;
    text-align: center;
}

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.modal-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.modal-content .note {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.modal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.modal-content .close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.btn-modal {
    background: var(--primary);
    color: #8b3d3a;
    border: none;
    padding: 1rem 3rem;
    border-radius: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.2rem;
    cursor: pointer;
    width: 100%;
    margin-top: 1rem;
    box-shadow: 0 10px 20px var(--primary-glow);
}

/* Privacy Page Styling */
.privacy-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    line-height: 1.6;
}

.privacy-wrapper h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.privacy-wrapper h2 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
}

.privacy-wrapper p,
.privacy-wrapper ul {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.back-btn {
    display: inline-block;
    margin-bottom: 2rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1rem;
}

/* Responsive fixes */
@media (max-width: 900px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .cta-group {
        flex-direction: column;
    }
}