/* ========================================
   POTGLINT.SHOP - CASINO INFORMATION SITE
   Responsible Gaming Practices
   ======================================== */

/* ========================================
   RESET & FOUNDATION
   ======================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f8f9fa;
  color: #1a1a2e;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #1a1a2e;
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -1px;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 1.75rem;
  letter-spacing: -0.25px;
}

h4 {
  font-size: 1.375rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1rem;
}

a {
  color: #ab8e2c;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #16213e;
}

/* ========================================
   HEADER
   ======================================== */

.header {
  background-color: #1a1a2e;
  padding: 1.5rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ab8e2c;
  letter-spacing: 1px;
}

.logo-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  color: #ab8e2c;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 0.25rem;
}

.nav {
  display: flex;
  gap: 2.5rem;
}

.nav a {
  color: #f8f9fa;
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ab8e2c;
  transition: width 0.3s ease;
}

.nav a:hover {
  color: #ab8e2c;
}

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

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #f8f9fa;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #f8f9fa;
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background-color: rgba(171, 142, 44, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #f8f9fa;
  margin-bottom: 1rem;
}

.hero-icon {
  width: 64px;
  height: 64px;
  display: inline-block;
  margin-bottom: 1.5rem;
  color: #ab8e2c;
}

.hero .tagline {
  font-size: 1.5rem;
  color: #ab8e2c;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #e0e0e0;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: #ab8e2c;
  color: #1a1a2e;
  border-color: #ab8e2c;
}

.btn-primary:hover {
  background-color: #16213e;
  color: #ab8e2c;
  border-color: #ab8e2c;
  box-shadow: 0 4px 12px rgba(171, 142, 44, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #ab8e2c;
  border-color: #ab8e2c;
}

.btn-secondary:hover {
  background-color: #ab8e2c;
  color: #1a1a2e;
  box-shadow: 0 4px 12px rgba(171, 142, 44, 0.3);
}

.btn-light {
  background-color: #f8f9fa;
  color: #1a1a2e;
  border-color: #f8f9fa;
}

.btn-light:hover {
  background-color: #1a1a2e;
  color: #f8f9fa;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* ========================================
   SECTION
   ======================================== */

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
}

.section-header p {
  font-size: 1.125rem;
  color: #555;
  max-width: 600px;
  margin: 1rem auto 0;
}

/* Section Divider */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #ab8e2c, transparent);
  margin: 3rem 0;
}

/* ========================================
   CARDS
   ======================================== */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #ab8e2c;
  display: flex;
  flex-direction: column;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-block;
  margin-bottom: 1rem;
  color: #ab8e2c;
}

.card-header {
  padding: 2rem 2rem 0;
}

.card-header h3 {
  color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.card-content {
  padding: 0 2rem;
  flex-grow: 1;
}

.card-content p {
  color: #555;
  line-height: 1.8;
}

.card-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid #f0f0f0;
}

.card-footer a {
  color: #ab8e2c;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-footer a:hover {
  color: #16213e;
}

/* ========================================
   BLOG/ARTICLE LIST
   ======================================== */

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.article {
  background-color: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 4px solid #ab8e2c;
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 2rem;
  padding: 2rem;
}

.article:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0,
