/* CSS Variables for Material Design Colors */
:root {
    --google-blue: #4285F4;
    --google-green: #34A853;
    --google-yellow: #FBBC05;
    --google-gray: #5F6368;
    --white: #FFFFFF;
    --purple: #764ba2;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--google-gray);
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Header/Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

nav h1 a {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--google-blue);
    letter-spacing: -.025em;
    font-size: 20px;
    font-weight: 700;
    font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
}

.logo {
    width: 32px;
    margin-right: 0.5rem;
    vertical-align: middle;
}

nav ul {
    display: flex;
    gap: 2rem;
}

nav ul li a {
    color: var(--google-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--google-blue);
}

/* Navigation Icons */
nav ul li a i {
    margin-right: 0.5rem;
    font-size: 0.9em;
    width: 1em;
    text-align: center;
}

/* Launch Button */
.launch-button {
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--purple) 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.launch-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, var(--purple) 0%, var(--google-blue) 100%);
    color: var(--white);
}

/* Banner Section */
#home,
#signup {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--purple) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
#home {
    height: 100vh;
    padding: 0 2rem;
}
#home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

#home::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 210px 60px, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 250px 90px, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 290px 20px, rgba(255, 255, 255, 0.4) 50%, transparent 50%),
        radial-gradient(2px 2px at 330px 50px, rgba(255, 255, 255, 0.3) 50%, transparent 50%),
        radial-gradient(1px 1px at 370px 80px, rgba(255, 255, 255, 0.4) 50%, transparent 50%);
    background-size: 400px 400px;
    animation: stardust 20s linear infinite;
    pointer-events: none;
}

@keyframes stardust {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 400px 400px;
    }
}

#home h2 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

#home p {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 2.5rem;
    max-width: 650px;
    line-height: 1.6;
    font-weight: 400;
    opacity: 0.95;
}

.cta-button {
    background: linear-gradient(135deg, var(--google-green) 0%, #2c8e47 100%);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #2c8e47 0%, var(--google-green) 100%);
}

.cta-button:hover::before {
    left: 100%;
}

/* Sections General */
section {
    padding: 4rem 2rem;
}

section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--google-blue);
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.5px;
}

section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    /* max-width: 800px; */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #5f6368;
    font-weight: 400;
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(66, 133, 244, 0.1);
    text-align: center;
}

.feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--google-blue);
    margin-bottom: 1rem;
    display: block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.feature:hover .feature-icon {
    transform: scale(1.1);
    color: #764ba2;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--google-blue);
    font-weight: 600;
}

.feature p {
    text-align: left;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.6;
    color: #5f6368;
}

/* Pricing Section */
#pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eaed 100%);
    text-align: center;
}

#pricing p {
    font-size: 1.2rem;
    color: var(--google-gray);
}

/* Subscription Section */
/* #signup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
} */

#signup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

#signup h2,
#signup p {
    color: var(--white);
}

#signup form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#signup input[type="email"] {
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

#signup input[type="checkbox"] {
    margin-right: 0.5rem;
}

#signup label {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    text-align: left;
}

#signup button {
    background: linear-gradient(135deg, var(--google-green) 0%, #2c8e47 100%);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

#signup button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #2c8e47 0%, var(--google-green) 100%);
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

footer nav {
    justify-content: center;
    margin-bottom: 2rem;
}

footer nav a {
    margin: 0 1rem;
    color: var(--white);
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: #a8d8ea;
}

footer p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

/* Footer EU Text */
footer p:has(.eu-flag-icon) {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.eu-flag-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
}

/* Legal Pages Content */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    line-height: 1.6;
}

.privacy-section {
    padding-top: 3rem !important;
    text-align: left;
}

.privacy-header {
    text-align: center;
    margin-top: 4rem;
    margin-bottom: 3rem;
}

.privacy-header h2 {
    font-size: 2.5rem;
    color: var(--google-blue);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.legal-content {
    /* max-width: 800px; */
    margin: 0;
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--google-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: var(--google-blue);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content h5 {
    font-size: 1rem;
    color: #5f6368;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1rem;
    color: #5f6368;
    text-align: left;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    text-align: left;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #5f6368;
    text-align: left;
}

.legal-content li strong {
    color: var(--google-blue);
    font-weight: 500;
}

.legal-content a {
    color: var(--google-blue);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--purple);
    text-decoration: underline;
}

.intro-text {
    font-size: 1rem;
    color: #5f6368;
    margin-bottom: 2rem;
    font-style: italic;
    text-align: center;
}

.contact-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    margin-top: 3rem;
    border: 1px solid rgba(66, 133, 244, 0.1);
}

.contact-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-top: 1rem;
    line-height: 1.6;
}

.contact-card p {
    margin-bottom: 0.5rem;
    color: #5f6368;
}

.contact-card strong {
    color: var(--google-blue);
}

.back-home {
    text-align: center;
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--purple) 100%);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
    color: white;
    text-decoration: none;
}

/* Withdrawal Form Styling */
.withdrawal-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    padding: 1rem;
    margin: 1rem 0;
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #5f6368;
}

.withdrawal-form p {
    margin: 0.5rem 0;
    font-weight: normal;
    color: #5f6368;
}

/* GDPR Table Styling */
.gdpr-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    border: 1px solid rgba(66, 133, 244, 0.1);
}

.gdpr-table th,
.gdpr-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.gdpr-table th {
    background: linear-gradient(135deg, var(--google-blue) 0%, var(--purple) 100%);
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
}

.gdpr-table td {
    color: #5f6368;
    vertical-align: top;
    font-size: 0.9rem;
}

.gdpr-table td strong {
    color: var(--google-blue);
    font-weight: 500;
}

.gdpr-table tr:last-child td {
    border-bottom: none;
}

.gdpr-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.5);
}

/* Table responsive design */
@media (max-width: 768px) {
    .gdpr-table th,
    .gdpr-table td {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .gdpr-table td {
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 1rem;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    #home h2 {
        font-size: 2rem;
    }

    #home p {
        font-size: 1rem;
    }

    section {
        padding: 3rem 1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    footer nav {
        flex-direction: column;
        gap: 1rem;
    }

    .content-container {
        padding: 0 1rem;
    }

    .legal-content h3 {
        font-size: 1.2rem;
        margin-top: 2rem;
    }

    .legal-content h4 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .legal-content ul {
        padding-left: 1rem;
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    nav {
        padding: 0 1rem;
    }
    
    #home h2 {
        font-size: 2.5rem;
    }
    
    section {
        padding: 3rem 1.5rem;
    }
}
