/* CSS Simplificado para Teste */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', monospace;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #00ff41;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Efeito de scanlines sutil */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 65, 0.02) 2px,
        rgba(0, 255, 65, 0.02) 4px
    );
    pointer-events: none;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: rgba(0, 0, 0, 0.8);
    border-bottom: 2px solid #00ff41;
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pixel-text {
    font-family: 'Press Start 2P', monospace;
    font-size: 2rem;
    color: #00ff41;
    text-shadow: 0 0 10px #00ff41;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px #00ff41, 0 0 10px #00ff41;
    }
    to {
        text-shadow: 0 0 10px #00ff41, 0 0 20px #00ff41, 0 0 30px #00ff41;
    }
}

.subtitle {
    font-size: 0.8rem;
    color: #00ccff;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.power-button {
    width: 60px;
    height: 60px;
    border: 3px solid #00ff41;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.power-led {
    width: 20px;
    height: 20px;
    background: #00ff41;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff41;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.power-button:hover {
    box-shadow: 0 0 20px #00ff41;
    transform: scale(1.1);
}

/* Main Content */
.main-content {
    padding: 40px 0;
}

.intro-section {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-family: 'Press Start 2P', monospace;
    font-size: 1.5rem;
    color: #00ccff;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search Bar */
.search-bar {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 10px;
}

.search-input {
    width: 300px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #00ff41;
    border-radius: 25px;
    color: #00ff41;
    font-family: 'Orbitron', monospace;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
    border-color: #00ccff;
}

.search-input::placeholder {
    color: rgba(0, 255, 65, 0.6);
}

.search-btn {
    padding: 12px 20px;
    background: linear-gradient(45deg, #00ff41, #00ccff);
    border: none;
    border-radius: 25px;
    color: #000;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0, 255, 65, 0.5);
}

/* Emulators Grid */
.emulators-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Emulator Cards */
.emulator-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 46, 0.8) 100%);
    border: 2px solid #00ff41;
    border-radius: 15px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.emulator-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.3);
    border-color: #00ccff;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.card-header h3 {
    font-family: 'Press Start 2P', monospace;
    font-size: 0.9rem;
    color: #00ff41;
}

.year {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: #000;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: bold;
}

.console-icon {
    font-size: 3rem;
    text-align: center;
    margin: 15px 0;
}

.description {
    color: #cccccc;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 20px;
    text-align: center;
}

.play-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #00ff41, #00ccff);
    border: none;
    border-radius: 25px;
    color: #000;
    font-family: 'Press Start 2P', monospace;
    font-size: 0.7rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.play-btn:hover {
    background: linear-gradient(45deg, #00ccff, #00ff41);
    transform: scale(1.05);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 2px solid #00ff41;
    padding: 30px 0;
    margin-top: 60px;
}

.footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer p {
    color: #00ff41;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #00ccff;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #00ff41;
}

/* Responsive */
@media (max-width: 768px) {
    .pixel-text {
        font-size: 1.5rem;
    }
    
    .emulators-grid {
        grid-template-columns: 1fr;
    }
    
    .search-input {
        width: 250px;
    }
    
    .footer .container {
        flex-direction: column;
        text-align: center;
    }
}
