body{
margin:0;
font-family:Arial,sans-serif;
background:#ffff;
color:#f9fafb;
}

/* HEADER */

.site-header{
padding:12px 24px;
background:#111827;
}

.header-container,
.banner-container{
max-width:1200px;
margin:0 auto;
}

.header-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:16px;
flex-wrap:wrap;
}

/* ↑ Logo size increased */
.header-logo img{
  height: 80px; /* increased from 40px */
  width: auto;  /* maintain aspect ratio */
}

.header-text{
font-size:clamp(.9rem,2.5vw,1.1rem);
font-weight:500;
text-align:right;
}

/* BANNER */

.banner{
padding:40px 24px 80px;
background:radial-gradient(circle at top,#1d2748,#050816);
}

.banner-title{
font-size:clamp(1.6rem,4vw,2.4rem);
margin-bottom:8px;
}

.banner-subtitle{
font-size:clamp(1rem,2.5vw,1.2rem);
max-width:600px;
line-height:1.5;
opacity:.9;
}

/* CASINO TABLE */

.casino-table-container{
max-width:1200px;
margin:-60px auto 40px;
padding:24px;
background:#0f172a;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,.45);
}

/* GRID */

.casino-grid{
display:grid;
grid-template-columns:repeat(5,1fr);
gap:20px;
}

/* CARD */

.casino-card {
  display:flex;
  flex-direction:column;
  align-items:center; /* centers smaller buttons */
  gap:10px;
  background:black;
  border-radius:16px;
  padding:18px 16px;
  text-align:center;
  transition:.25s;
}

.casino-card:hover{
transform:translateY(-4px);
box-shadow:0 12px 30px rgba(0,0,0,.35);
}

/* LOGO */

.casino-logo-wrapper{
height:60px;
display:flex;
align-items:center;
justify-content:center;
}

.casino-logo{
max-height:48px;
max-width:140px;
width:auto;
height:auto;
object-fit:contain;
}

/* TEXT */

.casino-bonus{
font-size:.95rem;
}

.casino-rating{
color:#fbbf24;
font-weight:bold;
}

.casino-features{
font-size:.85rem;
opacity:.85;
line-height:1.4;
flex-grow:1;
}

/* BUTTON */

.visit-btn{
  display:block;
  width: 100%;          /* full width by default */
  max-width: 100px;     /* limits width to 100px */
  padding:10px;
  background:linear-gradient(135deg,#22c55e,#16a34a);
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:bold;
  font-size:.9rem;
  margin-top:auto;
  transition:.2s;
  text-align: center;   /* center the text inside button */
}

.visit-btn:hover{
transform:translateY(-1px);
}

/* CONTENT SECTION */

.content-section{
max-width:1200px;
margin:40px auto;
padding:30px 24px;
background:#fff;
border-radius:20px;
color:black;
/* box-shadow:0 20px 50px rgba(0,0,0,.45);  */
line-height:1.7;
}

.content-section h2{
margin-top:0;
font-size:1.8rem;
margin-bottom:15px;
}

.content-section p{
opacity:.9;
margin-bottom:15px;
}

.content-section ul{
padding-left:20px;
opacity:.9;
}

/* RESPONSIVE */

@media(max-width:1100px){
.casino-grid{
grid-template-columns:repeat(3,1fr);
}
}

@media(max-width:768px){

/* Mobile logo size */
.header-logo img {
  height: 60px; /* smaller on mobile */
}

.casino-grid{
grid-template-columns:1fr;
gap:18px;
}

.casino-table-container{
margin:-50px 16px 30px;
padding:18px;
max-width:95%;
}

.content-section{
margin:30px 16px;
padding:22px;
max-width:95%;
}

}
.banner-meta {
  font-size: 0.85rem;
  color: #cbd5e1;      /* light gray text */
  opacity: 0.85;
  margin-top: 10px;
  font-style: italic;
  padding: 6px 12px;   /* space inside the border */
  border: 1px solid #cbd5e1; /* light gray border */
  border-radius: 8px;  /* rounded corners */
  display: inline-block; /* makes border wrap text neatly */
}

.site-footer {
  background: #111827;
  color: #cbd5e1;
  padding: 40px 24px;
  font-size: 0.9rem;
  border-top: 1px solid #1d2748;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.footer-logo img {
  height: 60px;
  width: auto;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a,
.footer-social a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #22c55e;
}

.footer-bottom {
  margin-top: 30px;
  text-align: center;
  border-top: 1px solid #1d2748;
  padding-top: 15px;
  font-size: 0.85rem;
  opacity: 0.8;
}

@media(max-width:768px){
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-links,
  .footer-social {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .footer-logo img {
    height: 50px;
  }
}
.footer-badges {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center; /* center under logo or footer */
}

.footer-badges img {
  height: 40px; /* adjust size */
  width: auto;
  border-radius: 4px; /* optional rounded corners */
  object-fit: contain;
}
