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

:root {
    --primary: #0f172a;
    --secondary: #1e40af;
    --accent: #3b82f6;
    --light: #f1f5f9;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    min-height: 100vh;
}

body.home-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
}

body.thanks-page {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

body.privacy-page {
    padding: 40px 20px;
}

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

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

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--light);
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.6;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.feature p {
    font-size: 0.95rem;
    color: var(--light);
    line-height: 1.5;
}

.cta {
    margin-top: 3rem;
}

.email-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.email-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.email-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}

.submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 700;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.coming-soon {
    display: inline-block;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid var(--accent);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

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

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(59, 130, 246, 0.3);
    padding: 1.5rem;
    z-index: 1000;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--light);
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-text a:hover {
    color: var(--white);
}

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-btn.accept {
    background: var(--accent);
    color: var(--white);
}

.cookie-btn.accept:hover {
    background: #2563eb;
    transform: scale(1.05);
}

.cookie-btn.decline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.decline:hover {
    background: rgba(255, 255, 255, 0.15);
}

.success-message {
    display: none;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid #22c55e;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    color: #86efac;
}

.particle {
    position: fixed;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
    }
    90% {
        opacity: 0.5;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

.particle-1 {
    width: 100px;
    height: 100px;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 60px;
    height: 60px;
    left: 80%;
    animation-delay: 2s;
}

.particle-3 {
    width: 80px;
    height: 80px;
    left: 50%;
    animation-delay: 4s;
}

.particle-4 {
    width: 40px;
    height: 40px;
    left: 30%;
    animation-delay: 6s;
}

.particle-5 {
    width: 70px;
    height: 70px;
    left: 70%;
    animation-delay: 8s;
}

@media (max-width: 768px) {
    body.home-page {
        padding: 15px;
    }

    body.privacy-page {
        padding: 20px 15px;
    }

    .container {
        width: 100%;
    }

    body.privacy-page .logo {
        font-size: 1.5rem;
    }

    body.privacy-page h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .intro, .contact-info {
        padding: 1.5rem;
    }

    ul, ol {
        margin-left: 1.25rem;
    }

    .particle {
        display: none;
    }

    .logo {
        font-size: 1.8rem;
        margin-bottom: 0.75rem;
    }

    .coming-soon {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }

    h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        letter-spacing: -1px;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 2rem 0;
    }

    .feature {
        padding: 1.5rem 1rem;
    }

    .feature-icon {
        font-size: 2rem;
    }

    .feature h3 {
        font-size: 1.1rem;
    }

    .feature p {
        font-size: 0.9rem;
    }

    .cta {
        margin-top: 2rem;
    }

    .email-form {
        flex-direction: column;
        margin: 1.5rem auto 1rem;
    }

    .email-input,
    .submit-btn {
        width: 100%;
        min-width: 100%;
    }

    .footer {
        margin-top: 2rem;
        font-size: 0.8rem;
    }

    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-text {
        font-size: 0.9rem;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .logo {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    .subtitle {
        font-size: 0.95rem;
    }

    .feature {
        padding: 1.25rem 0.75rem;
    }

    .email-input,
    .submit-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }
}

body.thanks-page .container {
    max-width: 600px;
}

.checkmark {
    font-size: 5rem;
    margin-bottom: 2rem;
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

body.thanks-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

body.thanks-page p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.back-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.back-btn:hover {
    background: #2563eb;
    transform: scale(1.05);
}

body.privacy-page .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

body.privacy-page .header {
    text-align: center;
}

.back-link {
    display: inline-block;
    margin-bottom: 2rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-5px);
}

.header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

body.privacy-page .logo {
    font-size: 2rem;
}

body.privacy-page h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--light);
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.8;
}

.intro {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.5);
    font-weight: 800;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.25rem;
    color: var(--light);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
    opacity: 0.95;
}

ul, ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

li {
    margin-bottom: 0.75rem;
    opacity: 0.95;
}

strong {
    color: var(--white);
    font-weight: 700;
}

a {
    color: var(--accent);
    text-decoration: underline;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--light);
}

.highlight-box {
    background: rgba(59, 130, 246, 0.15);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 8px;
}

.contact-info {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

hr {
    margin: 3rem 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-text {
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
    margin-top: 3rem;
}
