/* Reset & base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", Arial, sans-serif;
}

body {
  background: linear-gradient(135deg, #1278ed, #000000);
  min-height: 100vh;
  color: #3dae5d;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.container {
  width: 100%;
  padding: 2.5rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.6rem;
  font-weight: 800;              
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: #481a1a;
}


.dice {
  background: #06172a;
  color: #0b7d76;
  width: 100%;
  max-width: 420px;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(28, 4, 4, 0.3);
  margin-bottom: 2rem;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.date label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.date input {
  width: 100%;
  padding: 0.7rem;
  border-radius: 8px;
  border: 1px solid #000201;
  font-size: 1rem;
}


.Gender label {
  font-weight: 600;
}

.gender-options {
  display: flex;
  justify-content: space-around;
  margin-top: 0.6rem;
}

.gender-options label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

/* Button */
.btn {
  background: #b3160e;
  color: #8c7c7c;
  border: none;
  padding: 0.9rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn:hover {
  background: #417921;
  transform: translateY(-2px);
}


.result-section {
  margin-bottom: 2rem;
}

#results {
  background: rgba(6, 2, 2, 0.18);
  padding: 1.2rem 1.6rem;
  border-radius: 12px;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 600;
}


footer {
  width: 100%
}