/* NEW RANKNESTLE STYLE - MODERN, CLEAN, AND DISTINCT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --accent: #f59e42;
  --bg: #f7f9fb;
  --surface: #fff;
  --text: #222;
  --text-light: #666;
  --border: #e5e7eb;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(30,64,175,0.07);
}

body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
}

body, p, ul, ol, li, .card-desc, .hero-desc {
  font-size: 1.35rem;
}

/* HEADER */
.site-header {
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 0 0 0 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  flex-wrap: nowrap;
  height: 56px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
  text-decoration: none;
  margin: 0;
  padding: 0;
  height: 40px;
}
.site-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  margin: 0;
  padding: 0;
  display: block;
}
.site-nav {
  display: flex;
  gap: 2rem;
}
.site-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  transition: color 0.2s;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
}
.site-nav a.active, .site-nav a:hover {
  color: var(--primary);
  background: #e0e7ff;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  padding: 3.5rem 0 2.5rem 0;
  text-align: center;
}
.hero-title {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.hero-desc {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.hero-cta {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.2s;
}
.hero-cta:hover {
  background: #fbbf24;
}

/* MAIN LAYOUT */
.main-content {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 2rem;
  display: flex;
  gap: 2.5rem;
}
.sidebar {
  flex: 0 0 270px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.2rem;
  border: 1px solid var(--border);
  min-height: 400px;
}
.content-area {
  flex: 1 1 0%;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
}

/* CARDS */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem;
  transition: box-shadow 0.2s, border 0.2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(37,99,235,0.13);
  border: 1.5px solid var(--primary);
}
.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--primary-dark);
}
.card-desc {
  color: var(--text-light);
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
}
.card-cta {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
.card-cta:hover {
  background: var(--primary-dark);
}

/* FOOTER */
.site-footer {
  background: var(--primary-dark);
  color: #fff;
  padding: 2.5rem 0 1.2rem 0;
  margin-top: 4rem;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 180px;
}
.footer-title {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.footer-link {
  color: #c7d2fe;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  transition: color 0.2s;
}
.footer-link:hover {
  color: var(--accent);
}
.footer-bottom {
  text-align: center;
  color: #c7d2fe;
  font-size: 0.95rem;
  margin-top: 2rem;
}

/* FORMS */
input, select, textarea {
  font-family: inherit;
  font-size: 1.15rem;
  border-radius: 7px;
  border: 1px solid var(--border);
  padding: 0.7rem 1rem;
  margin-bottom: 1.2rem;
  width: 100%;
  box-sizing: border-box;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px #2563eb22;
}
button, .btn {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover, .btn:hover {
  background: var(--primary-dark);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .main-content, .site-header-inner, .site-footer-inner {
    max-width: 100%;
    padding: 0 1.5rem;
  }
  .card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}
@media (max-width: 900px) {
  .main-content {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .site-header-inner, .site-footer-inner {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 0 1rem;
  }
  .card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
  .why-choose-us {
    padding: 2rem 1rem;
  }
  .hamburger {
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: #fff;
    border: 2px solid var(--primary-dark);
    z-index: 2001;
    position: static;
    right: unset;
    top: unset;
    transform: none;
    height: 40px;
    width: 48px;
    padding: 0;
  }
  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    box-shadow: 0 4px 24px rgba(37,99,235,0.07);
    border-radius: 0 0 12px 12px;
    padding: 0.7rem 1.2rem;
    display: none;
    z-index: 1100;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    width: 100%;
    padding: 1rem 0.5rem;
    font-size: 1.1rem;
    border-radius: 6px;
    margin: 0.2rem 0;
  }
  .site-header-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    padding: 0.7rem 0.7rem;
    position: relative;
  }
  .site-logo {
    display: flex;
    align-items: center;
    height: 40px;
    margin: 0;
    padding: 0;
  }
  .site-logo img {
    width: 36px;
    height: 36px;
    margin: 0;
    padding: 0;
    display: block;
  }
}
@media (max-width: 768px) {
  .main-content, .site-header-inner, .site-footer-inner {
    padding: 0 0.5rem;
  }
  .hero {
    padding: 2.2rem 0 1.2rem 0;
  }
  .hero-title {
    font-size: 2rem;
  }
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .why-choose-us {
    padding: 1.2rem 0.5rem;
  }
  .why-choose-title {
    font-size: 1.5rem;
  }
  .why-choose-desc, .why-choose-list {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .main-content, .site-header-inner, .site-footer-inner {
    padding: 0 0.2rem;
  }
  .site-footer, .site-footer-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-title {
    font-size: 1.3rem;
  }
  .hero-desc {
    font-size: 1rem;
  }
  .site-disclaimer {
    font-size: 1rem;
    padding: 1rem 0.5rem;
  }
  .card-title {
    font-size: 1.1rem;
  }
  .card-desc {
    font-size: 1rem;
  }
  .why-choose-title {
    font-size: 1.1rem;
  }
  .why-choose-desc, .why-choose-list {
    font-size: 0.95rem;
  }
  .site-header-inner {
    padding: 0 0.3rem;
    height: 48px;
  }
  .site-logo {
    height: 36px;
  }
  .hamburger {
    height: 36px;
    width: 44px;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 1.2rem 0 0.7rem 0;
  }
  .main-content, .site-header-inner, .site-footer-inner {
    padding: 0;
  }
  .card, .why-choose-us, .site-disclaimer {
    padding: 0.7rem 0.3rem;
  }
  .card-title {
    font-size: 1rem;
  }
  .card-desc {
    font-size: 0.95rem;
  }
} 

.site-disclaimer {
  max-width: 800px;
  margin: 1.5rem auto 2.5rem auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.05);
  padding: 1.3rem 1.5rem;
  font-size: 1.15rem;
  color: #1a237e;
  text-align: center;
}

.why-choose-us {
  margin: 3rem auto 0 auto;
  max-width: 900px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.06);
  padding: 2.5rem 2rem 2.5rem 2rem;
}
.why-choose-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 1.3rem;
  color: var(--primary-dark);
  text-align: center;
}
.why-choose-desc {
  font-size: 1.25rem;
  color: #333;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1.5rem auto;
}
.why-choose-list {
  list-style: disc inside;
  color: #222;
  font-size: 1.18rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
} 

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: #fff;
  border: 2px solid var(--primary-dark);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(30,64,175,0.10);
  cursor: pointer;
  z-index: 2000;
  transition: background 0.2s, border 0.2s;
  position: relative;
}
.hamburger:hover, .hamburger:focus {
  background: #e0e7ff;
  border-color: var(--primary);
}
.hamburger-bar {
  width: 28px;
  height: 4px;
  background: var(--primary-dark);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
  box-shadow: 0 1px 2px rgba(30,64,175,0.10);
} 

