/* Pre-Alpha Mode Styling */

/* Marquee and Coming Soon styling */
.pre-alpha-marquee {
    background: linear-gradient(90deg, #3b82f6 0%, #8b5cf6 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    overflow: hidden;
    margin: 0 auto;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    50% {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    }
}

/* Waitlist form styling */
.waitlist-container {
    max-width: 48rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.waitlist-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.waitlist-container form input {
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.15s ease-in-out;
}

.waitlist-container form input:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.3);
}

.waitlist-container form button {
    padding: 0.75rem 1rem;
    background-color: #3b82f6;
    color: white;
    font-weight: 600;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    transition: background-color 0.15s ease-in-out;
}

.waitlist-container form button:hover {
    background-color: #2563eb;
}

.pre-alpha-badge {
    position: absolute;
    top: 3rem;
    left: 45vw;
    background-color: #f97316;
    color: white;
    font-weight: 600;
    padding: 0.1rem 0.2rem 0.1rem 0.2rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    z-index: 50;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Thank you page styling */
.thank-you-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem auto;
    color: #10b981;
}

.thank-you-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.thank-you-message {
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

/* Admin interface styling */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    background-color: #f9fafb;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
}

.admin-table td {
    padding: 0.75rem 1rem;
    border-top: 1px solid #e5e7eb;
}

.admin-table tr:hover {
    background-color: #f9fafb;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-pending {
    background-color: #fef3c7;
    color: #92400e;
}

.status-invited {
    background-color: #dbeafe;
    color: #1e40af;
}

.status-registered {
    background-color: #d1fae5;
    color: #065f46;
}
.text-xl,
.text-lg,
.text-md,
.text-sm {
    color: #ffffff;
}
.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #ffffff;
}
