:root {
  --pink: #FF0B7A;
  --dark-pink: #CC0962;
  --black: #000000;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  background-color: var(--black);
  color: var(--white);
  line-height: 1.6;
}

.shapes {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

.circle, .triangle, .square {
  position: absolute;
  width: 60px;
  height: 60px;
  background-color: #9932CC;
  opacity: 0.15;
  animation: float 10s infinite ease-in-out;
}

.circle {
  border-radius: 50%;
}

.triangle {
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.square {
  transform: rotate(45deg);
}

.heart, .lightning, .diamond {
  position: absolute;
  font-size: 60px;
  color: var(--pink);
  opacity: 0.15;
  animation: float 10s infinite ease-in-out;
}

.heart {
  top: 10%;
  left: 10%;
}

.heart:nth-child(2) {
  top: 70%;
  left: 30%;
  animation-delay: -3s;
}

.lightning {
  top: 30%;
  right: 20%;
  transform: rotate(15deg);
}

.lightning:nth-child(2) {
  top: 80%;
  right: 40%;
  animation-delay: -5s;
}

.diamond {
  top: 50%;
  left: 50%;
}

.diamond:nth-child(2) {
  top: 20%;
  left: 80%;
  animation-delay: -7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

header {
  position: fixed;
  width: 100%;
  padding: 1.5rem;
  background: rgba(0,0,0,0.9);
  z-index: 100;
}

nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--pink);
}

.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8));
}

.hero h1 {
  font-size: 5rem;
  color: var(--pink);
  letter-spacing: 10px;
  margin-bottom: 1rem;
}

.prize {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--pink);
}

section {
  padding: 6rem 2rem;
}

h2 {
  text-align: center;
  color: var(--pink);
  font-size: 2.5rem;
  margin-bottom: 4rem;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.game {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: transform 0.3s;
}

.game:hover {
  transform: translateY(-10px);
}

.game-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.rules-container {
  max-width: 800px;
  margin: 0 auto;
}

.rule {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
}

.number {
  font-size: 2rem;
  color: var(--pink);
  margin-right: 2rem;
  font-weight: bold;
}

.guard-business-card {
  max-width: 400px;
  margin: 0 auto;
  background: var(--black);
  padding: 3rem;
  border-radius: 10px;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s;
  border: 2px solid var(--pink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255, 11, 122, 0.3);
}

.card-front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}

.card-symbols {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.card-number {
  text-align: center;
  color: #9932CC;
  font-size: 1.5em;
  font-family: monospace;
}

.symbol {
  font-size: 2.5em;
}

.card:hover {
  transform: scale(1.05);
}

.business-card {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-bottom: 1px solid var(--white);
  padding-bottom: 1rem;
}

.business-card span {
  position: relative;
}

.business-card span::after {
  content: attr(data-title);
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--white);
  white-space: nowrap;
}

.invitation {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 2rem;
}

.guards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.guard {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: transform 0.3s;
}

.guard:hover {
  transform: translateY(-10px);
  background: rgba(255,11,122,0.1);
}

.guard-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.join-button {
  background: var(--pink);
  color: var(--white);
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  margin-top: 1rem;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.join-button:hover {
  background: var(--dark-pink);
}

.warning {
  color: var(--pink);
  font-size: 0.9rem;
  margin-top: 1rem;
}

#randomEmail {
  color: var(--pink);
  font-family: monospace;
  font-size: 1.2rem;
  margin: 1rem 0;
}

footer {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.05);
}

.particle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--pink);
  border-radius: 50%;
  animation: float 5s infinite linear;
  opacity: 0.3;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-100vh) rotate(180deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(-200vh) rotate(360deg);
    opacity: 0.3;
  }
}

.game, .guard {
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 11, 122, 0.2);
}

.prize {
  animation: glow 2s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 10px var(--pink);
  }
  to {
    text-shadow: 0 0 20px var(--pink), 0 0 30px var(--dark-pink);
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  nav {
    gap: 1rem;
  }

  .prize {
    font-size: 1.8rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }
}
html {
  height: 100%;
  width: 100%;
}

.prize-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.guard-business-card {
  background: #000;
  border: 2px solid var(--pink);
  box-shadow: 0 0 15px rgba(255, 11, 122, 0.3);
  position: relative;
  width: 350px;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
}

.card-front {
  width: 100%;
  height: 100%;
  position: relative;
}

.card-symbols {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.card-symbols .symbol {
  color: var(--white);
  font-size: 2.5em;
}

.card-number {
  position: absolute;
  bottom: 15px;
  right: 15px;
  color: var(--pink);
  font-family: 'Roboto', sans-serif;
  font-size: 1.5em;
  font-weight: bold;
}