body {
    display: flex;
    justify-content: center; 
    align-items: center;
    height: 100vh;
    background: #000;
    font-family: 'Arial', sans-serif;
}

/* CARD CONTAINER */
.card {
    width: 320px;
    height: 190px;
    perspective: 1000px;
}

/* INNER FLIP */
.card-inner {
    width: 100%;
    height:100%; 
    transition: transform 0.7s;
    transform-style: preserve-3d;
}

/* FLIP EFFECT */
.card:hover .card-inner,
.card.flipped .card-inner {
    transform: rotateY(180deg);
}

/* BOTH SIDES */
.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
 
  /* GOLD BORDER GLOW */
  border: 1px solid #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* FRONT */
.card-front {
    background: #000;
    color: #d4af37;
    text-align: center;
}

.card-front h1 {
    margin: 0;
    font-size: 24px;
    letter-spacing: 1px;
}

.role {
    margin: 8px 0;
    font-size: 16px;
}

.tagline {
    font-size: 12px;
    color: #bbb;
}

/* BACK */
.card-back {
    background: #111;
    color: #d4af37;
    transform: rotateY(180deg);
    font-size: 14px;
    line-height: 1.8;
}

