/* Reset and Base Styles */
:root {
    --bg-dark: #0a0a0f;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-primary: #8a2be2; /* Violet */
    --accent-secondary: #00ffcc; /* Cyan */
    --gradient-primary: linear-gradient(135deg, #8a2be2 0%, #00ffcc 100%);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* Space for future navbar */
}

/* Background Effects */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    /* Imagem de fundo bem escura (menos opacidade da imagem) para leitura perfeita do texto */
    background: radial-gradient(circle at center, rgba(10, 10, 15, 0.90) 0%, rgba(10, 10, 15, 0.98) 100%),
                url('../img/bg-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 10s infinite ease-in-out alternate;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(138, 43, 226, 0.4);
    top: -100px;
    left: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 255, 204, 0.3);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

/* Badge Premium */
.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    color: var(--text-secondary);
}

.badge-icon {
    font-size: 1.1rem;
}

/* Headline */
.headline {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

/* Subtitle */
.subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* CTA Area */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    padding: 16px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px rgba(138, 43, 226, 0.6);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(0, 255, 204, 0.8);
}

.btn-primary svg {
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.cta-guarantee {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Animations */
@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 30px) scale(1.1); }
}

.animate-fade-in-down {
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

.animate-pop-in {
    animation: popIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    opacity: 0;
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    opacity: 0;
}

.animate-fade-in-up-delay {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    opacity: 0;
}

.cta-pulse {
    animation: pulse 2s infinite 2s;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(138, 43, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 60px;
    }
}

/* (A grade antiga de posters foi substituÃ­da pela imagem estÃ¡tica de fundo) */

/* Ticker Section (Faixa Rolante) */
.ticker-section {
    background: var(--gradient-primary); /* Fundo com a cor tema para destacar */
    padding: 12px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.ticker-wrapper {
    display: flex;
    white-space: nowrap;
}

.ticker-track {
    display: flex;
    animation: tickerScroll 25s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--bg-dark); /* Texto escuro em cima do fundo colorido */
    text-transform: uppercase;
    padding: 0 1rem;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* --- Channels Section --- */
.channels-section {
    padding: 100px 0;
    /* Fundo Escuro Animado Premium */
    background: linear-gradient(-45deg, #050508, #0a0515, #150a25, #050510);
    background-size: 400% 400%;
    animation: bgShift 15s ease infinite;
    position: relative;
    z-index: 1;
}

@keyframes bgShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-header h2 strong {
    /* Gradiente animado no texto de destaque */
    background: linear-gradient(270deg, #8a2be2, #00ffcc, #ff007f, #8a2be2);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: textGradient 6s ease infinite;
    display: inline-block;
}

@keyframes textGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
}

/* Parede de Logos Estilo Grade (Logo Wall) */
.logo-grid-container {
    position: relative;
    max-width: 1000px;
    margin: 40px auto 0 auto;
}

.logo-grid {
    display: grid;
    /* Grade densa com vÃ¡rios botÃµes pequenos lado a lado */
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 15px;
    padding: 10px;
}

.logo-box {
    background: #ffffff; /* Fundo branco e brilhante igual Ã  imagem */
    border-radius: 12px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Sombras que imitam o relevo arredondado da imagem */
    box-shadow: inset 0 -3px 5px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.3);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.logo-box:hover {
    transform: scale(1.15);
    box-shadow: inset 0 -3px 5px rgba(0,0,0,0.1), 0 8px 15px rgba(138, 43, 226, 0.4);
    z-index: 2;
}

.logo-box strong {
    font-size: 0.8rem;
    color: #333;
    font-family: Arial, sans-serif;
    letter-spacing: -0.5px;
    word-break: break-word;
    line-height: 1.1;
    padding: 0 4px;
}

/* Fade para esconder a parte de baixo da grade caso tenha muitos canais */
.grid-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #050508);
    pointer-events: none;
}

/* --- Comparativo de PreÃ§os e Planos --- */
.pricing-comparison, .pricing-plans {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 0%, rgba(138, 43, 226, 0.08) 0%, #030305 70%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.competitors-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
}

.comp-badge {
    background: #ffffff;
    color: #333;
    display: flex;
    align-items: center;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    font-weight: 900;
    transition: transform 0.2s ease;
}

.comp-badge:hover {
    transform: translateY(-5px);
}

.comp-badge span {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 2px solid #eaeaea;
    color: #666;
    font-weight: 700;
}

.math-total {
    margin: 40px 0;
    font-size: 1.5rem;
    color: #ff4d4d;
    font-weight: 800;
}

.total-strike {
    text-decoration: line-through;
    opacity: 0.8;
}

/* --- Grade de Planos (3 OpÃ§Ãµes) --- */
.pricing-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.pricing-card {
    background: linear-gradient(180deg, rgba(30, 30, 40, 0.9), rgba(15, 15, 20, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.4);
}

.pricing-card.popular {
    border: 2px solid #8a2be2;
    background: linear-gradient(180deg, rgba(138, 43, 226, 0.15), rgba(15, 15, 20, 0.95));
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(138, 43, 226, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff007f, #8a2be2);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-name {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.plan-screens {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 25px;
}

.pricing-card .price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--accent-secondary);
}

.pricing-card .currency {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
    margin-right: 5px;
}

.pricing-card .value {
    font-size: 4rem;
    font-weight: 900;
    line-height: 0.9;
}

.pricing-card .cents {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 10px;
}

.pricing-card .period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: auto;
    margin-bottom: 5px;
    margin-left: 5px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card .cta-button {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
    }
    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }
}