.featured-casinos-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
} 

.sidebar-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.sidebar-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sidebar-highlights {
  margin-top: 2.5rem;
}
.sidebar-highlights-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}
.sidebar-highlights-list {
  list-style: disc inside;
  color: var(--text-light);
  font-size: 0.98rem;
}
.game-categories-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary-dark);
} 

.start-now-btn {
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  margin-left: 1rem;
  box-shadow: 0 2px 8px rgba(245, 158, 66, 0.13);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  border: none;
  display: inline-block;
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}
.start-now-btn:hover, .start-now-btn:focus {
  background: #fbbf24;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(245, 158, 66, 0.22);
  text-decoration: none;
}
@media (max-width: 900px) {
  .start-now-btn {
    width: 100%;
    margin: 0.5rem 0 0.5rem 0;
    text-align: center;
    font-size: 1.1rem;
  }
} 

/* Compliance Fix: 18+ disclaimer */
.compliance-age-bar {
  width: 100%;
  background: #222;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.4rem 0;
  letter-spacing: 0.03em;
  z-index: 2000;
  position: relative;
}

/* Compliance Fix: Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3000;
  background: #fff;
  border-top: 2px solid #f59e42;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.07);
  padding: 1.1rem 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.cookie-banner-text {
  color: #222;
  font-size: 1.1rem;
  margin-right: 1.2rem;
}
.cookie-btn {
  border: none;
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  margin-right: 0.7rem;
}
.cookie-accept {
  background: #2563eb;
  color: #fff;
}
.cookie-reject {
  background: #eee;
  color: #222;
}

/* Compliance Fix: Responsible Gambling Footer Section */
.footer-responsible {
  margin: 2rem 0 1rem 0;
  text-align: center;
}
.footer-responsible span {
  font-weight: 600;
}
.footer-responsible a {
  color: #2563eb;
  font-weight: 600;
  margin: 0 0.7rem;
  text-decoration: underline;
} 
 