*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;background:#00334f;color:#eee}
.container{max-width:1100px;margin:0 auto;padding:0 16px}
.site-header{position:sticky;top:0;background:#000;border-bottom:1px solid #222;z-index:100}
.site-header .brand{color:#D4AF37;font-weight:700;font-size:20px;text-decoration:none}
.header-row{display:flex;align-items:center;justify-content:space-between;height:64px}
.menu-toggle{display:none;background:transparent;border:0;width:36px;height:36px;padding:0;cursor:pointer}
.menu-toggle span{display:block;height:2px;background:#D4AF37;margin:7px 4px;border-radius:2px}
.nav{display:flex;align-items:center;gap:16px}
.nav a{color:#eee;text-decoration:none}
.nav a:hover{color:#D4AF37}
.nav-cta{padding:8px 12px;border-radius:6px}
.hero{background:linear-gradient(180deg,#111,#000);padding:80px 0;text-align:center}
.hero h1{color:#D4AF37;margin:0 0 12px}
.hero p{margin:0 0 24px}
.btn{display:inline-block;background:#D4AF37;color:#000;padding:12px 20px;border-radius:6px;text-decoration:none;font-weight:600}
.section{padding:48px 0}

/* grid for menu & cards */
.grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:16px}
.card{background:#0f0f0f;border:1px solid #222;border-radius:10px;overflow:hidden}
.card img{width:100%;height:160px;object-fit:cover}
.card .card-body{padding:12px}
.card .title{font-weight:600}
.card .price{color:#D4AF37;font-weight:700}

.site-footer{border-top:1px solid #222;background:#000;padding:24px 0;margin-top:40px}
.footer-brand{color:#D4AF37;font-weight:700}
.form{max-width:520px;margin:24px auto;background:#0f0f0f;border:1px solid #222;border-radius:10px;padding:16px}
.form input,.form select,.form textarea{width:100%;padding:10px;margin:6px 0 12px;background:#111;border:1px solid #333;color:#eee;border-radius:6px}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border-bottom:1px solid #222}
.table th{color:#D4AF37;text-align:left}
.actions a{margin-right:8px}
.alert{padding:10px;border-radius:6px;margin:12px 0}
.alert.success{background:#0d1f0d;color:#c6f6c6;border:1px solid #235b23}
.alert.error{background:#2a0d0d;color:#f8cccc;border:1px solid #692424}

/* CTA cards */
.cta-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:16px}
.cta{background:#0f0f0f;border:1px solid #333;border-radius:12px;padding:20px;text-align:center}
.cta h3{margin:8px 0;color:#D4AF37}
.cta p{margin:0 0 12px}

/* Gallery */
.gallery{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.gallery img{width:100%;aspect-ratio:1/1;object-fit:cover;border-radius:8px;border:1px solid #222}

/* Mobile nav */
@media (max-width: 900px){
  .menu-toggle{display:block}
  .nav{position:fixed;inset:64px 0 0 0;background:#000;display:none;flex-direction:column;padding:16px;border-top:1px solid #222}
  .nav.open{display:flex}
}

/* Pool menu */
body.pool-bg{
  background:url('../img/pool-bg.jpg') center/cover fixed no-repeat,#00111a;
}
.pool-hero{
  padding-top:72px;
}
.pool-hero-inner{
  display:flex;
  flex-wrap:wrap;
  gap:24px;
  align-items:center;
  justify-content:space-between;
}
.pool-hero-text h1{
  color:#D4AF37;
  font-size:40px;
  margin:0 0 8px;
}
.pool-hero-text p{max-width:420px;margin:0;color:#f5f5f5}
.pool-hero-image{
  flex:0 0 260px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 40px rgba(0,0,0,.6);
  transform:translateY(0);
  animation:pool-float 6s ease-in-out infinite;
}
.pool-hero-image img{width:100%;height:100%;object-fit:cover;display:block}

.pool-menu{
  backdrop-filter:blur(8px);
}
.pool-ads-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:16px;
  margin-bottom:32px;
}
.pool-ad-slot{
  background:rgba(0,0,0,.6);
  border-radius:16px;
  padding:10px;
  border:1px solid rgba(255,255,255,.06);
  min-height:120px;
}
.pool-ad-slot img{width:100%;height:100%;object-fit:cover;border-radius:12px}

.pool-category{margin-bottom:32px}
.pool-category h2{color:#D4AF37;margin:0 0 12px}
.pool-items-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:18px;
}
.pool-item-card{
  background:rgba(0,0,0,.78);
  border-radius:14px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 14px 30px rgba(0,0,0,.65);
  transform:translateY(8px);
  opacity:0;
  animation:pool-fade-up .7s ease forwards;
}
.pool-item-card:hover{
  transform:translateY(0) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,.8);
}
.pool-item-media img{width:100%;height:150px;object-fit:cover}
.pool-item-body{padding:12px 14px 14px}
.pool-item-header{
  display:flex;
  justify-content:space-between;
  gap:6px;
  align-items:flex-start;
}
.pool-item-header h3{margin:0;font-size:16px}
.pool-price{color:#D4AF37;font-weight:700;white-space:nowrap}
.pool-desc{margin:6px 0 0;font-size:13px;color:#e0e0e0}

.pool-fade-in{animation:pool-fade-in 0.7s ease both}
.pool-animate-up{animation:pool-fade-up 0.7s ease both}

@keyframes pool-float{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-10px)}
}
@keyframes pool-fade-in{
  from{opacity:0;transform:translateY(10px)}
  to{opacity:1;transform:translateY(0)}
}
@keyframes pool-fade-up{
  from{opacity:0;transform:translateY(18px)}
  to{opacity:1;transform:translateY(0)}
}

@media (max-width: 800px){
  .pool-hero-inner{flex-direction:column}
}

