:root {
  --primary-red: #b91c1c;
  --dark-gold: #a67c00;
  --ink-black: #0a0a0a;
  --cream-white: #faf8f6;
  --light-gold: #d4af37;
  --shadow-black: rgba(10, 10, 10, 0.8);
}

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

body {
  font-family: 'Noto Sans', 'Helvetica', sans-serif;
  background: var(--ink-black);
  color: var(--cream-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Affiliate disclosure banner */
.affiliate-disclosure {
  background: linear-gradient(90deg, #1e293b, #334155);
  border-bottom: 2px solid var(--dark-gold);
  padding: 10px 0;
  margin-top: 82px;
  font-size: 14px;
}

.affiliate-disclosure p {
  text-align: center;
  margin: 0;
}

.affiliate-disclosure a {
  color: var(--light-gold);
  text-decoration: underline;
}

/* Responsible gaming banner */
.responsible-gaming-banner {
  background: linear-gradient(90deg, #7c2d12, #991b1b);
  padding: 12px 0;
  border-bottom: 2px solid #fbbf24;
  font-size: 15px;
}

.responsible-gaming-banner p {
  text-align: center;
  margin: 0;
  color: #ffffff;
}

.responsible-gaming-banner strong {
  color: #fbbf24;
}

/* Author info box */
.author-info {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(185, 28, 28, 0.1));
  border: 1px solid var(--dark-gold);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0 30px 0;
}

.author-info img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--dark-gold);
}

.author-details h4 {
  color: var(--light-gold);
  margin-bottom: 5px;
  font-size: 20px;
}

.author-details p {
  margin: 3px 0;
  color: var(--cream-white);
  opacity: 0.9;
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background: linear-gradient(135deg, var(--ink-black) 0%, rgba(182, 28, 28, 0.2) 100%);
  border-bottom: 2px solid var(--dark-gold);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo img {
  height: 50px;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu a {
  color: var(--cream-white);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.hero {
  margin-top: 80px;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/hero-bg.png') center/cover;
  filter: brightness(0.4);
}

.hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 175, 55, 0.03) 10px,
    rgba(212, 175, 55, 0.03) 20px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--light-gold), var(--cream-white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 30px;
  color: var(--cream-white);
  opacity: 0.95;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-gold));
  color: var(--cream-white);
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.section {
  padding: 80px 0;
  position: relative;
}

.section-dark {
  background: var(--ink-black);
}

.section-light {
  background: linear-gradient(180deg, rgba(182, 28, 28, 0.05) 0%, var(--ink-black) 100%);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--light-gold);
  position: relative;
  display: inline-block;
  width: 100%;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--dark-gold);
}

.section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--cream-white);
  opacity: 0.9;
  margin-bottom: 50px;
}

.content-block {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 60px;
}

.content-block:nth-child(even) {
  flex-direction: row-reverse;
}

.content-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.content-image:hover img {
  transform: scale(1.05);
}

.content-text {
  flex: 1;
}

.content-text h3 {
  font-size: 1.8rem;
  color: var(--light-gold);
  margin-bottom: 20px;
}

.content-text p {
  color: var(--cream-white);
  opacity: 0.95;
  margin-bottom: 15px;
  text-align: justify;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.grid-item {
  background: linear-gradient(135deg, rgba(182, 28, 28, 0.1) 0%, rgba(166, 124, 0, 0.1) 100%);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  padding: 25px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.grid-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--light-gold), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.grid-item:hover::before {
  transform: translateX(100%);
}

.grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
  border-color: var(--light-gold);
}

.grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 15px;
}

.grid-item h4 {
  color: var(--light-gold);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.grid-item p {
  color: var(--cream-white);
  opacity: 0.9;
  font-size: 0.95rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  text-align: center;
  padding: 30px;
  background: rgba(166, 124, 0, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-red), var(--dark-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.feature-card h4 {
  color: var(--light-gold);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--cream-white);
  opacity: 0.9;
}

footer {
  background: var(--ink-black);
  border-top: 2px solid var(--dark-gold);
  padding: 40px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section h4 {
  color: var(--light-gold);
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: var(--cream-white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  color: var(--cream-white);
  opacity: 0.7;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--light-gold);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--ink-black);
    flex-direction: column;
    padding: 20px;
    border-top: 1px solid var(--dark-gold);
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .content-block,
  .content-block:nth-child(even) {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
}

.decorative-pattern {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
}

.pattern-top-left {
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M50 5 L90 25 L90 75 L50 95 L10 75 L10 25 Z" stroke="gold" fill="none" stroke-width="0.5"/></svg>') no-repeat;
}

.pattern-bottom-right {
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="45" stroke="gold" fill="none" stroke-width="0.5"/></svg>') no-repeat;
}