* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html, body {
    background-color: #010204; 
    color: #ffffff;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden; 
}

/* --- ORBS E ONDAS --- */
.background-container { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; overflow: hidden; z-index: 0; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.6; }
.orb-1 { width: 600px; height: 600px; background: #081635; top: -10%; left: -10%; animation: floatOrb1 15s infinite alternate ease-in-out; }
.orb-2 { width: 700px; height: 700px; background: #050d24; bottom: -15%; right: -15%; animation: floatOrb2 18s infinite alternate ease-in-out; }

@keyframes floatOrb1 { 0% { transform: translate(0, 0); } 100% { transform: translate(10vw, 10vh); } }
@keyframes floatOrb2 { 0% { transform: translate(0, 0); } 100% { transform: translate(-10vw, -10vh); } }

.wave-mesh {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q 25 40, 50 20 T 100 20' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 100px 40px; animation: moveWaves 5s linear infinite;
}
@keyframes moveWaves { 0% { background-position: 0 0; } 100% { background-position: 100px 0; } }

/* --- LOGO TELA 1 --- */
.logo-container-big { width: 100%; display: flex; justify-content: center; padding-top: 15vh; position: relative; z-index: 10; }
.logo-container-big svg { width: 250px; }

/* --- LOGO TELA 2 (CRAVADA NO CANTO SUPERIOR ESQUERDO DA TELA) --- */
.logo-container-small {
    position: fixed; /* Isso trava a logo na janela do PC, ignorando as caixas de anúncio */
    top: 30px;
    left: 40px;
    z-index: 100;
}
.logo-container-small svg { width: 120px; }

/* --- TELA 1 (BUSCA) --- */
.container { width: 100%; max-width: 900px; margin: 30px auto 50px auto; padding: 20px; text-align: center; z-index: 2; position: relative; }
.subtitle { font-size: 1.1rem; font-weight: 600; margin-bottom: 40px; color: #e0e0e0; }

.search-wrapper { display: flex; background-color: #ffffff; border-radius: 50px; padding: 5px; max-width: 650px; margin: 0 auto 50px auto; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); }
.search-wrapper input { flex: 1; border: none; background: transparent; padding: 15px 25px; font-size: 1rem; color: #333; outline: none; }
.search-wrapper button { background-color: #ced4da; color: #333; border: none; padding: 12px 30px; border-radius: 40px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: 0.3s; }
.search-wrapper button:hover { background-color: #adb5bd; }

.features-box { text-align: center; }
.features-intro { font-size: 1rem; font-weight: 600; margin-bottom: 25px; line-height: 1.5; }
.features-list { list-style: none; text-align: left; display: inline-block; }
.features-list li { font-size: 0.95rem; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }

/* --- TELA 2 (DASHBOARD) --- */
.hidden { display: none !important; }

.layout-with-ads {
    display: flex; justify-content: center; align-items: flex-start; gap: 30px;
    width: 100%; max-width: 1200px; margin: 100px auto 40px auto; 
    padding: 20px; z-index: 2; position: relative;
}

.ad-sidebar { width: 160px; background-color: rgba(255, 255, 255, 0.03); border-radius: 10px; min-height: 600px; display: flex; justify-content: center; align-items: center; border: 1px dashed rgba(255, 255, 255, 0.1); }
.ad-placeholder { color: rgba(255, 255, 255, 0.3); font-size: 0.8rem; text-align: center; }

.dashboard-content { flex: 1; max-width: 800px; min-width: 300px; background-color: rgba(255, 255, 255, 0.05); padding: 40px; border-radius: 15px; border: 1px solid rgba(255, 255, 255, 0.1); }

.post-header { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; background-color: rgba(0, 0, 0, 0.2); padding: 20px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05); }
.post-thumbnail { width: 100px; height: 100px; background-color: rgba(255, 255, 255, 0.1); border-radius: 10px; display: flex; justify-content: center; align-items: center; font-size: 2rem; overflow: hidden; flex-shrink: 0; }
.post-thumbnail img { width: 100%; height: 100%; object-fit: cover; }
.post-info { text-align: left; flex: 1; overflow: hidden; }
.post-info h3 { font-size: 1.4rem; margin-bottom: 5px; }
.post-link-display { font-size: 0.9rem; color: #adb5bd; margin-bottom: 10px; word-break: break-all; }
.post-description { font-size: 0.9rem; color: #ced4da; line-height: 1.4; }

.action-buttons-grid { display: flex; flex-direction: column; gap: 15px; }
.action-btn { width: 100%; background-color: rgba(255, 255, 255, 0.08); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.15); padding: 16px 20px; font-size: 1rem; font-weight: 600; border-radius: 8px; cursor: pointer; transition: all 0.3s ease; text-align: left; }
.action-btn:hover { background-color: #ffffff; color: #010204; transform: translateX(5px); }
.action-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-danger { margin-top: 15px; background-color: rgba(255, 50, 50, 0.1); color: #ff6b6b; border: 1px solid rgba(255, 50, 50, 0.2); text-align: center; }
.btn-danger:hover { background-color: #ff6b6b; color: #ffffff; transform: none; }

/* --- RESPONSIVIDADE (MOBILE INALTERADO, COMO VOCÊ PEDIU) --- */
@media (max-width: 800px) {
    .logo-container-small { position: relative; top: 0; left: 0; width: 100%; display: flex; justify-content: center; padding-top: 20px; }
    
    .layout-with-ads { flex-direction: column; align-items: center; margin-top: 20px; }
    
    .container { margin-top: 30px; }
    .search-wrapper { flex-direction: column; background: transparent; box-shadow: none; gap: 10px; padding: 0; }
    .search-wrapper input { background: #fff; border-radius: 50px; text-align: center; padding: 18px; }
    .search-wrapper button { padding: 18px; }
    
    .ad-sidebar { width: 100%; min-height: 100px; }
    .dashboard-content { width: 100%; padding: 20px; }
    .post-header { flex-direction: column; text-align: center; }
    .post-info { text-align: center; }
}