/* Global Styles for casino score */
:root {
  --primary-color: #00bfa6;
  --primary-dark: #00917f;
  --accent-color: #ffb300;
  --bg-color: #041016;
  --bg-alt: #071c24;
  --text-color: #f5f7fa;
  --muted-text: #94a3b8;
  --border-color: #1e293b;
  --danger-color: #ff5252;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --transition-fast: 0.25s ease;
  --transition-slow: 0.5s ease;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #05243a 0, #020617 55%, #000 100%);
  color: var(--text-color);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to right, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.94));
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 40% 60% 65% 35%;
  background: conic-gradient(from 160deg, #00bfa6, #3b82f6, #22c55e, #00bfa6);
  box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.8), 0 10px 30px rgba(0, 191, 166, 0.75);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0, rgba(255, 255, 255, 0.75), transparent 55%);
  mix-blend-mode: screen;
}

.brand-text-main {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-text-sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--muted-text);
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-text);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: width var(--transition-fast);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-links a[aria-current="page"] {
  color: #e2e8f0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: radial-gradient(circle at top left, rgba(56, 189, 248, 0.28), rgba(15, 23, 42, 0.98));
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.nav-cta span.dot {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: radial-gradient(circle at 30% 0, #bbf7d0, #22c55e);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.8), 0 0 24px rgba(74, 222, 128, 0.9);
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.7);
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.95);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #e5e7eb;
  position: relative;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -4px;
}

.nav-toggle span::after {
  top: 4px;
}

.nav-toggle.is-open span {
  transform: rotate(45deg);
}
.nav-toggle.is-open span::before {
  transform: rotate(-90deg) translateX(-4px);
}
.nav-toggle.is-open span::after {
  opacity: 0;
}

.nav-links-mobile {
  display: none;
  flex-direction: column;
  gap: 12px;
  padding: 10px 0 14px;
}

.nav-links-mobile a {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted-text);
}

/* Hero / main shells */
.hero {
  padding: 42px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(45, 212, 191, 0.6);
  background: radial-gradient(circle at left, rgba(34, 197, 94, 0.24), transparent 65%);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a5f3fc;
}

.hero-kicker .pulse-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, #fef9c3, #facc15);
  box-shadow: 0 0 18px rgba(250, 204, 21, 0.9);
}

.hero-title {
  font-size: clamp(2rem, 3.1vw, 2.6rem);
  margin: 18px 0 12px;
  line-height: 1.1;
}

.hero-title span.highlight {
  background: linear-gradient(120deg, #22c55e, #0ea5e9, #a855f7);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted-text);
  max-width: 540px;
  font-size: 0.98rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 22px 0;
}

.hero-meta-pill {
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #041016;
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 26px 60px rgba(5, 150, 105, 0.9);
}

.btn-ghost {
  border-color: rgba(148, 163, 184, 0.6);
  color: #e5e7eb;
  background: rgba(15, 23, 42, 0.9);
}

.btn-ghost:hover {
  background: rgba(15, 23, 42, 1);
  transform: translateY(-1px);
  border-color: rgba(148, 163, 184, 0.9);
}

.hero-footnote {
  margin-top: 18px;
  font-size: 0.78rem;
  color: var(--muted-text);
}

.hero-footnote strong {
  color: #e2e8f0;
}

.hero-visual {
  background: radial-gradient(circle at top, rgba(45, 212, 191, 0.25), rgba(15, 23, 42, 0.98));
  border-radius: 32px;
  padding: 18px 18px 22px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-visual-tag {
  position: absolute;
  top: 16px;
  right: 18px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #e2e8f0;
}

.hero-visual-img {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.9);
}

.hero-visual-footer {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted-text);
}

.hero-badges {
  display: flex;
  gap: 8px;
  align-items: center;
}

.hero-badge {
  padding: 4px 9px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.hero-score {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-score span.number {
  color: #bbf7d0;
  font-weight: 600;
}

/* Sections */
.section {
  padding: 40px 0;
}

.section-header {
  margin-bottom: 24px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.section-kicker {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted-text);
}

.section-title {
  font-size: 1.4rem;
  margin: 4px 0 0;
}

.section-description {
  max-width: 360px;
  font-size: 0.9rem;
  color: var(--muted-text);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 64, 175, 0.9);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
  padding: 16px 16px 18px;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top, rgba(8, 47, 73, 0.75), transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-slow);
  z-index: -1;
}

.card:hover::before {
  opacity: 1;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.card-title {
  font-size: 1rem;
  margin: 0;
}

.card-tag {
  padding: 3px 9px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e2e8f0;
}

.card-body {
  font-size: 0.86rem;
  color: var(--muted-text);
}

.card-metadata {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--muted-text);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pill {
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
  font-size: 0.7rem;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: var(--radius-md);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(30, 64, 175, 0.7);
}

.news-meta {
  font-size: 0.72rem;
  color: var(--muted-text);
  margin-bottom: 4px;
}

.news-title {
  font-size: 0.96rem;
  margin-bottom: 4px;
}

.news-excerpt {
  font-size: 0.84rem;
  color: var(--muted-text);
}

.news-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  color: #e5e7eb;
}

