/* Reset e Base */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; background: #1a1a1a; color: #ffffff; padding-top: 60px; padding-bottom: 70px; }
:root { --dark-bg: #000; --dark-secondary: #1a1a1a; --dark-tertiary: #2d2d2d; --white: #fff; --gray-light: #ccc; }
/* Botões */
.btn-primary { background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold)); color: var(--dark-bg); /* ... */ }
.btn-secondary { background: transparent; color: var(--accent-green); border: 2px solid var(--accent-green); /* ... */ }
/* Layout Principal */
.main-content-new { max-width: 1200px; margin: 0 auto; padding: 1.5rem; }
/* Cabeçalho Superior */
.top-header { position: fixed; top: 0; left: 0; width: 100%; height: 60px; background: var(--dark-secondary); border-bottom: 1px solid #333; display: flex; align-items: center; justify-content: space-between; padding: 0 1rem; z-index: 1000; }
.hamburger-btn, .close-menu-btn { background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }
.header-logo img { max-height: 40px; }
.header-actions { display: flex; align-items: center; gap: 0.8rem; }
.wallet-box { background: var(--dark-tertiary); padding: 0.4rem 0.8rem; border-radius: 20px; display: flex; align-items: center; gap: 0.5rem; }
.deposit-btn-icon { background: var(--primary-gold); color: var(--dark-bg); border-radius: 50%; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; text-decoration: none; }
.user-menu-btn { background: var(--dark-tertiary); border: 1px solid var(--primary-gold); color: white; border-radius: 50%; width: 30px; height: 30px; cursor: pointer; }
/* Banner Slider */
.banner-container { max-width: 1200px; margin: 1.5rem auto; overflow: hidden; aspect-ratio: 2.5 / 1; border-radius: 15px; position: relative; }
.banner-track { display: flex; height: 100%; transition: transform 0.5s ease-in-out; }
.banner-slide { min-width: 100%; }
.banner-slide img { width: 100%; height: 100%; object-fit: cover; }
/* Navegação Inferior */
.bottom-nav { position: fixed; bottom: 0; left: 0; width: 100%; height: 70px; background: var(--dark-secondary); border-top: 1px solid #333; display: none; justify-content: space-around; align-items: center; z-index: 900; }
@media (max-width: 768px) { .bottom-nav { display: flex; } }
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 0.3rem; color: var(--gray-light); text-decoration: none; font-size: 0.8rem; }
.nav-item i { font-size: 1.5rem; }
.nav-item.deposit-item { transform: translateY(-20px); }
.nav-item.deposit-item i { background: var(--accent-green); color: var(--dark-bg); border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; font-size: 2rem; border: 4px solid var(--dark-bg); }
.nav-item.deposit-item span { font-weight: bold; color: var(--accent-green); }