*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:black;
color:#222;
}
a {
  color: #ffb400;       /* bright yellow */
  font-weight: bold;     /* optional: make it stand out */
  text-decoration: none; /* remove underline */
  transition: color 0.3s ease;
}

/* HEADER */
header{
background:#111;
color:#fff;
padding:15px 20px;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
position:relative;
}

.nav-left{
display:flex;
align-items:center;
gap:10px;
}

.logo img{
height:50px;
display:block;
}

.nav-right{
display:flex;
align-items:center;
gap:20px;
}

.nav-links{
display:flex;
gap:20px;
z-index:9999;
}
/* Add the | after each link except the last one */
.nav-links a:not(:last-child)::after {
  content: "|";
  color: #888; /* separator color */
  margin-left: 8px;
}

.nav-links a{
text-decoration:none;
color:#ffb400;
font-size:18px;
}

.nav-links a:hover{
color:#00c853;
}

.nav-buttons{
display:flex;
gap:10px;
}

.nav-buttons button{
padding:10px 18px;
border:none;
border-radius:6px;
cursor:pointer;
font-weight:bold;
}

.btn-primary{
background:#00c853;
color:#fff;
}

/* Hamburger */
.hamburger{
display:none;
width:23px;
height:16px;
flex-direction:column;
justify-content:space-between;
cursor:pointer;
}

.hamburger span{
display:block;
height:4px;
width:100%;
background:white;
border-radius:2px;
}

/* HERO */
.hero{
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;
padding:20px;
}

.hero h1{
font-size:42px;
margin-bottom:15px;
}

.hero p{
max-width:600px;
margin-bottom:25px;
color:#555;
}

.hero button{
padding:14px 30px;
font-size:16px;
border:none;
border-radius:8px;
background:#111;
color:#fff;
cursor:pointer;
}

/* MOBILE */
@media(max-width:900px){

.hamburger{
display:flex;
}

.nav-links{
position:fixed;
top:60px;
left:0;
width:100%;
background:#111;
flex-direction:column;
padding:20px;
display:none;
}

.nav-links.active{
display:flex;
}

.nav-buttons button{
padding:6px 10px;
font-size:12px;
}
}

@media(max-width:600px){
.nav-links a:not(:last-child)::after {
content: "";
}
}

/* Footer base */
.site-footer {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 40px 500px;
}

/* Top section flex */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* Social icons */
.footer-socials a img {
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
  transition: transform 0.3s;
}

.footer-socials a img:hover {
  transform: scale(1.1);
}

/* Awards / responsible gaming logos */
.footer-awards img {
  height: 50px;
  margin-right: 10px;
}

/* License logos */
.footer-license img {
  height: 50px;
}

/* Disclaimer text */
.footer-disclaimer {
  font-size: 12px;
  line-height: 1.5;
  color: #ccc;
  margin-bottom: 20px;
}

.footer-disclaimer a {
  color: #ffb400;
  text-decoration: none;
}

.footer-disclaimer a:hover {
  text-decoration: underline;
}

/* Bottom links */
.footer-bottom {
  font-size: 12px;
  text-align: center;
}
.footer-bottom1 {
  font-size: 14px;
  text-align: center;
  margin-top: 20px;
}

.footer-bottom a {
  color: #ffb400;
  text-decoration: none;
  margin: 0 5px;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* PAGE TITLE */

.page-title{
width:100%;
text-align:center;
padding:30px 0;
background:black;
}

.page-title h1{
max-width:900px;
margin:auto;
font-size:30px;
line-height:1.4;
color:white;
text-align:center;

}.page-title p{
max-width:900px;
margin:auto;
font-size:20px;
line-height:1.4;
color:white;
margin-top: 15px;
}

.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 28px;
  font-size: 15px;
  background-color: #00c853;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
}

.cta-btn:hover {
  background-color: #00c853;
}

/* Second section */
.content-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  text-align: left;
  background: black;
}

.content-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ffb400;
}

.content-section h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #ffb400;
}

