* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0b0f1a;
  color: #fff;
}

/* Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #0b1020;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header-wrap {
  max-width: 1100px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  width: 50px;
  height: 50px;
  border-radius:20px;
  margin-right: 10px;
}

.site-name {
  font-size: 30px;
  font-weight: bold;
  color: gold;
}

/* Nav */
.nav-menu {
  display: flex;
  gap: 25px;
}

.nav-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.nav-menu a:hover {
  color: gold;
}

/* Mobile */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive */
@media(max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #0b1020;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-menu.active {
    display: flex;
  }
}


/* hero section */
.hero-slider {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0.3));
}

.overlay {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 100px 60px;
  color: white;
}

.overlay h1 {
  font-size: 48px;
  color: gold;
  margin-bottom: 15px;
}

.overlay p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-btn {
  background: gold;
  color: black;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* Mobile */
@media(max-width: 768px){
  .overlay{
    padding: 80px 25px;
  }
  .overlay h1{
    font-size: 32px;
  }
}



.casino-area{
  padding:80px 20px;
  background:#0b1020;
  text-align:center;
}

.casino-area h2{
  color:gold;
  font-size:36px;
  margin-bottom:10px;
}

.casino-subtitle{
  color:#ccc;
  margin-bottom:50px;
  font-size:16px;
}

/* Grid */
.casino-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
}

/* Card */
.casino-card{
  background:#141a33;
  border-radius:10px;
  overflow:hidden;
  padding-bottom:20px;
  transition:0.3s;
}

.casino-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(255,215,0,0.15);
}

.casino-card img{
  width:100%;
  height:150px;
  object-fit:cover;
}

.casino-card h3{
  color:gold;
  margin:15px 0 5px;
}

.casino-card span{
  display:block;
  color:#bbb;
  font-size:13px;
  margin-bottom:15px;
}

.casino-card a{
  background:gold;
  color:black;
  padding:8px 20px;
  text-decoration:none;
  border-radius:4px;
  font-weight:bold;
}

/* Button */
.casino-btn{
  margin-top:50px;
}

.casino-btn a{
  padding:14px 40px;
  border:2px solid gold;
  color:gold;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
}

/* Responsive */
@media(max-width:900px){
  .casino-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .casino-grid{
    grid-template-columns:1fr;
  }
}

/* Large screens (4K / big monitors) */
@media (min-width: 1600px) {
  .header-wrap,
  .casino-grid {
    max-width: 1400px;
  }

  .overlay h1 {
    font-size: 58px;
  }

  .overlay p {
    font-size: 20px;
  }
}

/* Laptop (1024px – 1366px) */
@media (max-width: 1366px) {
  .header-wrap {
    max-width: 95%;
  }

  .overlay {
    padding: 80px 50px;
  }
}

/* Tablet landscape */
@media (max-width: 1024px) {
  .nav-menu a {
    font-size: 18px;
  }

  .casino-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .overlay h1 {
    font-size: 40px;
  }
}

/* Tablet portrait */
@media (max-width: 820px) {
  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .overlay {
    padding: 70px 30px;
  }

  .overlay h1 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .site-name {
    font-size: 22px;
  }

  .logo {
    width: 40px;
    height: 40px;
  }

  .hero-slider {
    height: 70vh;
  }

  .overlay {
    padding: 60px 20px;
  }

  .overlay h1 {
    font-size: 28px;
  }

  .overlay p {
    font-size: 15px;
  }

  .casino-area h2 {
    font-size: 28px;
  }

  .casino-card img {
    height: 130px;
  }
}

/* Small phones */
@media (max-width: 400px) {
  .overlay h1 {
    font-size: 24px;
  }

  .overlay p {
    font-size: 14px;
  }

  .casino-btn a {
    padding: 10px 28px;
  }
}



.slots-area{
  padding:80px 20px;
  background:#070b18;
  text-align:center;
}

.slots-area h2{
  color:gold;
  font-size:36px;
  margin-bottom:10px;
}

.slots-subtitle{
  color:#ccc;
  margin-bottom:50px;
  font-size:16px;
}

/* Grid */
.slots-grid{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* Card */
.slot-card{
  background:#141a33;
  border-radius:10px;
  overflow:hidden;
  transition:0.3s;
}

.slot-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(255,215,0,0.15);
}

.slot-card img{
  width:100%;
  height:160px;
  object-fit:cover;
}

.slot-card h3{
  color:gold;
  margin:15px 0 5px;
}

.slot-card span{
  display:block;
  color:#bbb;
  font-size:13px;
  margin-bottom:15px;
}

/* Button */
.slots-btn{
  margin-top:50px;
}

.slots-btn a{
  padding:14px 40px;
  border:2px solid gold;
  color:gold;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
}

/* Responsive */
@media(max-width:900px){
  .slots-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:500px){
  .slots-grid{
    grid-template-columns:1fr;
  }
}



