:root {
    --primary-color: #6c5ce7;
    --dark-bg: #1a1a1a;
    --dark-secondary: #2d2d2d;
  }
  
  body {
    background-color: var(--dark-bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    font-family: "Agdasima", sans-serif;
  }
  
  .container {
    text-align: center;
  }
  
  .logo-container {
    margin-bottom: 3rem;
    position: relative;
  }
  
  .game-logo {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  /* Animação do Logo */
  .tic-tac-toe-logo {
    width: 200px;
    height: 200px;
    position: relative;
    margin-bottom: 2rem;
  }
  
  .logo-line {
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-linecap: round;
    fill: none;
    animation: drawLine 2s infinite alternate ease-in-out;
  }
  
  @keyframes drawLine {
    from {
      stroke-dasharray: 0 1000;
    }
    to {
      stroke-dasharray: 1000 0;
    }
  }
  
  .play-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 15px 60px;
    font-size: 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .play-button:hover {
    transform: scale(1.05);
    background: #8075e5;
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.4);
  }
  
  .play-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
      45deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
  }
  
  @keyframes shine {
    0% {
      left: -50%;
    }
    100% {
      left: 100%;
    }
  }
  
  .title {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: bold;
    background: linear-gradient(45deg, var(--primary-color), #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  .agdasima-regular {
    font-family: "Agdasima", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .agdasima-bold {
    font-family: "Agdasima", sans-serif;
    font-weight: 700;
    font-style: normal;
  }