/* =============================================
   GAMEBIOV1 - CSS Landing Page (Home)
   ============================================= */

/* ---- Hero ---- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 0 4rem;
    position: relative;
    overflow: hidden;
}

/* Grid de fundo */
.hero__bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

/* Glows de fundo */
.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}
.hero__glow--1 { width: 500px; height: 500px; top: -100px; left: -100px; background: rgba(99,102,241,0.12); }
.hero__glow--2 { width: 400px; height: 400px; bottom: -80px; right: -80px; background: rgba(6,182,212,0.08); }

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Conteúdo esquerdo */
.hero__content {}

.hero__live {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.hero__live-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.hero__title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.hero__title-accent { color: var(--accent); }

.hero__sub {
    font-size: 1.05rem;
    color: var(--text-dim);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 2rem;
}

.hero__cta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.hero__url {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.9rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero__url strong { color: var(--accent); }

/* Preview card direito */
.hero__preview {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__card {
    width: 100%;
    max-width: 300px;
    background: var(--bg-card);
    border: 1px solid rgba(6,182,212,0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(99,102,241,0.1),
        0 0 120px rgba(6,182,212,0.06);
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

.hero__card-banner {
    height: 80px;
    background: linear-gradient(135deg, #1a1a3e, #0f1128);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.hero__card-body { padding: 0 1rem 1rem; }

.hero__card-body {
    padding: 0 1rem 1rem;
    position: relative;
}

.hero__card-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid var(--accent);
    background: var(--bg-card2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-top: -32px;
    margin-bottom: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.hero__card-avatar img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.hero__card-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.15rem;
}

.hero__card-tag {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.hero__card-links { display: flex; flex-direction: column; gap: 0.4rem; }

.hero__card-link {
    padding: 0.45rem 0.75rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-dim);
}

/* ---- Sections ---- */
.section { padding: 5rem 0; }
.section--alt { background: rgba(255,255,255,0.01); }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Features ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(99,102,241,0.12);
}

.feature-card__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.feature-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.75rem; }

/* ---- Como funciona ---- */
.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.step { text-align: center; max-width: 200px; }

.step__num {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.35;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.step h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.step p  { color: var(--text-muted); font-size: 0.85rem; line-height: 1.5; }

.step__arrow {
    font-size: 1.75rem;
    color: var(--border);
    flex-shrink: 0;
}

/* ---- CTA final ---- */
.cta-box {
    background: var(--bg-card);
    border: 1px solid rgba(6,182,212,0.2);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(99,102,241,0.07);
}

.cta-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(6,182,212,0.05), transparent 70%);
    pointer-events: none;
}

.cta-box h2 { font-size: 2rem; margin-bottom: 0.75rem; position: relative; }
.cta-box p  { color: var(--text-muted); margin-bottom: 1.75rem; position: relative; }

.cta-box__btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ---- Responsivo ---- */
@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__preview { display: none; }
    .hero__cta { justify-content: center; }
    .features-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .steps { flex-direction: column; }
    .step__arrow { transform: rotate(90deg); }
}

/* SEO description paragraph */
.hero__desc {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin: .75rem 0 0;
    opacity: .8;
}
/* =============================================
   GAMEBIOV1 — home.css additions
   Adicionar ao final do home.css existente
   ============================================= */

/* ---- Hero card live ---- */
.hero__card--live {
    position: relative;
}
.hero__card-banner {
    position: relative;
    overflow: hidden;
}
.hero__card-live-badge {
    position: absolute;
    top: .6rem;
    left: .75rem;
    font-size: .7rem;
    font-weight: 700;
    color: #22c55e;
    background: rgba(0,0,0,.6);
    padding: .2rem .55rem;
    border-radius: 99px;
    letter-spacing: .05em;
}
.hero__card-bio {
    font-size: .78rem;
    color: var(--text-muted);
    margin: .3rem 0 .5rem;
    line-height: 1.4;
}
.hero__card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem .75rem;
    font-size: .75rem;
    color: var(--text-muted);
    margin: .5rem 0 .75rem;
}
.hero__card-cta {
    display: inline-block;
    padding: .45rem 1rem;
    background: var(--accent);
    color: #000;
    border-radius: 8px;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s;
}
.hero__card-cta:hover { opacity: .85; }

/* ---- Themes showcase ---- */
.themes-showcase {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.theme-card {
    border-radius: 12px;
    border: 1px solid transparent;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    cursor: default;
}
.theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.theme-card__header {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem .75rem;
    position: relative;
}
.theme-card__emoji {
    font-size: 1.3rem;
}
.theme-card__bar {
    height: 4px;
    width: 40px;
    border-radius: 2px;
}
.theme-card__body {
    padding: .6rem .75rem .75rem;
}
.theme-card__name {
    font-size: .8rem;
    font-weight: 700;
    margin-bottom: .5rem;
    font-family: var(--font-display, 'Rajdhani', sans-serif);
}
.theme-card__lines {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.theme-card__line {
    height: 6px;
    border-radius: 3px;
}
.theme-card__btn {
    height: 18px;
    width: 60%;
    border-radius: 4px;
    margin-top: .2rem;
    opacity: .8;
}
.theme-card--more {
    border: 1px dashed var(--border);
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
}
.theme-card__more-inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding: 1rem;
}

/* ---- Featured profiles grid ---- */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}
.profile-card {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .85rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, transform .2s, box-shadow .2s;
}
.profile-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(6,182,212,.12);
}
.profile-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid var(--border);
}
.profile-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-card__info {
    flex: 1;
    min-width: 0;
}
.profile-card__name {
    font-weight: 700;
    font-size: .9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.profile-card__username {
    font-size: .75rem;
    color: var(--accent);
    margin-bottom: .2rem;
}
.profile-card__bio {
    font-size: .75rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.profile-card__stats {
    display: flex;
    gap: .75rem;
    font-size: .72rem;
    color: var(--text-muted);
    margin-top: .3rem;
}
.profile-card__arrow {
    color: var(--text-muted);
    font-size: .9rem;
    flex-shrink: 0;
    transition: color .2s, transform .2s;
}
.profile-card:hover .profile-card__arrow {
    color: var(--accent);
    transform: translateX(3px);
}

/* Responsivo */
@media (max-width: 900px) {
    .themes-showcase {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 600px) {
    .themes-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    .profiles-grid {
        grid-template-columns: 1fr;
    }
}