
/*
Theme Name: SB Luxury Casino
Author: ChatGPT
Version: 1.0
Description: Luxury French gambling portal
*/

body{
margin:0;
background:#050505;
font-family:Arial,sans-serif;
color:#fff;
}

header{
position:sticky;
top:0;
z-index:9999;
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 40px;
background:rgba(0,0,0,0.92);
border-bottom:1px solid rgba(255,215,0,0.35);
backdrop-filter:blur(8px);
}

.logo{
font-size:38px;
font-weight:bold;
color:gold;
}

nav a{
color:white;
text-decoration:none;
margin:0 14px;
font-size:16px;
}

nav a:hover{
color:gold;
}

.hero{
background:url('assets/hero-main.png') center top/cover no-repeat;
min-height:100vh;
display:flex;
align-items:flex-end;
justify-content:center;
padding-bottom:40px;
}

.games-section{
padding:50px;
max-width:1450px;
margin:auto;
}

.section-title{
font-size:44px;
color:gold;
margin-bottom:35px;
}

.games-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.game-card{
background:#111;
border-radius:18px;
overflow:hidden;
border:1px solid rgba(255,215,0,0.25);
transition:0.3s;
}

.game-card:hover{
transform:translateY(-7px);
box-shadow:0 0 25px rgba(255,215,0,0.35);
}

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

.game-card h3{
padding:15px;
color:gold;
font-size:24px;
}

.game-card p{
padding:0 15px 20px;
color:#ccc;
}

.bonus{
margin:70px auto;
max-width:1350px;
padding:50px;
border:1px solid gold;
border-radius:20px;
background:linear-gradient(135deg,#111,#1a1200);
text-align:center;
}

.bonus h2{
color:gold;
font-size:52px;
}

.bonus p{
font-size:28px;
}

.bonus-btn{
display:inline-block;
margin-top:20px;
padding:18px 38px;
background:gold;
color:black;
font-weight:bold;
border-radius:12px;
text-decoration:none;
}

footer{
margin-top:70px;
padding:50px;
text-align:center;
border-top:1px solid #222;
color:#aaa;
}

@media(max-width:1000px){
.games-grid{
grid-template-columns:1fr 1fr;
}
}

@media(max-width:700px){
.games-grid{
grid-template-columns:1fr;
}

header{
flex-direction:column;
}
}