.bonus-area{
  padding:80px 20px;
  background:#0b1020;
}

.bonus-area h2{
  text-align:center;
  color:gold;
  font-size:36px;
  margin-bottom:10px;
}

.bonus-subtitle{
  text-align:center;
  color:#ccc;
  margin-bottom:60px;
}

/* Rows */
.bonus-row{
  max-width:1100px;
  margin:0 auto 60px;
  display:flex;
  align-items:center;
  gap:40px;
}

.bonus-row.reverse{
  flex-direction:row-reverse;
}

/* Text */
.bonus-text{
  flex:1;
}

.bonus-text h3{
  color:gold;
  font-size:28px;
  margin-bottom:15px;
}

.bonus-text p{
  color:#ccc;
  font-size:16px;
  margin-bottom:25px;
}

.bonus-btn{
  background:gold;
  color:black;
  padding:12px 30px;
  text-decoration:none;
  border-radius:5px;
  font-weight:bold;
}

/* Image */
.bonus-image{
  flex:1;
}

.bonus-image img{
  width:100%;
  border-radius:15px;
}

/* Responsive */
@media(max-width:900px){
  .bonus-row,
  .bonus-row.reverse{
    flex-direction:column;
    text-align:center;
  }

  .bonus-image img{
    max-width:400px;
    margin:auto;
  }
}



.site-footer{
  background:#0b1020;
  color:#ccc;
  padding:80px 20px 20px;
  margin-top:80px;
}

.footer-container{
  max-width:1100px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:50px;
}

.footer-box h3{
  color:gold;
  margin-bottom:20px;
  font-size:22px;
}

.footer-box p{
  font-size:15px;
  line-height:1.7;
}

.footer-box ul{
  list-style:none;
}

.footer-box ul li{
  margin-bottom:12px;
}

.footer-box ul li a{
  color:#aaa;
  text-decoration:none;
  transition:0.3s;
}

.footer-box ul li a:hover{
  color:#00e6ff;
}

.footer-box a{
  color:gold;
  text-decoration:none;
}

/* Social icons */
.social-icons{
  margin-top:20px;
}

.social-icons a{
  display:inline-block;
  margin-right:10px;
  font-size:20px;
  background:#222;
  padding:10px;
  border-radius:50%;
  color:white;
}

/* Bottom */
.footer-bottom{
  text-align:center;
  padding-top:40px;
  border-top:1px solid #222;
  margin-top:40px;
  font-size:14px;
  color:#777;
}

/* Responsive */
@media(max-width:900px){
  .footer-container{
    grid-template-columns:1fr;
    text-align:center;
  }

  .social-icons{
    justify-content:center;
  }
}



/* about us */
.about-page{
  padding:80px 20px;
  background:#0b1020;
}

.about-container{
  max-width:900px;
  margin:auto;
  color:#ccc;
  line-height:1.8;
}

.about-container h1{
  color:gold;
  font-size:40px;
  margin-bottom:30px;
}

.about-container h2{
  color:#00e6ff;
  margin-top:40px;
  margin-bottom:15px;
}

.about-container p{
  font-size:16px;
  margin-bottom:20px;
}

/* Mobile */
@media(max-width:600px){
  .about-container h1{
    font-size:30px;
  }
}


/* contactus */

.contact-page{
  padding:80px 20px;
  background:#0b1020;
}

.contact-container{
  max-width:1000px;
  margin:auto;
}

.contact-container h1{
  text-align:center;
  color:gold;
  font-size:40px;
  margin-bottom:10px;
}

.contact-subtitle{
  text-align:center;
  color:#ccc;
  margin-bottom:50px;
}

/* Grid */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
}

/* Info */
.contact-info h3{
  color:#00e6ff;
  margin-bottom:15px;
}

.contact-info p{
  color:#ccc;
  margin-bottom:15px;
}

/* Form */
.contact-form input,
.contact-form textarea{
  width:100%;
  padding:12px;
  margin-bottom:15px;
  border:none;
  border-radius:5px;
  background:#141a33;
  color:white;
}

.contact-form button{
  background:gold;
  color:black;
  padding:12px 30px;
  border:none;
  border-radius:5px;
  font-weight:bold;
  cursor:pointer;
}

/* Responsive */
@media(max-width:800px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}



/* writforus */
.wfu-page{
  padding:80px 20px;
  background:#0b1020;
}

.wfu-container{
  max-width:950px;
  margin:auto;
  color:#ccc;
  line-height:1.8;
}

.wfu-container h1{
  text-align:center;
  color:gold;
  font-size:40px;
  margin-bottom:10px;
}

.wfu-subtitle{
  text-align:center;
  margin-bottom:50px;
  color:#ccc;
}

.wfu-box{
  background:#141a33;
  padding:25px;
  border-radius:10px;
  margin-bottom:25px;
}

.wfu-box h2{
  color:#00e6ff;
  margin-bottom:15px;
  font-size:22px;
}