.news-label-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.9);
}

.news-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.9);
}

/* Products page */
.layout-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 2.05fr);
  gap: 22px;
}

.filter-panel {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  padding: 16px 16px 18px;
  border: 1px solid rgba(37, 99, 235, 0.8);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 86px;
}

.filter-title {
  font-size: 0.98rem;
  margin-bottom: 10px;
}

.filter-group {
  margin-bottom: 14px;
}

.filter-group label {
  font-size: 0.82rem;
  color: var(--muted-text);
  display: block;
  margin-bottom: 4px;
}

.filter-select,
.filter-search {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 0.86rem;
}

.filter-select:focus,
.filter-search:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

.filter-hint {
  font-size: 0.74rem;
  color: var(--muted-text);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 163, 74, 0.9);
  padding: 12px 12px 14px;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-thumb {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.9);
}

.product-name {
  font-size: 0.94rem;
  margin: 2px 0;
}

.product-meta {
  font-size: 0.76rem;
  color: var(--muted-text);
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 6px;
  gap: 10px;
}

.product-price {
  font-size: 0.9rem;
}

.product-price span {
  font-size: 0.74rem;
  color: var(--muted-text);
}

.product-badge {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #bbf7d0;
}

.product-tags {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.product-tags span {
  font-size: 0.7rem;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.45);
}

/* About page */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: flex-start;
}

.timeline {
  position: relative;
  padding-left: 16px;
  border-left: 1px dashed rgba(148, 163, 184, 0.6);
}

.timeline-item {
  margin-bottom: 14px;
  position: relative;
}

.timeline-dot {
  position: absolute;
  left: -8px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #a5b4fc, #4f46e5);
  box-shadow: 0 0 12px rgba(79, 70, 229, 0.9);
}

.timeline-year {
  font-size: 0.76rem;
  color: var(--muted-text);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.timeline-title {
  font-size: 0.94rem;
  margin: 2px 0 2px;
}

.timeline-text {
  font-size: 0.84rem;
  color: var(--muted-text);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.team-card {
  background: rgba(15, 23, 42, 0.94);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 235, 0.85);
  padding: 12px 12px 13px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.team-avatar {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.9);
}

.team-meta {
  font-size: 0.8rem;
}

.team-role {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted-text);
}

.team-name {
  font-size: 0.9rem;
}

.team-note {
  font-size: 0.78rem;
  color: var(--muted-text);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 22px;
}

.contact-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 163, 74, 0.9);
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-soft);
}

.contact-card h2 {
  margin-top: 0;
  margin-bottom: 6px;
}

.contact-info {
  font-size: 0.86rem;
  color: var(--muted-text);
}

.contact-info-row {
  margin-top: 8px;
}

.contact-info-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #e2e8f0;
}

.contact-form {
  background: rgba(15, 23, 42, 0.96);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 64, 175, 0.9);
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.form-group {
  margin-bottom: 10px;
}

.form-label {
  display: block;
  font-size: 0.8rem;
  color: #e5e7eb;
  margin-bottom: 3px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  background: rgba(15, 23, 42, 0.95);
  color: #e5e7eb;
  font-size: 0.86rem;
  resize: vertical;
  min-height: 0;
}

.form-textarea {
  min-height: 90px;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(34, 197, 94, 0.4);
}

.form-helper {
  font-size: 0.74rem;
  color: var(--muted-text);
}

.form-error {
  margin-top: 4px;
  font-size: 0.76rem;
  color: var(--danger-color);
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-success {
  margin-top: 8px;
  font-size: 0.8rem;
  color: #bbf7d0;
  display: none;
}

.form-success.is-visible {
  display: block;
}

/* Footer */
.site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(15, 23, 42, 1);
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 1));
  padding: 16px 0 18px;
  font-size: 0.78rem;
  color: var(--muted-text);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.footer-tail {
  max-width: 380px;
  font-size: 0.72rem;
}

.footer-tail span {
  opacity: 0.78;
}

.footer-tail strong {
  font-weight: 500;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Utility */
.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.55);
  font-size: 0.76rem;
  color: #e5e7eb;
}

.badge-soft span.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
}

.muted {
  color: var(--muted-text);
}

.mt-sm {
  margin-top: 10px;
}

.mt-md {
  margin-top: 18px;
}

.mt-lg {
  margin-top: 28px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .layout-two-column,
  .about-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .filter-panel {
    position: static;
  }

  .hero {
    padding-top: 28px;
  }

  .cards-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links-mobile {
    display: flex;
  }

  .section {
    padding: 30px 0;
  }

  .cards-grid,
  .product-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .team-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .news-item {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .site-footer {
    padding-bottom: 22px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    font-size: 1.85rem;
  }

  .brand-text-main {
    font-size: 0.82rem;
  }

  .nav-bar {
    padding: 10px 0;
  }
}


