/* Welcome Page Styles */

:root {
    --bg-color: #1a1a1a;
    --card-bg: #f8f9fa;
    --text-main: #333;
    --text-muted: #666;
    --accent-color: #007bff;
    --beta-bg: #ff9800;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 0.5rem;
}

.welcome-card {
    background-color: var(--card-bg);
    width: 100%;
    max-width: 750px;
    border-radius: 18px;
    padding: 1.5rem 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #000;
    letter-spacing: -0.04em;
}

.beta-tag {
    background-color: var(--beta-bg);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: flex-start;
}

.hero-image-container {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 220px;
    display: block;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
    user-select: none;
}

.description {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text-main);
    font-weight: 300;
    letter-spacing: -0.01em;
}

.hero-headline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1.15;
    color: #000;
    margin-bottom: 1rem;
    letter-spacing: -0.05em;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer {
    margin-top: 1.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: #333;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.footer-logo img {
    width: 20px;
    height: 20px;
}

.footer-divider {
    color: #ccc;
}

.cta-section {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

.cta-text {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 400;
}

.btn-signin {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2.25rem;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    color: #000;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.btn-signin:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: #fdfdfd;
}

@media (max-width: 768px) {
    .welcome-card {
        padding: 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .header {
        margin-bottom: 2rem;
    }
}

/* Footer Refinements */
.footer-disclaimer {
    width: 100%;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-inline: auto;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    align-items: center;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.footer-btn {
    display: inline-block;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.45rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-btn:hover {
    background: rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ───── Next Gen Facts Carousel ───── */

.nextgen-facts {
    margin-top: 1.25rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.03), rgba(0, 123, 255, 0.04));
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    position: relative;
    min-height: 130px;
}

.nextgen-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(0, 123, 255, 0.85);
    margin-bottom: 0.75rem;
}

.nextgen-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #007bff;
    box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    animation: nextgenPulse 2s ease-in-out infinite;
}

@keyframes nextgenPulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 8px rgba(0, 123, 255, 0.5);
    }

    50% {
        opacity: 0.5;
        box-shadow: 0 0 4px rgba(0, 123, 255, 0.2);
    }
}

.nextgen-carousel {
    position: relative;
    height: 140px;
    overflow: hidden;
}

.nextgen-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.nextgen-slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nextgen-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #111;
    margin-bottom: 0.5rem;
}

.nextgen-compare {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.nextgen-old,
.nextgen-new {
    font-size: 0.75rem;
    line-height: 1.45;
    color: var(--text-main);
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
}

.nextgen-old {
    background: rgba(255, 0, 0, 0.04);
    border-left: 2px solid rgba(255, 80, 80, 0.4);
    color: #666;
}

.nextgen-new {
    background: rgba(0, 123, 255, 0.04);
    border-left: 2px solid rgba(0, 123, 255, 0.4);
    color: #222;
}

.nextgen-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
    margin-right: 0.35rem;
    vertical-align: middle;
}

.nextgen-tag.old {
    background: rgba(200, 50, 50, 0.1);
    color: rgba(200, 50, 50, 0.7);
}

.nextgen-tag.new {
    background: rgba(0, 123, 255, 0.1);
    color: rgba(0, 123, 255, 0.8);
}

.nextgen-dots {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.nextgen-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.nextgen-dots .dot.active {
    background: #007bff;
    transform: scale(1.3);
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
}

.nextgen-dots .dot:hover {
    background: rgba(0, 123, 255, 0.5);
}

@media (max-width: 768px) {
    .nextgen-facts {
        padding: 0.85rem 1rem;
    }

    .nextgen-carousel {
        height: 180px;
    }
}