:root {

  /* Luxury Netherlands Casino Theme */

  --bg: #f5f7fb;
  --surface: #ffffff;
  --surface-soft: #eef3f8;

  --text: #0b1220;
  --muted: #5b6778;

  --line: rgba(15, 23, 42, 0.08);

  /* Main Brand Colors */

  --midnight: #071226;
  --royal: #0d2d62;
  --velvet: #6b1020;
  --gold: #d4a63c;
  --amber: #ff7a00;
  --ice: #dbeafe;

  /* Gradients */

  --primary-gradient:
    linear-gradient(135deg, #071226 0%, #0d2d62 100%);

  --luxury-gradient:
    linear-gradient(135deg, #d4a63c 0%, #ff7a00 100%);

  --glass:
    rgba(255,255,255,0.7);

  --shadow:
    0 30px 80px rgba(7, 18, 38, 0.12);

  --soft-shadow:
    0 10px 25px rgba(15, 23, 42, 0.06);

  --radius:
    26px;

  --max:
    1240px;
}

/* Reset */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{

  font-family:
    "Inter",
    "Plus Jakarta Sans",
    sans-serif;

  background:
    radial-gradient(circle at top left,
      rgba(255,122,0,0.08),
      transparent 28%),

    radial-gradient(circle at bottom right,
      rgba(13,45,98,0.08),
      transparent 35%),

    var(--bg);

  color:var(--text);

  line-height:1.7;
}

/* Global */

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
}

.container{
  width:min(100% - 40px, var(--max));
  margin:auto;
}

/* Header */

.header{

  position:sticky;
  top:0;

  z-index:100;

  background:
    rgba(255,255,255,0.78);

  backdrop-filter:blur(18px);

  border-bottom:
    1px solid var(--line);
}

.header-inner{

  min-height:88px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* Logo */

.logo{

  display:flex;
  align-items:center;
  gap:14px;

  font-weight:900;

  color:var(--midnight);

  letter-spacing:-0.03em;
}

.logo small{

  display:block;

  font-size:11px;

  color:var(--amber);

  text-transform:uppercase;

  letter-spacing:0.16em;

  margin-top:3px;
}

.logo-icon{

  width:52px;
  height:52px;

  border-radius:16px;

  background:
    var(--primary-gradient);

  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;

  box-shadow:
    0 10px 25px rgba(7,18,38,0.22);
}

.logo-icon::after{

  content:"CC";

  color:#fff;

  font-size:15px;

  font-weight:900;
}

/* Navigation */

nav{

  display:flex;
  align-items:center;
  gap:8px;
}

nav a{

  padding:11px 18px;

  border-radius:12px;

  font-size:14px;

  font-weight:700;

  transition:0.3s ease;
}

nav a:hover{

  background:var(--surface-soft);

  color:var(--royal);
}

.nav-btn{

  background:
    var(--luxury-gradient);

  color:#fff !important;

  box-shadow:
    0 12px 24px rgba(255,122,0,0.22);
}

/* Hero */

.hero{

  padding:
    110px 0 90px;
}

.hero-grid{

  display:grid;

  grid-template-columns:
    0.9fr 1.1fr;

  gap:26px;
}

.hero-card,
.hero-main,
.panel,
.card,
.hotel-card{

  background:var(--surface);

  border:
    1px solid var(--line);

  border-radius:var(--radius);

  box-shadow:var(--soft-shadow);
}

/* Left Card */

.hero-card{

  padding:42px;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8fbff 100%
    );

  border-left:
    5px solid var(--amber);
}

.hero-card p{

  color:var(--muted);

  margin:20px 0 30px;
}

/* Main Hero */

.hero-main{

  padding:64px;

  position:relative;

  overflow:hidden;
}

.hero-main::before{

  content:"";

  position:absolute;

  top:-60px;
  right:-60px;

  width:220px;
  height:220px;

  border-radius:50%;

  background:
    radial-gradient(circle,
      rgba(255,122,0,0.18),
      transparent 70%);
}

.kicker{

  display:inline-block;

  margin-bottom:16px;

  font-size:12px;

  font-weight:800;

  letter-spacing:0.12em;

  text-transform:uppercase;

  color:var(--amber);
}

h1{

  font-size:
    clamp(42px, 7vw, 76px);

  line-height:1.02;

  letter-spacing:-0.05em;

  margin-bottom:28px;

  color:var(--midnight);
}

h2{

  font-size:38px;

  line-height:1.1;

  margin-bottom:18px;

  color:var(--midnight);

  letter-spacing:-0.03em;
}

h3{

  font-size:22px;

  margin-bottom:14px;

  color:var(--midnight);
}

p{

  color:var(--muted);
}

/* Mini List */

.mini-list{

  display:flex;
  flex-direction:column;
  gap:18px;
}

.mini-list div{

  padding:18px;

  background:var(--surface-soft);

  border-radius:18px;
}

.mini-list strong{

  display:block;

  margin-bottom:8px;

  color:var(--midnight);
}

/* Sections */

section{

  padding:90px 0;
}

.two-column{

  display:grid;

  grid-template-columns:
    1fr 0.8fr;

  gap:24px;
}

/* Panels */

.panel{

  padding:50px;
}

.soft-panel{

  background:
    var(--primary-gradient);

  color:#fff;
}

.soft-panel p{

  color:
    rgba(255,255,255,0.75);
}

.soft-panel h2,
.soft-panel h3,
.soft-panel .kicker{

  color:#fff;
}

/* Info Boxes */

.info-box{

  padding:22px;

  margin-top:20px;

  border-radius:20px;

  background:
    rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.08);
}