.content-section p {
  font-size: 16px;
  margin-bottom: 10px;
  color: white;
}
.content-section ul{
  list-style: none; /* remove default bullets */
  padding-left: 0;
  margin-top: 20px;
  color: white;
}.content-section li{
  position: relative;
  padding-left: 25px;  /* space for custom bullet */
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5;
  color: white;
}
.content-section li::before {
  content: "★"; /* star symbol for casino feel */
  position: absolute;
  left: 0;
  color: #ffb400; /* yellow star */
  font-size: 18px;
  top: 0;
}

/* FAQ section container */
.faq-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;
  text-align: left;
  color: #ffffff; /* all text white */
}

.faq-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  color: #ffb400; /* white header */
  text-align: center; /* centered */
}

.faq-item {
  margin-bottom: 15px;
}

/* Question style */
.faq-question {
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  color: #ffffff; /* white question */
  margin-bottom: 40px;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 16px;
  color: #ffffff; /* white plus/minus */
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: "−";
}

/* Answer list */
.faq-answer {
  display: none; /* hidden initially */
  margin-top: 15px;
  margin-bottom: 15px;
  padding-left: 20px; /* for bullets */
  line-height: 1.5;
  color: #ffb400;
}

.faq-answer li {
  margin-bottom: 6px;
  list-style-type: disc;
  color: #ffb400; 
}
/* Responsive Page Title Image */
.page-title-img {
  max-width: 100%;   /* image scales with container */
  height: auto;      /* maintain aspect ratio */
  margin: 20px 0;    /* spacing above and below */
  border-radius: 8px; /* optional rounded corners */
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .page-title-img {
    max-width: 100%;   /* slightly smaller on mobile */
    margin: 15px auto; /* centered with margin */
    display: block;   /* ensures centering */
  }
}


/* mobile */
@media(max-width:600px){
.logo img{
height:35px;
display:block;
}
.page-title{
padding:20px 7px;
}

.page-title h1{
font-size:18px;
font-weight: 800;
padding:0 15px;
text-align: left;
}
.page-title p{
font-size:12px;
}
.content-section h2 {
    font-size: 17px;
  }

  .content-section h3 {
    font-size: 16px;
  }

  .content-section p {
    font-size: 15px;
  }
  
.faq-section h2 {
    font-size: 24px;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-answer li {
    font-size: 15px;
  }
  
.site-footer{
    padding:30px 20px;
  }

  .footer-top{
    flex-direction:column;
    text-align:center;
  }

  .footer-socials,
  .footer-awards,
  .footer-license{
    margin-bottom:15px;
  }

  .footer-awards img,
  .footer-license img{
    height:40px;
  }

  .footer-disclaimer{
    font-size:11px;
  }
  .footer-license{
      display: none;
  }
}

/* READ NEXT / RELATED ARTICLES GRID */

#read-next-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 5px;
}

#read-next-list .article-card {
  background: #111;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

#read-next-list .article-card:hover {
  transform: translateY(-5px);
}

#read-next-list .article-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

#read-next-list .article-card h3 {
  font-size: 16px;
  padding: 5px;
  color: #ffb400;
}

#read-next-list .article-card p {
  font-size: 14px;
  padding: 0 10px 10px 10px;
  color: #ddd;
}

#read-next-list .article-card a {
  display: block;
  padding: 10px;
  background: #00c853;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0 0 8px 8px;
  margin-top: auto;
  transition: background 0.3s ease;
}

#read-next-list .article-card a:hover {
  background: #00b347;
  color: #fff;
  text-decoration: none;
}
/* READ NEXT SECTION HEADING UNDERLINE */
.read-next-heading {
  font-size: 28px;
  color: #ffb400;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.read-next-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: lightgrey;
  margin-top: 5px;
  border-radius: 2px;
}

/* RESPONSIVE GRID */
@media(max-width: 900px){
  #read-next-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px){
  #read-next-list {
    grid-template-columns: 1fr;
  }
}