/* Styles pour les tests de consoles */
.test-console-container {
    background: #1a1a1a;
    color: #e0e0e0;
    font-family: "Quicksand", sans-serif;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.test-console-header {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.test-console-cover {
    flex: 0 0 300px;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.test-console-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.test-console-info {
    flex: 1;
    min-width: 300px;
}

.test-console-title {
    font-family: "Orbitron", sans-serif;
    font-size: 2.5rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5), 0 0 10px rgba(0, 255, 255, 0.3), 0 0 15px rgba(0, 255, 255, 0.2);
}

.test-console-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.test-console-meta-item {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid #00ffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    color: #00ffff;
    display: inline-flex;
    align-items: center;
}

.test-console-meta-item svg {
    margin-right: 5px;
    width: 16px;
    height: 16px;
}

.test-console-description {
    margin-bottom: 30px;
    line-height: 1.6;
}

.test-console-note-container {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5), 0 0 20px rgba(0, 255, 255, 0.3);
    text-align: center;
}

.test-console-note-title {
    font-family: "Orbitron", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5), 0 0 10px rgba(0, 255, 255, 0.3);
}

.test-console-note {
    font-size: 4rem;
    font-weight: bold;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8), 0 0 20px rgba(0, 255, 255, 0.5), 0 0 30px rgba(0, 255, 255, 0.3);
}

.test-console-note-text {
    font-size: 1.2rem;
    margin-top: 10px;
    color: #e0e0e0;
}

.test-console-content {
    margin-bottom: 40px;
    line-height: 1.8;
}

.test-console-content h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.8rem;
    color: #e0e0e0;
    margin: 30px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.test-console-content h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 1.4rem;
    color: #e0e0e0;
    margin: 25px 0 15px;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.test-console-content p {
    margin-bottom: 20px;
}

.test-console-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.test-console-content a {
    color: #00ffff;
    text-decoration: none;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.test-console-content a:hover {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

/* Section Specs techniques */
.test-console-specs {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid #00ffff;
    border-radius: 10px;
    padding: 20px;
    margin: 30px 0;
}

.test-console-specs-title {
    font-family: "Orbitron", sans-serif;
    font-size: 1.8rem;
    color: #00ffff;
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
}

.test-console-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
}

.test-console-spec-item {
    margin-bottom: 10px;
}

.test-console-spec-label {
    font-weight: bold;
    color: #00ffff;
    margin-bottom: 5px;
    display: block;
}

.test-console-spec-value {
    color: #e0e0e0;
}

/* Section jeux liés */
.test-console-related-games {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #00ffff;
}

.test-console-related-games-title {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 30px;
    text-align: center;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5), 0 0 10px rgba(0, 255, 255, 0.3);
}

.test-console-games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.test-console-game-card {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #00ffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.test-console-game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.test-console-game-image {
    height: 160px;
    overflow: hidden;
}

.test-console-game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.test-console-game-card:hover .test-console-game-image img {
    transform: scale(1.05);
}

.test-console-game-info {
    padding: 15px;
}

.test-console-game-title {
    font-family: "Orbitron", sans-serif;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #00ffff;
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.3);
}

.test-console-game-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #999;
}

.test-console-game-note {
    color: #00ffff;
    font-weight: bold;
}

/* Fil d'ariane */
.test-console-breadcrumb {
    width: 100%;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    font-family: "Quicksand", sans-serif;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.test-console-breadcrumb-inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(13, 17, 23, 0.7);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 30px;
    padding: 12px 28px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6), 0 0 15px rgba(0, 255, 255, 0.2);
    width: auto;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.test-console-breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e0e0e0;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.test-console-breadcrumb-item:not(.current):hover {
    background: rgba(0, 255, 255, 0.15);
    color: #00ffff;
    transform: translateY(-2px);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.4), 0 0 10px rgba(0, 255, 255, 0.3);
}

.test-console-breadcrumb-item.current {
    color: #00ffff;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    background: rgba(0, 255, 255, 0.1);
    border-radius: 20px;
    padding: 6px 12px;
    position: relative;
}

.test-console-breadcrumb-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 2px;
}

.test-console-breadcrumb-separator svg {
    width: 14px;
    height: 14px;
    stroke: rgba(0, 255, 255, 0.6);
    filter: drop-shadow(0 0 3px rgba(0, 255, 255, 0.3));
}

/* Responsive */
@media (max-width: 768px) {
    .test-console-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .test-console-cover {
        flex: 0 0 250px;
        height: 250px;
    }
    
    .test-console-meta {
        justify-content: center;
    }
    
    .test-console-specs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .test-console-games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .test-console-breadcrumb-inner {
        width: 95%;
    }
}

@media (max-width: 576px) {
    .test-console-games-grid {
        grid-template-columns: 1fr;
    }
    
    .test-console-breadcrumb-item span {
        max-width: 120px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}