* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
}

header {
  background-color: #1a3e75;
  padding: 10px 20px;
  z-index: 10;
}

.logo img {
  height: 40px;
}

.slider {
  width: 100%;
  height: 100vh;
  /* Full viewport height */
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
}

.slide.active {
  display: block;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Ensures image covers entire area without stretching */
  display: block;
}

.why-wowzy {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
  position: relative;
  border-top: 4px solid;
  border-image: linear-gradient(to right, #34a853, #fbbc05, #4285f4, #ea4335) 1;
  border-image-slice: 1;
}

.why-wowzy h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
}

.feature img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}

.feature p {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  line-height: 1.4;
}

.bottom-character {
  position: absolute;
  bottom: -30px;
  left: 30px;
  width: 60px;
}

.payment-options {
  background-color: #e8f2ff;
  padding: 60px 20px;
  position: relative;
  border-top: 4px solid;
  border-image: linear-gradient(to right, #34a853, #fbbc05, #4285f4, #ea4335) 1;
  border-image-slice: 1;
  text-align: center;
}

.payment-options h2 {
  font-size: 26px;
  color: #333;
  margin-bottom: 40px;
}

.payment-options .icon {
  width: 20px;
  vertical-align: middle;
  margin-left: 6px;
}

.methods {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.method {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.method img {
  width: 50px;
  height: auto;
  margin-bottom: 10px;
}

.method p {
  font-size: 15px;
  font-weight: 500;
  color: #333;
}

.divider {
  width: 1px;
  height: 40px;
  background-color: #aaa;
  opacity: 0.4;
}

.character-right {
  position: absolute;
  right: 30px;
  top: 20px;
  width: 80px;
}

.wowzy-cash-prizes {
  padding: 80px 20px;
  background: #ffffff;
}

.wowzy-cash-prizes .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.wowzy-cash-prizes .text {
  flex: 1 1 500px;
}

.wowzy-cash-prizes .text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.wowzy-cash-prizes .text p {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.wowzy-cash-prizes .image {
  flex: 1 1 400px;
  text-align: right;
}

.wowzy-cash-prizes .image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.footer-links {
  background-color: #23457b;
  color: white;
  padding: 50px 20px;
  font-family: Arial, sans-serif;
}

.footer-border {
  height: 4px;
  width: 100%;
  background: linear-gradient(to right, #4285f4 25%, #ea4335 25%, #ea4335 50%, #34a853 50%, #34a853 75%, #fbbc05 75%);
  margin-bottom: 30px;
}

.footer-content {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
}

.link-columns {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.link-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-columns li {
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 5px;
}

.link-columns a {
  color: white;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
}

.link-columns a.highlight {
  color: #f1c40f;
  /* gold/yellow color for 'Ludo' link */
}

.faq-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  font-family: Arial, sans-serif;
}

.accordion-item {
  border: 1px solid #ccc;
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}

.accordion-header {
  background-color: #f5f5f5;
  padding: 16px 20px;
  width: 100%;
  text-align: left;
  font-weight: bold;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background-color: #e0e0e0;
}

.accordion-body {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  background-color: #fff;
  transition: max-height 0.4s ease-out, padding 0.3s ease;
}

.accordion-body.open {
  padding: 16px 20px;
  max-height: 800px;
  /* Enough to fit content */
}

.accordion-body ul,
.accordion-body ol {
  margin: 0;
  padding-left: 20px;
}