.jogos-section {
    background: #0a0818;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.jogos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(69, 39, 160, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(245, 166, 35, 0.15) 0%, transparent 40%);
    z-index: 0;
}

.jogos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #fff;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title span {
    color: #f5a623;
    position: relative;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, transparent);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.sci-fi-card {
    background: linear-gradient(145deg, #15122b, #1e183f);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(245, 166, 35, 0.1);
}

.sci-fi-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(245, 166, 35, 0.2);
}

.card-glare {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0.03) 51%,
        rgba(255, 255, 255, 0.08) 58%,
        rgba(255, 255, 255, 0.03) 65%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: rotate(30deg);
    pointer-events: none;
}

.card-holographic {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #9c4dff, #f5a623);
    background-size: 200% 100%;
    animation: holographic 3s linear infinite;
}

@keyframes holographic {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.game-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-bottom: 2px solid rgba(245, 166, 35, 0.2);
}

.card-content {
    padding: 20px;
    position: relative;
}

.game-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.game-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #f5a623;
}

.tech-lines {
    height: 2px;
    background: linear-gradient(90deg, #f5a623, transparent);
    margin: 15px 0;
    opacity: 0.5;
}

.game-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.game-tag {
    background: rgba(245, 166, 35, 0.15);
    color: #f5a623;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Seção de Processos */
.processos-container {
    background: rgba(15, 12, 41, 0.6);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(245, 166, 35, 0.1);
    backdrop-filter: blur(10px);
}

.processos-title {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 30px;
    text-align: center;
}

.processos-title span {
    color: #f5a623;
}

.processo-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.processo-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.processo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(145deg, #f5a623, #e6951a);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.processo-item h4 {
    color: #f5a623;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.processo-item p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Responsividade */
@media (max-width: 992px) {
    .games-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .processos-container {
        padding: 30px 20px;
    }
}