* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Arial", sans-serif;
    background: #000;
    overflow: hidden;
    height: 100vh;
    width: 100vw;
  }
  
  /* iPhone 14 dimensions: 393 x 852 */
  .container {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
  }
  
  .logo {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 100;
    background-image: url("../sprites/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }

  .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }
  
  .character-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }
  

  .character {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scaleX(-1) translate(20px, -5%)
  }
  
  
  .character-sprite {
    width: 80%;
    height: auto;
    object-fit: contain;
  }

  /* Evil aura effect - purple smoke-like aura */
  .character[data-aura="evil"] .character-sprite {
    filter: drop-shadow(0 0 20px rgba(147, 0, 211, 0.8)) 
            drop-shadow(0 0 40px rgba(147, 0, 211, 0.6))
            drop-shadow(0 0 60px rgba(147, 0, 211, 0.4));
  }

  .character[data-aura="evil"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, 
                rgba(147, 0, 211, 0.3) 0%, 
                rgba(147, 0, 211, 0.2) 30%, 
                rgba(147, 0, 211, 0.1) 60%, 
                transparent 80%);
    border-radius: 50%;
    animation: evilAura 3s ease-in-out infinite;
    z-index: -1;
  }

  .character[data-aura="evil"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, 
                rgba(147, 0, 211, 0.2) 0%, 
                rgba(147, 0, 211, 0.1) 40%, 
                rgba(147, 0, 211, 0.05) 70%, 
                transparent 90%);
    border-radius: 50%;
    animation: evilAura 4s ease-in-out infinite reverse;
    z-index: -2;
  }

  @keyframes evilAura {
    0%, 100% {
      opacity: 0.7;
      transform: translate(-50%, -50%) scale(1);
    }
    50% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1.1);
    }
  }
  
  .conversation-box {
    position: fixed;
    bottom: 2%;
    left: 0;
    right: 0;
    height: 30%;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid white;
    border-bottom: 3px solid white;
    z-index: 3;
    padding: 20px;
    display: flex;
    flex-direction: column;
  }

  .speaker-name {
    color: white;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
  }

  .speaker-name.pchan {
    color: #f9e276;
  }
  .speaker-name.pikachu {
    color: #F6C747;
  }
  .speaker-name.vaporeon {
    color: #4FB9E9;
  }
  .speaker-name.caterpie {
    color: #91C842;
  }
  .speaker-name.cubone {
    color: #C3A46F;
  }
  
  .speaker-name.charmander {
    color: #F7782C;
  }
  .speaker-name.jolteon {
    color: #F8D030;
  }
  .speaker-name.lapras {
    color: #6390F0;
  }
  .speaker-name.rattata {
    color: #A13989;
  }
  
  .speaker-name.bulbasaur {
    color: #78C850;
  }
  .speaker-name.flareon {
    color: #F08030;
  }
  .speaker-name.pichu {
    color: #FDE84D;
  }
  .speaker-name.charizard {
    color: #FF9C54;
  }
  
  .speaker-name.squirtle {
    color: #5AC8FA;
  }
  .speaker-name.eevee {
    color: #C28C55;
  }
  .speaker-name.growlithe {
    color: #F5AC78;
  }
  .speaker-name.psyduck {
    color: #F4D23C;
  }
  .speaker-name.narrador {
    color: #FFFFFF;
  }
  
  .conversation-text{
    color: white;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
    overflow-y: auto;
    margin-bottom: 15px;
  }

  .answers-container {
    display: flex;
    flex-direction: column;
    margin-top: 15px;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 10px;
  }

  .answers-container.fade-in {
    opacity: 0;
    animation: fadeIn 0.5s ease-in forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .answer-button {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
  }

  .answer-button:hover {
    background: #2980b9;
    transform: translateX(5px);
  }

  .answer-button:active {
    transform: scale(0.95);
  }
  
  .next-button {
    align-self: flex-end;
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .next-button:hover {
    background: #c0392b;
  }
  
  .next-button:disabled {
    background: #7f8c8d;
    cursor: not-allowed;
  }
  
  .typing-indicator {
    display: inline-block;
    animation: blink 1s infinite;
  }

  .key-container {
    display: block;
    transition: all 1s;
    position: absolute;
    transform: translate(60px, -30px) rotate(-15deg) scale(0);
  }
  
  @keyframes blink {
    0%,
    50% {
      opacity: 1;
    }
    51%,
    100% {
      opacity: 0;
    }
  }
  