/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Caudex:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
  --primary: #00C389;
  /* teal like choosefluid */
  --primary-dark: #00a475;
  --bg: #ffffff;
  --text: #1f2937;
  /* gray-800 */
  --muted: #6b7280;
  /* gray-500 */
  --line: #e5e7eb;
  /* gray-200 */
  --card: #f9fafb;
  /* gray-50 */
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: 'Caudex', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55
}

a {
  color: var(--text);
  text-decoration: none
}

img {
  max-width: 100%;
  display: block
}

.container {
  width: min(1100px, 92%);
  margin-inline: auto
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(8px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700
}

.brand-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.brand .dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  cursor: pointer;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 20px;
}

.hamburger-icon span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text);
  transition: all 0.3s ease;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav a {
  margin-left: 20px;
  color: var(--muted)
}

.nav a:hover {
  color: var(--text)
}

@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
  
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 20px 0;
    flex-direction: column;
    align-items: flex-start;
    z-index: 100;
  }
  
  .main-nav.active {
    display: flex;
  }
  
  .nav a {
    margin: 10px 0;
    padding: 10px 20px;
    width: 100%;
  }
  
  .hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .hamburger-icon.active span:nth-child(2) {
    opacity: 0;
  }
  
  .hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  transition: .2s ease;
  box-shadow: 0 4px 14px rgba(0, 195, 137, .2)
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px)
}

.btn.outline {
  background: #fff;
  color: var(--primary);
  border: 1px solid var(--primary)
}

.section {
  padding: 60px 0
}

.section.light {
  background: var(--card)
}

.grid {
  display: grid;
  gap: 24px
}

.grid-2 {
  grid-template-columns: 1.1fr .9fr
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr)
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px
}

.kicker {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700
}

h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 8px 0 10px
}

h2 {
  font-size: 28px;
  margin: 0 0 12px
}

h3 {
  font-size: 18px;
  margin: 0 0 8px
}

p {
  margin: 0 0 14px;
  color: var(--muted)
}

.small {
  font-size: 12px
}

.hero {
  padding: 70px 0 40px;
}

.hero .image {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line)
}

.badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px
}

.badges .item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted)
}

.badges .item img {
  width: 24px;
  height: 24px
}

.list {
  display: grid;
  gap: 14px
}

.list-icon {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  margin-right: 12px;
}

.list .row {
  display: flex;
  gap: 12px
}

.list .dot {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  margin-top: 7px;
}

footer {
  background: #0f172a;
  color: #e2e8f0;
  margin-top: 60px;
  padding: 40px 0 20px
}

footer a {
  color: #e2e8f0
}

.footer-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 2fr repeat(3, 1fr)
}

.disclaimer {
  background: #dc2626;
  color: #ffffff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 2px solid #ffffff;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: pulse 2s infinite
}

@keyframes pulse {
  0% {
    background-color: #dc2626
  }

  50% {
    background-color: #b91c1c
  }

  100% {
    background-color: #dc2626
  }
}

.emblems {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 24px 0;
  justify-content: center;
}

.emblems img {
  width: 196px;
  height: 96px;
  border-radius: 20px;
  border: 1px solid #1f2937;
  background: #0b1220;
  padding: 18px;
  object-fit: contain;
  object-position: center;
}

.emblems img[src*=".svg"] {
  width: 196px;
  height: 96px;
  padding: 24px;
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #0f172a;
  color: #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.5s ease;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cookie-content p {
  margin: 0;
  color: #e2e8f0;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-content a {
  color: #00C389;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
}

.cookie-buttons .btn {
  flex: 1;
  margin: 0;
  text-align: center;
}

@media (max-width: 768px) {
  .cookie-consent {
    bottom: 10px;
    left: 10px;
    right: 10px;
    padding: 15px;
  }
  
  .cookie-content {
    gap: 12px;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
}

.footer-bottom {
  margin-top: 10px;
  border-top: 1px solid #1f2937;
  padding-top: 12px;
  font-size: 12px;
  color: #94a3b8
}

/* Game Showcase Styles */
.game-showcase {
  text-align: center;
  padding: 30px 0;
}

.game-showcase .kicker {
  margin-bottom: 10px;
}

.game-showcase h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.game-info {
  text-align: left;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.cta-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px
}

.kv {
  font-weight: 600;
  color: var(--text)
}

.note {
  font-size: 13px;
  color: var(--muted)
}

@media (max-width: 860px) {
  .grid-2 {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  h1 {
    font-size: 34px
  }
  
  .game-showcase h2 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .emblems img {
    width: 180px;
    height: 80px;
  }
  
  .emblems img[src*=".svg"] {
    width: 180px;
    height: 80px;
  }
}