@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
.player {
  display: flex;
  align-items: center;
  gap: 1em;
}

.black-card {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 10;
  width: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  color: white;
  text-align: center;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  border: none;
  color: white;
  background: #2563eb;
}
.button:hover {
  transform: scale(1.05);
  background: #1d4ed8;
}
.button--danger {
  background: #dc2626;
  color: white;
}
.button--danger:hover {
  background: var(--card-red);
}
.button--success {
  background: var(--text-green);
  color: white;
}
.button--success:hover {
  background: #16a34a;
}
.button--small {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  gap: 0.25rem;
}
.button--small svg {
  width: 1.25rem;
  height: 1.25rem;
}
.button--medium {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}
.button--medium svg {
  width: 1.5rem;
  height: 1.5rem;
}
.button--large {
  padding: 1rem 2rem;
  font-size: 1.25rem;
}
.button--large svg {
  width: 1.75rem;
  height: 1.75rem;
}

.card-colors {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
}
.card-colors svg {
  width: 2rem;
  height: 2rem;
}

.floating-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.floating-background > * {
  position: absolute;
  width: 6rem;
  height: 6rem;
  opacity: 0.2;
}
.floating-background .spade {
  top: 2.5rem;
  left: 15%;
}
.floating-background .heart {
  top: 5rem;
  right: 25%;
}
.floating-background .diamond {
  bottom: 5rem;
  left: 20%;
}
.floating-background .club {
  bottom: 10rem;
  right: 15%;
}

.animate-float-slow {
  animation: float-slow 8s ease-in-out infinite;
}

.animate-float-medium {
  animation: float-medium 6s ease-in-out infinite;
}

.animate-float-fast {
  animation: float-fast 4s ease-in-out infinite;
}

@keyframes float-slow {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(10px, -10px) rotate(5deg);
  }
  50% {
    transform: translate(-5px, -20px) rotate(-5deg);
  }
  75% {
    transform: translate(-10px, -10px) rotate(5deg);
  }
}
@keyframes float-medium {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(15px, -15px) rotate(10deg);
  }
  66% {
    transform: translate(-15px, -25px) rotate(-10deg);
  }
}
@keyframes float-fast {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, -20px) rotate(15deg);
  }
}
.alert {
  color: var(--text-red);
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 0.5rem;
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
}
.alert svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-red);
  flex: none;
}

.home {
  min-height: 100vh;
  padding-top: 10rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  position: relative;
  overflow: hidden;
}
.home .black-card {
  padding: 3rem;
  gap: 2rem;
  max-width: 56rem;
}
.home .black-card h1 {
  font-size: 3.75rem;
  text-align: center;
  font-weight: 600;
}
.home .black-card p {
  color: var(--text-gray);
  font-size: 1.25rem;
  line-height: 1.625;
}
.home .table {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 56rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  color: white;
  text-align: center;
}
.home .table .table-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
}
.home .table .table-title h2 {
  font-size: 1.5rem;
  font-weight: 600;
}
.home .table .table-title svg {
  width: 1.5rem;
  height: 1.5rem;
}
.home .table table {
  overflow: hidden;
  width: 100%;
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}
.home .table table th, .home .table table td {
  padding: 0.75rem 1rem;
  text-align: left;
}
.home .table table thead tr {
  border-color: rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.home .table table thead tr th {
  color: #9ca3af;
}

.create {
  text-align: center;
  padding: 2rem 0;
  min-height: 100vh;
  backdrop-filter: blur(4px);
}
.create__header {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}
.create__header h1 {
  font-size: 3.75rem;
  text-align: center;
  font-weight: 600;
  color: #fff;
}
.create__header p {
  color: var(--text-gray);
  font-size: 1.25rem;
  line-height: 1.625;
}
.create .description {
  display: flex;
  justify-content: center;
  align-items: center;
}
.create .description__list {
  margin-top: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.create .description__before {
  content: "";
  border: 1px solid var(--card-red);
  border-radius: 1rem;
  height: 25rem;
  width: 18rem;
  background: #fafafa;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 0.2s ease-in-out;
}
.create .description__container {
  border: 1px solid var(--card-red);
  border-radius: 1rem;
  height: 25rem;
  width: 18rem;
  background: #fff;
  cursor: pointer;
  position: relative;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
}
.create .description__container:hover .description__before {
  transform: rotate(-8deg) translateX(-1rem);
}
.create .description__card {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.create .description__card p {
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 1rem;
  padding: 0.5rem 1.5rem;
  text-align: center;
}

.waiting {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100vh;
  background-color: #f5f5f5;
  font-size: 1.6rem;
  color: #333;
}
.waiting__header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem auto;
  max-width: 56rem;
}
.waiting #player-join {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  max-width: 56rem;
  margin: 0 auto;
  padding: 1.5rem;
  color: #fff;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.8);
}
.waiting .spinner {
  width: 3em;
  height: 3em;
  border: 0.5em solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.purchase {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
  padding-top: 100px;
}
.purchase #purchase-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
  max-width: 30rem;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background: white;
}
.purchase #purchase-form ul {
  list-style: none;
  margin-bottom: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.purchase #purchase-form ul li {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.purchase #purchase-form ul li select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login {
  min-height: 100vh;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.login .black-card {
  gap: 1.5rem;
  max-width: 28rem;
  text-align: left;
}
.login .black-card h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: 600;
}
.login .black-card form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.login .black-card .form-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.login .black-card .form-section label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-gray);
}
.login .black-card .form-section .input-group {
  position: relative;
}
.login .black-card .form-section .input-group svg {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--text-gray-accent);
  transform: translateY(-50%);
}
.login .black-card .form-section .input-group input {
  color: var(--text-gray);
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.5);
  border-color: transparent;
  font-size: 1rem;
}
.login .black-card .form-section .input-group input:focus {
  outline: 2px solid var(--text-green);
  outline-offset: 1px;
}
.login .black-card .form-section .input-group input::placeholder {
  color: var(--text-gray-accent);
}

@layer globals,components,utilities;
@layer utilities {
  .text-center {
    text-align: center;
  }
  .bg-card-image {
    background-image: url(https://images.unsplash.com/photo-1511193311914-0346f16efe90?auto=format&fit=crop&w=1920);
    background-size: cover;
    background-position: center;
  }
  .bg-money-image {
    background-image: url(https://media1.giphy.com/media/hrQnFqUKTXwSSvH8AI/giphy.gif?cid=6c09b952aomi1pf0yj6yzupwd8odroxid3fxpeofwrs8r3l3&ep=v1_internal_gif_by_id&rid=giphy.gif&ct=s);
    background-size: cover;
    background-position: center;
  }
  .btn {
    display: inline-block;
    padding: 0.5em 1em;
    border: 1px solid #ccc;
    border-radius: 0.25em;
    background-color: #fff;
    color: #333;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
  }
  .links-row {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
}
@layer base {
  :root {
    --text-gray: #d1d5db;
    --text-gray-accent: #9ca3af;
    --text-green: #22c55e;
    --text-green-light: #4ade80;
    --text-red: #ef4444;
    --card-red: #b91c1c;
    --button-blue: #3b82f6;
    --bg-game-card: #026341;
    --bg-green-accent: #16a34a;
    --font: "Inter", sans-serif;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font);
}

/*# sourceMappingURL=app.output.css.map */
