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

body {
    font-family: 'Inter', sans-serif;
    background: url('pingapinga_background_main.webp') no-repeat center center fixed; /* Add your background image here */
    background-size: cover; /* Ensure the image covers the whole background */
    background-blend-mode: overlay; /* Overlay effect to make the image subtle */
    background-color: rgba(15, 32, 39, 0.8); /* Semi-transparent overlay color to make text readable */
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Change from height to min-height */
    margin: 0;
    padding: 20px; /* Add padding to ensure content doesn't touch edges */
}

/* Container Styles */
.container {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    text-align: center;
    margin: 1rem auto; /* Center the container horizontally */
    /* Remove these two lines:
    overflow-y: auto;
    max-height: 90vh;
    */
}

/* Main Heading for both pages */
h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* Section Heading (used in Privacy Policy) */
h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Prominent Introductory Text on the Main Page */
.intro-text {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Form Styles (Main Page Only) */
.waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.email-input {
    padding: 0.8rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    outline: none;
}

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

/* GDPR Checkbox Styles */
.gdpr-label {
    text-align: left;
}

label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

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

/* Call-to-Action Button Styles (Main Page Only) */
.cta-button {
    background-color: #008060; /* Darker green */
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #006048;
}

/* Key Points Section (Main Page Only) */
.key-points {
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    font-size: 1rem;
}

.key-points p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Disclaimer Section (Main Page Only) */
.disclaimers {
    text-align: left;
    font-size: 0.75rem;
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.disclaimers p {
    margin-bottom: 0.5rem;
}

/* Link Styles (for both pages) */
.back-link, a {
    color: #00cc99;
    text-decoration: none;
}

.back-link:hover, a:hover {
    color: #00b386;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    body {
        padding: 10px; /* Reduce padding on smaller screens */
    }

    .container {
        padding: 1.5rem;
        margin: 0.5rem auto; /* Reduce margin on smaller screens */
        max-height: 95vh; /* Allow more height on mobile */
        overflow-y: auto; /* Add scroll only on mobile if needed */
    }

    h1 {
        font-size: 1.5rem; /* Further reduce font size on mobile */
    }

    .intro-text {
        font-size: 0.9rem; /* Reduce intro text size */
    }

    /* New additions for form responsiveness */
    .waitlist-form {
        width: 100%;
    }

    .email-input,
    .cta-button {
        width: 100%;
        padding: 0.7rem;
    }

    .key-points,
    .disclaimers {
        font-size: 0.9rem;
    }

    .gdpr-label {
        font-size: 0.8rem;
    }
}

/* Additional media query for very tall screens */
@media (min-aspect-ratio: 2/3) and (max-width: 768px) {
    .container {
        max-height: none; /* Remove max-height for tall screens */
        overflow-y: visible; /* Remove scroll for tall screens */
    }
}