/* Titles */

.section-title{

  margin-bottom:30px;
}

.center{

  text-align:center;
}

/* Cards */

.cards{

  display:grid;

  grid-template-columns:
    repeat(3,1fr);

  gap:22px;

  margin-top:50px;
}

.card{

  padding:34px;

  transition:0.35s ease;
}

.card:hover{

  transform:
    translateY(-8px);

  box-shadow:
    var(--shadow);

  border-color:
    rgba(255,122,0,0.3);
}

/* Hotel Grid */

.hotel-grid{

  margin-top:55px;

  display:grid;

  grid-template-columns:
    repeat(4,1fr);

  gap:22px;
}

.hotel-card{

  padding:34px;

  transition:0.4s ease;

  position:relative;

  overflow:hidden;
}

.hotel-card::before{

  content:"";

  position:absolute;

  inset:0;

  background:
    linear-gradient(
      135deg,
      rgba(255,122,0,0.05),
      transparent
    );

  opacity:0;

  transition:0.4s ease;
}

.hotel-card:hover{

  transform:
    translateY(-12px);

  border-color:
    rgba(255,122,0,0.25);

  box-shadow:
    var(--shadow);
}

.hotel-card:hover::before{

  opacity:1;
}

.hotel-card span{

  width:42px;
  height:42px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  margin-bottom:38px;

  font-size:12px;

  font-weight:900;

  background:
    var(--surface-soft);

  color:var(--royal);
}

/* Footer */

.footer{

  background:
    var(--primary-gradient);

  color:#fff;

  padding:
    90px 0 45px;

  margin-top:90px;
}

.footer-box{

  display:flex;
  flex-direction:column;
  gap:30px;
}

.footer-links{

  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.footer-links a{

  padding:11px 18px;

  border-radius:12px;

  border:
    1px solid rgba(255,255,255,0.1);

  transition:0.3s ease;
}

.footer-links a:hover{

  background:#fff;

  color:var(--midnight);
}

.footer-links span{

  padding:11px 18px;

  border-radius:12px;

  background:
    var(--luxury-gradient);

  font-weight:800;
}

.small{

  opacity:0.7;

  font-size:14px;
}

/* Responsive */

@media (max-width:1024px){

  .hero-grid,
  .two-column,
  .cards{

    grid-template-columns:1fr;
  }

  .hotel-grid{

    grid-template-columns:
      repeat(2,1fr);
  }

  .hero-main{

    padding:45px;
  }
}

@media (max-width:640px){

  .hotel-grid{

    grid-template-columns:1fr;
  }

  nav{

    flex-wrap:wrap;
    justify-content:center;
  }

  .header-inner{

    flex-direction:column;

    gap:18px;

    padding:20px 0;
  }

  h1{

    font-size:46px;
  }

  .hero-card,
  .hero-main,
  .panel{

    padding:30px;
  }
}