*{
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;
}
}

/* SLIDER */

.banner-slider{
width:100%;
overflow:hidden;
position:relative;
}

.slides{
display:flex;
transition:transform 0.8s ease-in-out;
}

.slide{
min-width:100%;
}

.slide img{
width:100%;
height:38vh;
object-fit:contain;
display:block;
}

.dots{
position:absolute;
bottom:2px;
width:100%;
display:flex;
justify-content:center;
gap:10px;
}

.dots span{
width:12px;
height:12px;
background:#ffffff88;
border-radius:50%;
cursor:pointer;
transition:0.3s;
}

.dots span.active{
background:#00c853;
transform:scale(1.2);
}

@media(max-width:1024px){
.slide img{
height:45vh;
}
}

@media(max-width:600px){
.slide img{
height:15vh;
}
}

/* 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 20px;
background:black;
}

.page-title h1{
max-width:900px;
margin:auto;
font-size:30px;
line-height:1.4;
color:#ffb400;

}.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; 
}



/* mobile */
@media(max-width:600px){
.nav-links a:not(:last-child)::after {
content: "";
 }
 
.logo img{
height:35px;
display:block;
}
.page-title{
padding:20px 15px;
}

.page-title h1{
font-size:18px;
font-weight: 800;
}
.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;
  }
}

/* NEWS GRID */

#articles-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:20px;
margin-top:20px;
}

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

.article-card:hover{
transform:translateY(-5px);
}

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

.article-card h3{
font-size:18px;
padding:10px;
color:#ffb400;
}

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

.article-card a{
display:block;
padding:10px;
background:#00c853;
color:#fff;
text-align:center;
text-decoration:none;
font-weight:bold;
}

.show-more-wrapper{
text-align:center;
margin-top:30px;
}

#showMoreBtn{
background:#00c853;
color:#fff;
border:none;
padding:12px 25px;
border-radius:8px;
font-size:15px;
cursor:pointer;
}

/* MOBILE */

@media(max-width:900px){

#articles-container{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

#articles-container{
grid-template-columns:1fr;
}

}