/* Arcade-specific styles */
.arcade-hero {
    text-align: center;
    padding: 80px 20px 20px;
    background: linear-gradient(135deg, rgba(255, 107, 157, 0.1) 0%, rgba(255, 107, 157, 0.05) 100%);
}

.arcade-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #ff6b9d, #ff8fab);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.arcade-hero p {
    font-size: 1.1rem;
    color: #c9d1d9;
    margin-bottom: 20px;
}

.arcade-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b9d;
    text-shadow: 0 0 15px rgba(255, 107, 157, 0.5);
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: #8b949e;
    margin-top: 0.5rem;
}

.games-section {
    padding: 80px 0;
    background: #0d1117;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.game-card {
    background: linear-gradient(145deg, #161b22 0%, #21262d 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #30363d;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 157, 0.2);
    border-color: #ff6b9d;
}

.game-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #21262d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.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-card:hover .game-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: #ff6b9d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.game-info {
    padding: 2rem;
}

.game-info h3 {
    font-size: 1.8rem;
    color: #ff6b9d;
    margin-bottom: 1rem;
}

.game-info p {
    color: #8b949e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.game-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.feature {
    background: rgba(255, 107, 157, 0.1);
    color: #ff6b9d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 107, 157, 0.2);
}

.feature i {
    margin-right: 0.5rem;
}

.game-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.instructions-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.instruction-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    text-align: center;
}

.instruction-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 107, 157, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 107, 157, 0.3);
}

.instruction-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.instruction-card h3 {
    color: #ff6b9d;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.instruction-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.instruction-card li {
    color: #c9d1d9;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.instruction-card li i {
    color: #ff6b9d;
    width: 20px;
}

.coming-soon-section {
    padding: 80px 0;
    background: #0d1117;
    text-align: center;
}

.coming-soon-content h2 {
    color: #ff6b9d;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.coming-soon-content p {
    color: #8b949e;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.coming-soon-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.coming-soon-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 107, 157, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 107, 157, 0.2);
    min-width: 150px;
}

.coming-soon-features .feature i {
    font-size: 2rem;
    color: #ff6b9d;
}

.coming-soon-features .feature span {
    color: #c9d1d9;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .arcade-hero-content h1 {
        font-size: 2.5rem;
    }

    .arcade-stats {
        gap: 2rem;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .instructions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .coming-soon-features {
        gap: 1.5rem;
    }

    .coming-soon-features .feature {
        min-width: 120px;
        padding: 1.5rem;
    }
}
