@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --bg-color: #f8f9fa;
    --text-color: #212529;
    --primary-gradient-start: #6a11cb;
    --primary-gradient-end: #2575fc;
    --accent-color: #198754;
    --glass-bg: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.8);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

body::before, body::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

body::before {
    width: 300px;
    height: 300px;
    background: var(--primary-gradient-start);
    opacity: 0.3;
    top: -50px;
    left: -100px;
    animation: move-blur 20s infinite alternate;
}

body::after {
    width: 250px;
    height: 250px;
    background: var(--primary-gradient-end);
    opacity: 0.3;
    bottom: -50px;
    right: -100px;
    animation: move-blur 25s infinite alternate-reverse;
}

@keyframes move-blur {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(40px, 60px) scale(1.2); }
}

.container {
    width: 90%;
    max-width: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 var(--shadow-color);
    padding: 30px;
    text-align: center;
}

header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

nav {
    display: flex;
    gap: 15px;
}

.nav-button {
    background: transparent;
    color: var(--text-color);
    border: 1px solid transparent;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s, color 0.3s;
}

.nav-button:hover {
    background-color: rgba(0,0,0,0.05);
    color: var(--primary-gradient-end);
}

h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    word-break: keep-all;
}

#numbers-container {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--bg-color);
    color: var(--text-color);
    border: 1px solid #dee2e6;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    box-shadow: 0 4px 15px var(--shadow-color);
    animation: popIn 0.5s ease-out forwards;
}

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

#generate-btn {
    background: linear-gradient(45deg, var(--primary-gradient-start), var(--primary-gradient-end));
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    cursor: pointer;
    font-size: 18px;
    letter-spacing: 0.1em;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

#generate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

#generate-btn:active {
    transform: scale(0.95);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* FAQ and Partnership page specific styles */
.faq-section, .contact-form-section {
    padding: 0;
}

.faq-item {
    margin-bottom: 20px;
    background: rgba(0,0,0,0.03);
    padding: 15px;
    border-radius: 10px;
    text-align: left;
}

.faq-item h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.faq-item p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    word-break: keep-all;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    background-color: #ffffff;
    color: var(--text-color);
    font-size: 1rem;
    border-radius: 8px;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: #6c757d;
}

.contact-form button[type="submit"] {
    background: var(--accent-color);
    color: #ffffff;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 50px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.contact-form button[type="submit"]:hover {
    transform: scale(1.05);
    background-color: #157347;
}
