body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
}

.top-bar {
    padding: 25px;
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
}

.banner {
    background: #b30000;
    color: white;
    padding: 25px;
    text-align: center;
    font-size: 34px;
    font-weight: bold;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    margin-bottom: 20px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    padding: 30px 40px;
}

.flip-card {
    width: 100%;
    height: 350px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    background: #111;
    border-left: 8px solid #b30000;
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.flip-card-back {
    transform: rotateY(180deg);
    overflow-y: auto;
}

.driver-photo {
    width: 170px;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.stats {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.5;
}
