/* Gambling Hero Section */
.gambling-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 107, 0.1) 0%,
    rgba(255, 142, 83, 0.1) 100%
  );
  position: relative;
  overflow: hidden;
}

.gambling-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6b6b" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ff6b6b" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ff6b6b" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ff6b6b" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ff6b6b" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.gambling-hero h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ffffff, #ff6b6b, #ffffff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShine 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.gambling-hero .subtitle {
  font-size: 1.3rem;
  color: #ff6b6b;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.gambling-hero p {
  font-size: 18px;
  color: #cccccc;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Policy Content */
.gambling-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.gambling-section {
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
  padding: 40px;
  border-radius: 15px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.gambling-section:hover {
  border-color: rgba(255, 107, 107, 0.3);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
}

.gambling-section h2 {
  color: #ff6b6b;
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: bold;
}

.gambling-section h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin: 25px 0 15px 0;
  font-weight: bold;
}

.gambling-section p {
  color: #cccccc;
  margin-bottom: 15px;
  font-size: 16px;
}

.gambling-section ul {
  color: #cccccc;
  margin: 15px 0 15px 30px;
}

.gambling-section li {
  margin-bottom: 10px;
}

.highlight {
  color: #ff6b6b;
  font-weight: bold;
}

.warning-box {
  background: linear-gradient(
    45deg,
    rgba(255, 107, 107, 0.15),
    rgba(255, 142, 83, 0.15)
  );
  padding: 25px;
  border-radius: 10px;
  border-left: 4px solid #ff6b6b;
  margin: 20px 0;
}

.warning-box h4 {
  color: #ff6b6b;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.help-resources {
  background: linear-gradient(
    45deg,
    rgba(76, 175, 80, 0.1),
    rgba(69, 160, 73, 0.1)
  );
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(76, 175, 80, 0.3);
  text-align: center;
  margin: 40px 0;
}

.help-resources h3 {
  color: #4caf50;
  margin-bottom: 20px;
}

.help-resources .resource-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  margin: 10px 0;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.help-resources .resource-name {
  font-weight: bold;
  color: #ffffff;
}

.help-resources a {
  color: #4caf50;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.help-resources a:hover {
  color: #66bb6a;
}

.age-requirement {
  background: linear-gradient(
    45deg,
    rgba(255, 193, 7, 0.1),
    rgba(255, 179, 0, 0.1)
  );
  padding: 25px;
  border-radius: 15px;
  border: 2px solid rgba(255, 193, 7, 0.5);
  text-align: center;
  margin: 30px 0;
}

.age-requirement h3 {
  color: #ffc107;
  margin-bottom: 10px;
  font-size: 1.5rem;
}

.age-requirement p {
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
}

/* Gambling Footer */
.gambling footer {
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #666666;
  background: rgba(37, 37, 38, 0.8);
}

/* Gambling Responsive */
@media (max-width: 768px) {
  .gambling-content {
    padding: 40px 20px;
  }

  .gambling-section {
    padding: 30px 20px;
  }

  .help-resources .resource-item {
    flex-direction: column;
    text-align: center;
  }

  .gambling-hero h1 {
    font-size: clamp(1.5rem, 8vw, 2.5rem);
  }
}
