/* General Variables and Resets */
:root {
    --primary-color: #1e1e2f; /* Dark Navy */
    --secondary-color: #f4f4f8; /* Light Gray */
    --accent-color: #e74c3c; /* Warm Red */
    --shadow-color: rgba(0, 0, 0, 0.5);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Cinzel Decorative', serif;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--secondary-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    overflow: hidden;
  }
  
  /* Header */
  header {
    margin-bottom: 2rem;
  }
  
  header h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  header p {
    font-size: 1rem;
    margin-top: 0.5rem;
    color: var(--secondary-color);
    opacity: 0.8;
  }
  
  /* Cube Container */
  .cube-container {
    perspective: 1000px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
  }
  
  /* Cube */
  .cube {
    position: absolute;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-in-out;
    align-items: center;
  }
  
  .cube:hover {
    cursor: pointer;
  }
  
  .face {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    border: 10px solid var(--secondary-color);
    box-shadow: 0 10px 20px var(--shadow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
  }
  
  .face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50px;
  }
