* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background-color: #000;
}

.container {
  display: flex;
  min-height: 100vh;
  padding: 2rem;
  gap: 2rem;
  margin-top: 80px;
  margin-bottom: 150px;
}

.left-section {
  flex: 1;
  background: #000;
  padding: 2rem;
  border: 3px solid #606060;
  border-radius: 10px;
  color: white;
}

.right-section {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.right-section img {
  width: 59%;
  height: 250%;
  max-height: 80vh;
  object-fit: contain;
  border: 3px solid #606060;
  border-radius: 10px;
  transform: scale(1.15, 1.15);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

h2 {
  font-size: 1.8rem;
  margin: 1.5rem 0;
  color: #4ecdc4;
}

.rules-list {
  padding-left: 2rem;
  margin-bottom: 2rem;
}

.rules-list li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.button {
  background: #4ecd6c;
  color: rgb(0, 0, 0);
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  font-weight: bold;
  display: block;
  width: 100%;
  margin-top: 50px;
}

.button:disabled {
  background: #6b3232;
  cursor: not-allowed;
  font-weight: normal;
}

.button:hover:not(:disabled) {
  background: #45b7b0;
  transform: translateY(-2px);
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  
  filter: blur(50px);
  opacity: 0;
  
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 1rem;
    margin-top: 120px;
  }

  .left-section {
    order: 2;
    margin-bottom: 20px;
    margin-top: 70px;
  }

  .right-section {
    order: 1;
  }

  .right-section img {
    width: 59%;
    height: 250%;
    max-height: 80vh;
    transform: scale(1.6, 1.6);
    margin-top: 60px;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
