
/* Reset e Variáveis CSS */
:root {
    /* Cores Principais */
    --primary: #6c5ce7;
    --primary-dark: #5b4bcf;
    --secondary: #fd79a8;
    --accent: #00cec9;
    --danger: #ff7675;
    --success: #00b894;
    --warning: #fdcb6e;
    
    /* Cores de Fundo */
    --bg-dark: #0f0f23;
    --bg-darker: #0a0a1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #242444;
    --bg-overlay: rgba(15, 15, 35, 0.95);
    
    /* Cores de Texto */
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
    --text-muted: #8a8aa3;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-darker) 100%);
    --gradient-card: linear-gradient(135deg, var(--bg-card) 0%, #16213e 100%);
    
    /* Bordas e Sombras */
    --border-color: #2d2d5a;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 15px 40px rgba(108, 92, 231, 0.2);
    
    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Container Responsivo */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-sm);
    }
}

/* Tipografia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.highlight {
    color: var(--primary);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header */
.main-header {
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.top-bar {
    background: rgba(10, 10, 26, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.social-top {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--primary);
}

.btn-login {
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-login:hover {
    transform: translateY(-2px);
}

/* Navigation */
.main-nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

/* Desktop Menu */
.desktop-menu {
    flex: 1;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--border-radius-sm);
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: var(--bg-card);
    color: var(--text-primary);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    position: relative;
    padding-right: 2rem !important;
}

.dropdown-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.platforms-dropdown {
    min-width: 700px;
    left: -100px;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.platform-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--bg-card);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.platform-card img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

/* Search */
.nav-search {
    flex: 0 1 400px;
}

.search-wrapper {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 3rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.1);
}

.search-button {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.toggle-bar {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero-banner {
    background: var(--gradient-dark);
    padding: var(--space-xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Platforms Section */
.platforms-section {
    padding: var(--space-xl) 0;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Platforms Grid */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.platform-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.platform-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.platform-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.platform-info {
    flex: 1;
}

.platform-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.platform-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.game-count {
    display: inline-block;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.platform-arrow {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.platform-card:hover .platform-arrow {
    transform: translateX(5px);
    color: var(--primary);
}

/* Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.game-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.game-thumbnail {
    position: relative;
    display: block;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.game-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-thumbnail:hover .game-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.game-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem 0;
}

.category-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.category-tag.gba { background: rgba(0, 184, 148, 0.1); color: var(--success); }
.category-tag.snes { background: rgba(253, 203, 110, 0.1); color: var(--warning); }
.category-tag.n64 { background: rgba(108, 92, 231, 0.1); color: var(--primary); }
.category-tag.psone { background: rgba(0, 206, 201, 0.1); color: var(--accent); }

.game-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.game-info {
    padding: 1rem;
}

.game-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.game-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.game-title a:hover {
    color: var(--primary);
}

.game-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.game-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.game-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-details, .btn-download-game {
    flex: 1;
    padding: 0.5rem;
    text-align: center;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-details {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-details:hover {
    background: var(--bg-card);
}

.btn-download-game {
    background: var(--primary);
    color: white;
}

.btn-download-game:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Popular Games */
.popular-games-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 1.5rem;
}

.popular-game-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
  /*  display: flex;
    gap: 1.5rem; */
    position: relative;
    transition: all 0.3s ease;
}

.popular-game-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.popular-rank {
    flex-shrink: 0;
}

.rank-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.popular-thumb {
    flex-shrink: 0;
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.popular-image {
        width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.popular-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(108, 92, 231, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    font-size: 1.5rem;
}

.popular-thumb:hover .popular-overlay {
    opacity: 1;
}

.popular-info {
    flex: 1;
}

.popular-category {
    margin-bottom: 0.5rem;
}

.category-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(108, 92, 231, 0.1);
    color: var(--primary);
}

.popular-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.popular-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.popular-title a:hover {
    color: var(--primary);
}

.popular-excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.popular-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.popular-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-view, .btn-download-popular {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-view {
    background: var(--bg-card-hover);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-view:hover {
    background: var(--bg-card);
}

.btn-download-popular {
    background: var(--primary);
    color: white;
}

.btn-download-popular:hover {
    background: var(--primary-dark);
}

.trending-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.trending-indicator.hot {
    background: rgba(255, 118, 117, 0.1);
    color: var(--danger);
}

.trending-indicator.warm {
    background: rgba(253, 203, 110, 0.1);
    color: var(--warning);
}

.trending-indicator.cool {
    background: rgba(0, 206, 201, 0.1);
    color: var(--accent);
}

/* Sidebar */
.content-layout {
    padding: var(--space-xl) 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.widget-header {
    padding: 1.5rem;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.widget-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    margin: 0;
}

.widget-subtitle {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 400;
}

.time-filter select {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

/* Top Weekly */
.top-weekly {
    padding: 1rem;
}

@media (max-width: 767px){
        .aside-s-w{
                width: 100%;
            max-width: 385px;

}
}
.top-items{

    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.top-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.top-item:last-child {
    border-bottom: none;
}

.top-item:hover {
    background: var(--bg-card-hover);
}

.top-rank {
    flex-shrink: 0;
}

.top-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--bg-darker);
    color: var(--text-primary);
    border-radius: 50%;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.top-thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.top-thumb1 {
    flex-shrink: 0;
    width: 150px;
    height: 120px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.top-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-info {
    flex: 1;
}

.top-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.top-title a {
    color: var(--text-primary);
    text-decoration: none;
}

.top-title a:hover {
    color: var(--primary);
}

.top-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.top-progress {
    height: 4px;
    background: var(--bg-darker);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.top-trend {
    flex-shrink: 0;
}

.trend-up { color: var(--success); }
.trend-down { color: var(--danger); }
.trend-neutral { color: var(--text-muted); }

/* Newsletter Widget */
.newsletter-widget {
    padding: 1.5rem;
    background: var(--bg-darker);
    border-radius: var(--border-radius);
    margin: 1.5rem;
    text-align: center;
}

.newsletter-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.newsletter-widget h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.newsletter-widget p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.newsletter-form .form-group {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    color: var(--text-primary);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
}

.btn-subscribe {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    padding: 0 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-subscribe:hover {
    background: var(--primary-dark);
}

.form-agree {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Footer */
.main-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding: var(--space-xl) 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
}

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

.footer-brand {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-legal {
    background: rgba(255, 118, 117, 0.05);
    border: 1px solid rgba(255, 118, 117, 0.2);
    border-radius: var(--border-radius);
    padding: 1.5rem;
}

.legal-notice {
    position: relative;
}

.notice-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--danger);
    font-size: 1.5rem;
}

.notice-text {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

/* Footer Middle */
.footer-middle {
    background: var(--bg-card);
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.footer-apps {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-apps {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

.app-buttons {
    display: flex;
    gap: 1rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-darker);
    border-radius: var(--border-radius);
    text-decoration: none;
    color: var(--text-primary);
    transition: transform 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-2px);
}

.app-btn.google-play {
    border: 1px solid #34a853;
}

.app-btn.app-store {
    border: 1px solid #000000;
}

.app-btn i {
    font-size: 1.5rem;
}

.app-btn div {
    display: flex;
    flex-direction: column;
}

.app-btn span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.app-btn strong {
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

.copyright p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links-bottom {
    display: flex;
    gap: 1.5rem;
}

.footer-links-bottom a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: var(--primary);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: calc(2rem - (100vw - 100%));
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 999;
       max-right: 2rem;
}

/* Para dispositivos muito pequenos */
@media (max-width: 480px) {
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 45px;
        height: 45px;
    }
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.3);
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-menu.desktop-menu,
    .nav-search,
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-container {
        gap: 1rem;
    }
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: var(--bg-darker);
    z-index: 10000;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-container.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
}

.mobile-logo img {
    height: 32px;
    width: auto;
}

.mobile-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
}

.mobile-search {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-search form {
    display: flex;
}

.mobile-search input {
    flex: 1;
    padding: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    color: var(--text-primary);
}

.mobile-search button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 1rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
    padding: 1.5rem 0;
}

.mobile-nav > li > a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav > li > a:hover,
.mobile-nav > li > a.active {
    background: var(--bg-card);
    border-left-color: var(--primary);
}

.mobile-nav > li > a i {
    width: 20px;
    text-align: center;
}

.mobile-dropdown .dropdown-toggle {
    justify-content: space-between;
}

.mobile-dropdown .dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown.active .dropdown-content {
    max-height: 500px;
}

.dropdown-content {
    list-style: none;
    background: var(--bg-card);
}

.dropdown-content li a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem 0.75rem 3.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.dropdown-content li a:hover {
    color: var(--primary);
}

.dropdown-content li a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Ad Containers */
.ad-container {
    margin: 2rem 0;
}

.horizontal-ad {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
}

.ad-section {
    padding: 2rem 0;
    background: var(--bg-darker);
    margin: 2rem 0;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.05),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-dark: #0a0a0a;
        --bg-darker: #000000;
        --bg-card: #1a1a1a;
        --text-primary: #ffffff;
        --text-secondary: #cccccc;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .hero-actions,
    .ad-container,
    .ad-section,
    .footer-social,
    .back-to-top {
        display: none !important;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}

.tumb-aside{
    
}