/* --- BotÃ£o Premium (CTA de Vendas) --- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    /* Gradiente animado triplo */
    background: linear-gradient(90deg, #ff007f, #8a2be2, #00ffcc, #ff007f);
    background-size: 300%;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 45px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    /* Sombra dupla: externa brilhante e interna refletida */
    box-shadow: 0 10px 30px rgba(138, 43, 226, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.3);
    animation: btnGradient 4s ease infinite;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

@keyframes btnGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Efeito de Reflexo (Shine) passando pelo botÃ£o no Hover */
.cta-button::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(30deg);
    transition: all 0.6s ease;
    left: -100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 255, 204, 0.6), inset 0 2px 5px rgba(255, 255, 255, 0.5);
    color: #fff;
}

.cta-button:hover::after {
    left: 100%;
}

.cta-button .arrow {
    transition: transform 0.3s ease;
}

/* --- SeÃ§Ã£o de Depoimentos (Social Proof) --- */
.testimonials-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #030305 0%, rgba(0, 255, 204, 0.03) 50%, #030305 100%);
    overflow: hidden;
    position: relative;
}

/* Criando um degradÃª nas bordas para as avaliaÃ§Ãµes surgirem e sumirem suavemente */
.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-section::before {
    left: 0;
    background: linear-gradient(to right, #050508, transparent);
}

.testimonials-section::after {
    right: 0;
    background: linear-gradient(to left, #050508, transparent);
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonials-track {
    display: flex;
    gap: 20px;
    width: max-content;
}

.track-left {
    animation: scrollLeft 50s linear infinite;
}

.track-right {
    animation: scrollRight 50s linear infinite;
}

/* Pausar animaÃ§Ã£o quando o usuÃ¡rio passa o mouse para ler */
.testimonials-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.wa-print {
    width: 280px;
    height: 320px;
    background-color: #efeae2;
    background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png'); /* Pattern icÃ´nico do WhatsApp */
    background-size: cover;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    border: 6px solid #111; /* Borda do aparelho celular */
    border-top-width: 15px; /* DinÃ¢mica para parecer o topo do celular com cÃ¢mera (Notch invisÃ­vel) */
    border-bottom-width: 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-print:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 35px rgba(138, 43, 226, 0.4);
}

.wa-header {
    background-color: #008069; /* Verde ClÃ¡ssico do WhatsApp */
    padding: 10px 12px;
    display: flex;
    align-items: center;
    color: white;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    z-index: 10;
}

.wa-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-back {
    font-size: 1.8rem;
    line-height: 1;
    margin-right: -2px;
    font-weight: 300;
}

.wa-avatar {
    width: 38px;
    height: 38px;
    background: #dfe5e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.wa-info {
    display: flex;
    flex-direction: column;
}

.wa-name {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.2;
}

.wa-status {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

.wa-body {
    padding: 15px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 5;
}

.wa-date {
    background: #e1f3fb;
    color: #555;
    font-size: 0.7rem;
    padding: 5px 12px;
    border-radius: 12px;
    align-self: center;
    margin-bottom: 15px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.05);
    font-weight: 500;
}

.wa-message {
    background: #ffffff;
    padding: 6px 8px 6px 10px;
    border-radius: 0 8px 8px 8px;
    align-self: flex-start;
    max-width: 90%;
    position: relative;
    box-shadow: 0 1px 2px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
}

.wa-message::before {
    content: '';
    position: absolute;
    top: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 0px solid transparent;
    border-right: 8px solid #ffffff;
    border-bottom: 10px solid transparent;
}

.wa-text {
    font-size: 0.95rem;
    color: #111b21;
    line-height: 1.35;
    margin-bottom: 2px;
    word-wrap: break-word;
}

.wa-meta {
    font-size: 0.65rem;
    color: #667781;
    text-align: right;
    align-self: flex-end;
    margin-top: 2px;
}

/* --- Web Player Section --- */
.web-player-section {
    padding: 100px 0;
    background: radial-gradient(ellipse at bottom, rgba(138, 43, 226, 0.1) 0%, #050508 60%);
}

.player-container {
    display: flex;
    max-width: 1200px;
    margin: 40px auto 0;
    background: #0f1015;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
    height: 600px;
}

.player-sidebar {
    width: 320px;
    background: #15161b;
    border-right: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
}

.player-controls {
    padding: 15px;
    background: #1a1b22;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.category-tabs {
    display: flex;
    gap: 5px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.category-tabs::-webkit-scrollbar {
    height: 4px;
}
.category-tabs::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
}

.cat-btn {
    background: rgba(255,255,255,0.05);
    border: none;
    color: #b0b3b8;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.cat-btn:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}

.cat-btn.active {
    background: #8A2BE2;
    color: white;
    font-weight: 600;
}

.search-box {
    margin-top: 10px;
}

.search-box input {
    width: 100%;
    padding: 10px 15px;
    background: #0a0b0e;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    border-radius: 6px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}

.search-box input:focus {
    border-color: #8A2BE2;
}

.channel-list {
    list-style: none;
    overflow-y: auto;
    flex: 1;
    padding: 10px 0;
}

/* Scrollbar personalizada para a lista */
.channel-list::-webkit-scrollbar {
    width: 6px;
}
.channel-list::-webkit-scrollbar-track {
    background: transparent;
}
.channel-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}
.channel-list::-webkit-scrollbar-thumb:hover {
    background: rgba(255,255,255,0.2);
}

.channel-list li {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.channel-list li:hover {
    background: rgba(255,255,255,0.05);
}

.channel-list li.active {
    background: rgba(138, 43, 226, 0.15);
    border-left: 4px solid #8A2BE2;
}

.channel-logo {
    width: 35px;
    height: 35px;
    border-radius: 4px;
    object-fit: contain;
    background: rgba(255,255,255,0.05);
    padding: 2px;
}

.channel-info {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.channel-name {
    color: #e4e6eb;
    font-size: 0.95rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.channel-group {
    color: #8A2BE2;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

.empty-state {
    padding: 30px 20px !important;
    text-align: center;
    color: #b0b3b8;
    cursor: default !important;
    display: block !important;
}

.empty-state span {
    font-size: 0.8rem;
    opacity: 0.7;
    display: block;
    margin-top: 10px;
}

.player-main {
    flex: 1;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: opacity 0.3s ease;
}

.player-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.overlay-content {
    max-width: 400px;
}

.play-icon-large {
    font-size: 4rem;
    color: #8A2BE2;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.4));
}

@media (max-width: 900px) {
    .player-container {
        flex-direction: column;
        height: auto;
    }
    .player-sidebar {
        width: 100%;
        height: 350px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .player-main {
        height: 300px;
    }
}

/* --- Paywall Overlay --- */
.paywall-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 50;
}

.paywall-content {
    background: #111218;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(138, 43, 226, 0.3);
    max-width: 400px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8), 0 0 40px rgba(138, 43, 226, 0.15) inset;
}

.paywall-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.paywall-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
}

.paywall-content p {
    color: #b0b3b8;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 25px;
}

.paywall-content .cta-button {
    font-size: 1rem;
    padding: 12px 20px;
    width: 100%;
}

/* --- SeÃ§Ã£o de Recursos (Features / CatÃ¡logo) --- */
.features-section {
    padding: 100px 0;
    background: radial-gradient(circle at top left, rgba(0, 255, 204, 0.05) 0%, transparent 40%), radial-gradient(circle at bottom right, rgba(138, 43, 226, 0.05) 0%, #050508 60%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(30, 30, 40, 0.8), rgba(15, 15, 20, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(138, 43, 226, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(138, 43, 226, 0.2);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(138, 43, 226, 0.5));
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- SeÃ§Ã£o de FAQ (Perguntas Frequentes) --- */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(0deg, rgba(15, 15, 20, 0.8) 0%, #030305 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: linear-gradient(90deg, rgba(30, 30, 40, 0.6), rgba(15, 15, 20, 0.8));
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(138, 43, 226, 0.8);
    box-shadow: 0 5px 20px rgba(138, 43, 226, 0.15);
}

.faq-question {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(138, 43, 226, 0.1);
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #8a2be2;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #00ffcc;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px 25px;
    max-height: 300px;
    opacity: 1;
}

/* --- SeÃ§Ã£o Final CTA --- */
.final-cta-section {
    padding: 120px 0;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.15) 0%, #050508 70%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 30px;
    padding: 60px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(138, 43, 226, 0.1);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, #00ffcc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.final-cta-section .cta-button {
    font-size: 1.2rem;
    padding: 20px 50px;
}

/* AnimaÃ§Ã£o extra para o botÃ£o do CTA final */
.pulse-button {
    animation: btnGradient 4s ease infinite, pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(138, 43, 226, 0); }
    100% { box-shadow: 0 0 0 0 rgba(138, 43, 226, 0); }
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.security-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .security-badges {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}

/* --- RodapÃ© (Footer) --- */
.site-footer {
    background-color: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.copyright {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.disclaimer {
    color: #555;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* --- Navbar (Menu Superior) --- */
.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-navbar.scrolled {
    background: rgba(3, 3, 5, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.site-navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-navbar .logo-icon {
    font-size: 2rem;
}

.site-navbar .logo-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #fff;
}

.site-navbar .logo-text strong {
    font-weight: 900;
    color: #8a2be2;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00ffcc;
}

.nav-contact {
    background: linear-gradient(90deg, #ff007f, #8a2be2);
    padding: 10px 25px;
    border-radius: 30px;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nav-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.6);
}

.mobile-menu-btn {
    display: none;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #050508;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-contact {
        width: 100%;
        text-align: center;
    }
}

/* --- SeÃ§Ã£o Sobre NÃ³s --- */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #030305 0%, rgba(138, 43, 226, 0.08) 50%, #030305 100%);
    position: relative;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.about-text h2 strong {
    color: #00ffcc;
}

.about-text p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.stat-item {
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(138, 43, 226, 0.3);
    padding: 20px 40px;
    border-radius: 20px;
    color: #aaa;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 900;
}

/* --- SeÃ§Ã£o InstalaÃ§Ãµes --- */
.install-section {
    padding: 100px 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 255, 204, 0.08) 0%, #030305 60%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.install-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-card {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(138, 43, 226, 0.2);
    border-radius: 20px;
    padding: 50px 30px 40px;
    text-align: center;
    width: 320px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 204, 0.5);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8a2be2, #00ffcc);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 255, 204, 0.4);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.step-card h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

.compatible-devices {
    margin-top: 80px;
    text-align: center;
}

.devices-title {
    color: #888;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.devices-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.device-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.device-badge:hover {
    background: rgba(138, 43, 226, 0.2);
    border-color: rgba(138, 43, 226, 0.5);
    color: #fff;
}

/* --- PÃ¡gina de Tutoriais --- */
.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
    padding-bottom: 50px;
}

.tutorial-card {
    background: rgba(15, 15, 20, 0.6);
    border: 1px solid rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.tutorial-card:hover {
    transform: translateY(-5px);
    border-color: #00ffcc;
    box-shadow: 0 10px 30px rgba(0, 255, 204, 0.1);
}

.tutorial-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 25px 25px 15px 25px;
    margin: 0;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.video-container {
    position: relative;
    width: 100%;
    background: #000;
}

/* Container especÃ­fico para Shorts (formato vertical 9:16) */
.shorts-container {
    padding-bottom: 177.77%; /* 16:9 invertido */
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.tutorial-info {
    padding: 25px;
    background: rgba(10, 10, 15, 0.8);
    flex-grow: 1;
}

.tutorial-info p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Lista Minimalista de Tutoriais --- */
.tutorials-minimal-list {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.tutorial-category {
    margin-bottom: 30px;
}

.category-title {
    color: #8a2be2;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(138, 43, 226, 0.3);
    padding-bottom: 10px;
}

.tutorial-item {
    display: flex;
    align-items: center;
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tutorial-item:hover {
    background: rgba(138, 43, 226, 0.1);
    border-color: rgba(138, 43, 226, 0.5);
    transform: translateX(5px);
}

.tutorial-icon {
    font-size: 1.2rem;
    margin-right: 15px;
}

.tutorial-name {
    flex-grow: 1;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
}

.tutorial-arrow {
    color: #888;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.tutorial-item:hover .tutorial-arrow {
    color: #00ffcc;
}

/* --- Modal do Reprodutor de VÃ­deo --- */
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.video-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: #111;
    border: 1px solid rgba(138, 43, 226, 0.5);
    border-radius: 15px;
    width: 90%;
    max-width: 450px; /* Mais estreito para Shorts, pode ser 800px para vÃ­deos normais */
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.close-modal {
    color: #aaa;
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #fff;
}

.modal-content h3 {
    color: #fff;
    margin: 0;
    padding: 15px 40px 15px 20px;
    font-size: 1.1rem;
    background: rgba(20, 20, 25, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-video-wrapper {
    position: relative;
    width: 100%;
    background: #000;
}

.modal-video-wrapper.shorts-mode {
    padding-bottom: 177.77%; /* Formato vertical 9:16 */
}

.modal-video-wrapper.horizontal-mode {
    padding-bottom: 56.25%; /* Formato horizontal 16:9 */
}

.modal-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* --- Grade Minimalista de Tutoriais (Quadradinhos) --- */
.tutorials-minimal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.tutorial-grid-item {
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.tutorial-grid-item:hover {
    transform: translateY(-5px);
    border-color: rgba(138, 43, 226, 0.6);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.2);
}

.tutorial-thumb {
    position: relative;
    width: 100%;
    height: 160px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tutorial-grid-item:hover .thumb-img {
    opacity: 1;
    transform: scale(1.1);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: rgba(138, 43, 226, 0.8);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tutorial-grid-item:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.tutorial-details {
    padding: 20px;
    text-align: center;
}

.tutorial-details .tutorial-name {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 600;
}

/* --- ForÃ§ando Layout Horizontal para os Tutoriais --- */

/* --- Seção: Aplicativos Mais Utilizados --- */
.top-apps-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.apps-menu-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.apps-horizontal-menu {
    display: flex;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    max-width: 100%;
}

/* Esconde barra de rolagem no menu se tiver muitos itens */
.apps-horizontal-menu::-webkit-scrollbar {
    display: none;
}
.apps-horizontal-menu {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.app-tab {
    padding: 12px 25px;
    background: rgba(15, 15, 20, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    color: #ccc;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.app-tab:hover {
    background: rgba(138, 43, 226, 0.2);
    color: #fff;
    border-color: rgba(138, 43, 226, 0.5);
}

.app-tab.active {
    background: linear-gradient(90deg, #ff007f, #8a2be2);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(138, 43, 226, 0.4);
}

.app-content-area {
    margin-top: 40px;
    background: rgba(15, 15, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waiting-text {
    color: #888;
    font-size: 1.1rem;
    font-style: italic;
    text-align: center;
}