.wfu-box ul,
.wfu-box ol{
  padding-left:20px;
}

.wfu-box li{
  margin-bottom:10px;
}

.wfu-box a{
  color:#00e6ff;
  text-decoration:none;
}

.wfu-note{
  margin-top:10px;
  color:#bbb;
}

/* CTA */
.wfu-cta{
  text-align:center;
  margin-top:35px;
}

.wfu-cta a{
  background:gold;
  color:black;
  padding:12px 35px;
  text-decoration:none;
  border-radius:6px;
  font-weight:bold;
}

/* Responsive */
@media(max-width:600px){
  .wfu-container h1{
    font-size:30px;
  }

  .wfu-box{
    padding:18px;
  }
}



/* Legal Pages (Privacy/Terms/Disclaimer) */
.legal-page{
  padding:80px 20px;
  background:#0b1020;
}

.legal-container{
  max-width:950px;
  margin:auto;
  background:#141a33;
  padding:35px;
  border-radius:12px;
  color:#ccc;
  line-height:1.8;
}

.legal-container h1{
  color:gold;
  font-size:38px;
  margin-bottom:10px;
}

.legal-container h2{
  color:#00e6ff;
  margin-top:30px;
  margin-bottom:10px;
  font-size:24px;
}

.legal-container h3{
  color:#fff;
  margin-top:20px;
  margin-bottom:8px;
  font-size:18px;
}

.legal-container h4{
  color:#fff;
  margin-top:18px;
  margin-bottom:8px;
  font-size:16px;
}

.legal-container p{
  margin-bottom:14px;
}

.legal-container ul{
  padding-left:20px;
  margin:10px 0 20px;
}

.legal-container li{
  margin-bottom:10px;
}

.legal-container a{
  color:gold;
  text-decoration:underline;
}

/* Mobile */
@media(max-width:600px){
  .legal-container{
    padding:20px;
  }
  .legal-container h1{
    font-size:28px;
  }
}




/* Legal Pages (Privacy/Terms/Disclaimer) */
.legal-page{
  padding:80px 20px;
  background:#0b1020;
}

.legal-container{
  max-width:950px;
  margin:auto;
  background:#141a33;
  padding:35px;
  border-radius:12px;
  color:#ccc;
  line-height:1.8;
}

.legal-container h1{
  color:gold;
  font-size:38px;
  margin-bottom:10px;
}

.legal-container h2{
  color:#00e6ff;
  margin-top:30px;
  margin-bottom:10px;
  font-size:24px;
}

.legal-container h3{
  color:#fff;
  margin-top:20px;
  margin-bottom:8px;
  font-size:18px;
}

.legal-container p{
  margin-bottom:14px;
}

.legal-container ul{
  padding-left:20px;
  margin:10px 0 20px;
}

.legal-container li{
  margin-bottom:10px;
}

.legal-container a{
  color:gold;
  text-decoration:underline;
}

@media(max-width:600px){
  .legal-container{
    padding:20px;
  }
  .legal-container h1{
    font-size:28px;
  }
}




/* ===== BLOG SECTION ===== */
.blog-section{
  padding:80px 20px;
  background:#070b18;
}

.section-header{
  text-align:center;
  margin-bottom:50px;
}

.section-header h2{
  color:gold;
  font-size:36px;
  margin-bottom:10px;
}

.section-header p{
  color:#ccc;
  font-size:16px;
}

/* Cards Grid */
.blog-cards-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

/* Blog Card */
.blog-card{
  background:#141a33;
  border-radius:15px;
  overflow:hidden;
  cursor:pointer;
  transition:0.3s;
  display:flex;
  flex-direction:column;
}

.blog-card:hover{
  transform:translateY(-8px);
  box-shadow:0 12px 30px rgba(255,215,0,0.15);
}

.blog-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

/* Content */
.card-content{
  padding:20px;
  display:flex;
  flex-direction:column;
  flex-grow:1;
}

.card-content h3{
  color:gold;
  font-size:20px;
  margin-bottom:10px;
}

.card-content p{
  color:#ccc;
  font-size:14px;
  line-height:1.6;
  flex-grow:1;
}

/* Read Article Button */
.read-article-btn{
  margin-top:15px;
  display:inline-block;
  background:gold;
  color:black;
  padding:10px 25px;
  border-radius:6px;
  text-decoration:none;
  font-weight:bold;
  text-align:center;
}

/* Explore More */
.explore-more-container{
  text-align:center;
  margin-top:50px;
}

.explore-more-btn{
  padding:14px 40px;
  border:2px solid gold;
  color:gold;
  text-decoration:none;
  border-radius:30px;
  font-weight:bold;
}

/* ===== Responsive ===== */
@media(max-width:1000px){
  .blog-cards-container{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .blog-cards-container{
    grid-template-columns:1fr;
  }

  .blog-card img{
    height:170px;
  }

  .section-header h2{
    font-size:28px;
  }
}
