/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Inter:wght@400;500;600;700;800;900&family=Playfair+Display:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap');

/* 9 Anime Moments - Vibrant Anime-Inspired Design */

/* CSS Variables - Anime Color Scheme */
:root {
  /* Primary Anime Palette - Vibrant & Energetic */
  --primary-sakura: #FF69B4;        /* Primary: sakura pink for headers, CTAs */
  --primary-neon: #FF1493;          /* Secondary: neon pink for accents */
  --primary-purple: #9D4EDD;        /* Tertiary: vibrant purple for highlights */
  --primary-lavender: #B794F6;      /* Soft: lavender for backgrounds */
  --primary-deep: #6A0DAD;          /* Deep: deep purple for dark elements */
  --primary-rose: #FF6B9D;          /* Vibrant: rose for accents */
  --primary-cyan: #00D9FF;          /* Anime: cyan complementary */
  
  /* Neutral Colors */
  --dark-text: #1A0B2E;            /* Dark purple-tinted text */
  --medium-text: #4A2C6B;          /* Medium purple-tinted text */
  --light-bg: #FFF0F8;             /* Very light pink-tinted background */
  --border-color: #FFE0F0;         /* Light pink border */
  --dark-bg: #4A0E4E;              /* Deep purple for footer */
  
  /* Accent Colors */
  --accent-gold: #FFD700;          /* Anime gold for highlights */
  --accent-teal: #00CED1;          /* Teal for complementary accents */
  
  /* Typography - Modern & Anime-Inspired */
  --font-brand: 'Playfair Display', 'Georgia', serif;
  --font-heading: 'Noto Sans JP', 'Inter', sans-serif;
  --font-serif: 'Playfair Display', 'Georgia', serif;
  --font-sans: 'Inter', 'Roboto', 'Segoe UI', Tahoma, Arial, sans-serif;
  --font-accent: 'Noto Sans JP', 'Inter', sans-serif;
}


/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  line-height: 1.75;
  color: var(--dark-text);
  background: var(--light-bg);
  font-size: 18px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Anime-Inspired Header */
.header {
  background: linear-gradient(180deg, #fff 0%, var(--light-bg) 100%);
  border-bottom: 3px solid var(--primary-sakura);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(255, 105, 180, 0.25);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo-emoji {
  font-size: 64px;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo .site-title {
  font-size: 44px;
  font-family: var(--font-brand);
  font-weight: 700;
  color: var(--primary-sakura);
  text-decoration: none;
  line-height: 1.2;
  background: linear-gradient(135deg, var(--primary-sakura) 0%, var(--primary-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.logo .site-tagline {
  font-size: 14px;
  color: var(--medium-text);
  margin-top: 6px;
  font-style: normal;
  letter-spacing: 0.8px;
  font-family: var(--font-accent);
  font-weight: 400;
}

/* Anime-Inspired Main Content */
.main-content {
  padding: 30px 0 60px;
}

.content-wrapper {
  background: #fff;
  padding: 32px 40px;
  border: none;
  box-shadow: none;
  border-radius: 8px;
}

.content-wrapper h1 {
  font-family: var(--font-brand);
  font-size: 52px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 20px;
  margin-top: 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.content-wrapper h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--dark-text);
  margin-top: 45px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--primary-sakura);
  padding-bottom: 12px;
  letter-spacing: -0.3px;
}

.content-wrapper h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 35px;
  margin-bottom: 15px;
}

.content-wrapper p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 18px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 30px;
  margin-bottom: 20px;
  margin-top: 15px;
}

.content-wrapper li {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 12px;
}

/* Anime-Inspired FAQ Section with numbered blocks */
.faq-section {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  padding: 25px;
  margin: 40px 0;
  border-radius: 8px;
}

/* Anime-Inspired numbered FAQ blocks for H3 questions - ONLY for FAQ section */
.faq-wrapper {
  counter-reset: faq-counter;
}

/* Apply Anime-Inspired style ONLY to H3 inside faq-wrapper */
.faq-wrapper h3 {
  position: relative;
  counter-increment: faq-counter;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 30px !important;
  margin-bottom: 15px;
  padding: 24px 24px 24px 115px;
  background: linear-gradient(135deg, #fff 0%, var(--light-bg) 100%);
  border: 2px solid var(--primary-lavender);
  border-left: 8px solid var(--primary-sakura);
  min-height: 90px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(157, 78, 221, 0.1);
  transition: all 0.3s ease;
}

.faq-wrapper h3:hover {
  box-shadow: 0 4px 12px rgba(157, 78, 221, 0.2);
  transform: translateX(4px);
}

.faq-wrapper h3::before {
  content: counter(faq-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 84px;
  font-weight: 700;
  color: var(--primary-sakura);
  font-family: var(--font-brand);
  line-height: 1;
  opacity: 0.9;
}

/* Anime-Inspired Home Page Hero - Asymmetric Split Design */
.home-page .hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  margin: 40px 0 60px;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 0 16px 48px rgba(255, 105, 180, 0.3);
  background: #fff;
  min-height: 480px;
  position: relative;
}

.home-page .hero::before {
  display: none;
}

.home-page .hero-content {
  padding: 60px 50px;
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-purple) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
}

.home-page .hero-content::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.home-page .hero-image {
  background: linear-gradient(135deg, var(--primary-sakura) 0%, var(--primary-neon) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  z-index: 1;
  border-radius: 0 24px 24px 0;
}

.home-page .hero-image::before {
  content: '🎌✨💫🌟🎭';
  position: absolute;
  font-size: 140px;
  opacity: 0.3;
  line-height: 1;
  animation: float 20s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
  white-space: nowrap;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

.home-page .hero h1 {
  font-family: var(--font-brand);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
  letter-spacing: -1px;
  position: relative;
  z-index: 1;
  line-height: 1.1;
}

.home-page .hero-subtitle {
  font-size: 22px;
  color: var(--medium-text);
  opacity: 0.95;
  font-weight: 400;
  font-family: var(--font-accent);
  line-height: 1.5;
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-bottom: 32px;
}

.home-page .hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.home-page .hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-page .hero-stats .stat-number {
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--accent-gold);
  line-height: 1;
  text-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.home-page .hero-stats .stat-label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intro-content h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--dark-text);
  text-align: left;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--primary-sakura);
  padding-bottom: 10px;
  background: none;
  -webkit-text-fill-color: var(--dark-text);
}

.intro-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

/* Sensual Green State Cards */
.states {
  margin-top: 40px;
}

.states h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 25px;
  border-bottom: 3px solid var(--primary-sakura);
  padding-bottom: 10px;
  letter-spacing: -0.3px;
}

.states-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.state-card {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.state-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-sakura) 0%, var(--primary-cyan) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.state-card:hover {
  box-shadow: 0 8px 20px rgba(157, 78, 221, 0.25);
  transform: translateY(-4px);
  border-color: var(--primary-lavender);
}

.state-card:hover::before {
  opacity: 1;
}

.state-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.state-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.state-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
  color: var(--dark-text);
  border: none;
  margin: 0;
  transition: color 0.3s ease;
}

.state-card:hover h3 {
  color: var(--primary-sakura);
}

.state-card p {
  padding: 0 15px 15px;
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .home-page .hero h1 {
    font-size: 36px;
  }
  
  .content-wrapper h1 {
    font-size: 32px;
  }
  
  .content-wrapper h2 {
    font-size: 28px;
  }
  
  .states-grid {
    grid-template-columns: 1fr;
  }

  /* Premium block responsive */
  .premium-venues-block {
    padding: 24px;
    margin: 30px 0;
  }

  .premium-header h2 {
    font-size: 32px;
  }

  .premium-description {
    font-size: 16px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .premium-venues-block .feature-item {
    padding: 20px;
  }

  /* Hero images responsive */
  .home-page .hero {
    grid-template-columns: 1fr;
    min-height: 400px;
  }
  
  .home-page .hero-content {
    padding: 40px 30px;
  }
  
  .home-page .hero-image {
    min-height: 200px;
  }
  
  .home-page .hero h1 {
    font-size: 38px;
  }
  
  .home-page .hero-subtitle {
    font-size: 18px;
  }
  
  .home-page .hero-stats {
    gap: 24px;
    margin-top: 24px;
  }
  
  .home-page .hero-stats .stat-number {
    font-size: 28px;
  }
  
  .home-page .hero-stats .stat-label {
    font-size: 12px;
  }
  
  .club-page .featured-image img,
  .state-page .featured-image img,
  .location-page .featured-image img {
    height: 400px;
    border-radius: 12px;
  }

  /* Author card responsive */
  .author-card {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar {
    margin: 0 auto;
  }

  .author-avatar img {
    width: 120px;
    height: 120px;
  }

  .author-social {
    justify-content: center;
  }
}

/* Remove old decorative styles */
.content-wrapper::before {
  display: none;
}

body::before {
  display: none;
}

/* Premium Venues Block */
.premium-venues-block {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
  border: 2px solid var(--primary-lavender);
  border-radius: 16px;
  padding: 40px;
  margin: 40px 0;
  box-shadow: 0 6px 24px rgba(157, 78, 221, 0.12);
}

.premium-header h2 {
  font-family: var(--font-brand);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 0;
}

.premium-description {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.7;
  color: var(--medium-text);
  margin-bottom: 35px;
}

.premium-features h3 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 25px;
  margin-top: 0;
}

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

.premium-venues-block .feature-item {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(157, 78, 221, 0.08);
}

.premium-venues-block .feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(157, 78, 221, 0.2);
  border-color: var(--primary-lavender);
}

.premium-venues-block .feature-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}

.premium-venues-block .feature-content h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-deep);
  margin-bottom: 8px;
  margin-top: 0;
}

.premium-venues-block .feature-content p {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--medium-text);
  margin: 0;
}

/* Sensual Green pages (clubs, states, locations) */
.club-page h1,
.state-page h1,
.location-page h1 {
  font-family: var(--font-brand);
  font-size: 52px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.club-page .state-header,
.state-page .state-header,
.location-page .state-header {
  margin-bottom: 30px;
}

.club-page .page-description,
.state-page .page-description,
.location-page .page-description {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.5;
  font-style: italic;
}

.club-page .featured-image img,
.state-page .featured-image img,
.location-page .featured-image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  display: block;
  margin-bottom: 35px;
  border: 3px solid var(--primary-lavender);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(255, 105, 180, 0.25);
}

.club-page .state-meta,
.state-page .state-meta,
.location-page .state-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  padding: 15px;
  background: var(--light-bg);
  border-radius: 10px;
  border: 2px solid var(--border-color);
}

.club-page .state-meta span,
.state-page .state-meta span,
.location-page .state-meta span {
  font-size: 14px;
  color: var(--medium-text);
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 6px;
}

.club-page .content,
.state-page .content,
.location-page .content {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
}

.club-page .content h2,
.state-page .content h2,
.location-page .content h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--dark-text);
  margin-top: 45px;
  margin-bottom: 20px;
  border-bottom: 3px solid var(--primary-sakura);
  padding-bottom: 12px;
  letter-spacing: -0.3px;
}

.club-page .content h3,
.state-page .content h3,
.location-page .content h3 {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  color: var(--dark-text);
  margin-top: 35px;
  margin-bottom: 15px;
}

.club-page .content p,
.state-page .content p,
.location-page .content p {
  font-size: 15px;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 18px;
}

/* TOC Styles */
.toc-container {
  background: var(--light-bg);
  border: 2px solid var(--border-color);
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(157, 78, 221, 0.1);
}

.toc-header {
  padding: 15px 20px;
  background: linear-gradient(135deg, #fff 0%, var(--light-bg) 100%);
  border-bottom: 3px solid var(--primary-lavender);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px 10px 0 0;
}

.toc-header h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--dark-text);
  margin: 0;
  border: none;
}

.toc-content {
  padding: 20px;
  background: #fff;
}

.toc-content .toc-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc-content .toc-list li {
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 3px solid var(--primary-sakura);
  padding-left: 15px;
  transition: all 0.2s ease;
}

.toc-content .toc-list li:hover {
  border-left-color: var(--primary-cyan);
  padding-left: 20px;
}

.toc-content .toc-list a {
  color: var(--dark-text);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.toc-content .toc-list a:hover {
  color: var(--primary-sakura);
  text-decoration: underline;
}

/* Breadcrumbs */
.breadcrumbs {
  background: var(--light-bg);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  font-size: 14px;
}

.breadcrumb-list li {
  margin: 0;
}

.breadcrumb-separator {
  color: #999;
  padding: 0 4px;
  font-weight: normal;
}

.breadcrumb-list li a {
  color: #666;
  text-decoration: none;
}

.breadcrumb-list li a:hover {
  color: var(--primary-sakura);
  text-decoration: underline;
}

.breadcrumb-list li.current {
  color: var(--primary-deep);
  font-weight: bold;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-deep) 100%);
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 60px;
}

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

.footer-section h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
  border: none;
}

.footer-section p {
  font-size: 14px;
  color: #ccc;
  margin-bottom: 12px;
}

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

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

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-section ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #999;
}

/* Links */
.content-wrapper a,
.club-page a,
.state-page a {
  color: var(--primary-sakura);
  text-decoration: none;
  transition: all 0.2s ease;
}

.content-wrapper a:hover,
.club-page a:hover,
.state-page a:hover {
  color: var(--primary-deep);
  text-decoration: underline;
}

/* Strong tags */
.content-wrapper strong,
.club-page strong,
.state-page strong {
  color: var(--primary-deep);
  font-weight: bold;
}

/* Images in content */
.content-wrapper img,
.club-page img,
.state-page img {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--border-color);
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(157, 78, 221, 0.1);
}

/* Blockquotes */
.content-wrapper blockquote,
.club-page blockquote,
.state-page blockquote {
  border-left: 4px solid var(--primary-sakura);
  padding-left: 20px;
  margin: 20px 0;
  font-style: italic;
  color: #666;
  background: var(--light-bg);
  padding: 15px 20px;
  border-radius: 6px;
}

/* Code */
.content-wrapper code,
.club-page code,
.state-page code {
  background: var(--light-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--primary-deep);
  border: 1px solid var(--border-color);
}

.content-wrapper pre,
.club-page pre,
.state-page pre {
  background: var(--light-bg);
  padding: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow-x: auto;
  margin: 20px 0;
}

.content-wrapper pre code,
.club-page pre code,
.state-page pre code {
  background: none;
  padding: 0;
  color: #333;
}

/* Cities and clubs grids */
.cities-grid,
.clubs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.city-card,
.club-card {
  background: #fff;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.city-card:hover,
.club-card:hover {
  box-shadow: 0 8px 20px rgba(157, 78, 221, 0.25);
  transform: translateY(-4px);
  border-color: var(--primary-lavender);
}

.city-card a,
.club-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.city-card img,
.club-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border: none;
  margin: 0;
}

.city-card h3,
.club-card h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  padding: 15px;
  color: var(--dark-text);
  border: none;
  margin: 0;
  transition: color 0.3s ease;
}

.city-card:hover h3,
.club-card:hover h3 {
  color: var(--primary-sakura);
}

.city-card .club-info,
.club-card .club-info {
  padding: 0 15px 15px;
}

.city-card p,
.club-card p {
  padding: 0 15px 15px;
  font-size: 14px;
  color: #666;
  margin: 0;
}

.club-description {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
}

.club-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}

.rating {
  color: var(--primary-sakura);
  font-weight: bold;
}

/* Rating display */
.rating-display {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
  padding: 20px;
  margin: 30px 0;
  text-align: center;
  border: 2px solid var(--primary-lavender);
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(157, 78, 221, 0.1);
}

.rating-stars {
  font-size: 24px;
  margin-bottom: 10px;
}

.rating-text {
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-deep);
  margin: 0;
}

/* Author info */
.author-info {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid var(--primary-sakura);
}

.author-card {
  background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
  padding: 25px;
  border: 2px solid var(--primary-lavender);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(157, 78, 221, 0.1);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.author-avatar {
  flex-shrink: 0;
}

.author-avatar img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-lavender);
  box-shadow: 0 4px 12px rgba(157, 78, 221, 0.2);
}

.author-content {
  flex: 1;
}

.author-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 15px;
  margin-top: 0;
  border: none;
}

.author-name {
  margin-bottom: 12px;
}

.author-name strong,
.author-name a {
  font-family: var(--font-brand);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--primary-sakura);
  display: inline-block;
}

.author-card p {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--medium-text);
}

.author-card a {
  color: var(--primary-sakura);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.author-card a:hover {
  color: var(--primary-deep);
  text-decoration: underline;
}

.author-social {
  margin-top: 15px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.author-social a {
  font-size: 14px;
  padding: 6px 14px;
  background: var(--primary-lavender);
  color: var(--primary-deep);
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.author-social a:hover {
  background: var(--primary-sakura);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(157, 78, 221, 0.3);
  text-decoration: none;
}

/* Author Profile Page Styles */
.author-page {
  padding: 40px 0 60px;
}

.author-profile-page {
  max-width: 900px;
  margin: 0 auto;
}

.author-profile-header {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 3px solid var(--border-color);
}

.author-profile-avatar {
  width: 225px;
  height: 225px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--primary-lavender);
  box-shadow: 0 8px 24px rgba(157, 78, 221, 0.25);
  flex-shrink: 0;
}

.author-profile-info {
  flex: 1;
}

.author-profile-info h1 {
  font-family: var(--font-brand);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-sakura);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.author-profile-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.author-profile-social a {
  font-size: 15px;
  padding: 8px 18px;
  background: var(--primary-lavender);
  color: var(--primary-deep);
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.author-profile-social a:hover {
  background: var(--primary-sakura);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(157, 78, 221, 0.3);
}

.author-profile-bio {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--medium-text);
}

.author-profile-bio p {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .author-profile-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .author-profile-info h1 {
    font-size: 36px;
  }

  .author-profile-social {
    justify-content: center;
  }
}

/* Section styles */
.top-cities,
.direct-clubs {
  margin-top: 50px;
}

.top-cities h2,
.direct-clubs h2 {
  font-family: var(--font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 25px;
  border-bottom: 3px solid var(--primary-sakura);
  padding-bottom: 12px;
  letter-spacing: -0.3px;
}

/* Scroll to top button */
#scroll-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-sakura) 0%, var(--primary-cyan) 100%);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 32px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  line-height: 1;
}

#scroll-to-top:hover {
  background: linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-sakura) 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}

#scroll-to-top:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  #scroll-to-top {
    bottom: 90px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }
}

/* Tables - Modern & Elegant Styling */
.content-wrapper table,
.club-page table,
.state-page table,
.location-page table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 30px 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(157, 78, 221, 0.08);
  border: 1px solid var(--border-color);
}

.content-wrapper table thead,
.club-page table thead,
.state-page table thead,
.location-page table thead {
  background: linear-gradient(135deg, var(--primary-sakura) 0%, var(--primary-cyan) 100%);
}

.content-wrapper table thead th,
.club-page table thead th,
.state-page table thead th,
.location-page table thead th {
  padding: 16px 20px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  border-bottom: 3px solid var(--primary-deep);
}

.content-wrapper table thead th:first-child,
.club-page table thead th:first-child,
.state-page table thead th:first-child,
.location-page table thead th:first-child {
  border-top-left-radius: 12px;
}

.content-wrapper table thead th:last-child,
.club-page table thead th:last-child,
.state-page table thead th:last-child,
.location-page table thead th:last-child {
  border-top-right-radius: 12px;
}

.content-wrapper table tbody,
.club-page table tbody,
.state-page table tbody,
.location-page table tbody {
  background: #fff;
}

.content-wrapper table tbody tr,
.club-page table tbody tr,
.state-page table tbody tr,
.location-page table tbody tr {
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--border-color);
}

.content-wrapper table tbody tr:last-child,
.club-page table tbody tr:last-child,
.state-page table tbody tr:last-child,
.location-page table tbody tr:last-child {
  border-bottom: none;
}

.content-wrapper table tbody tr:hover,
.club-page table tbody tr:hover,
.state-page table tbody tr:hover,
.location-page table tbody tr:hover {
  background: var(--light-bg);
  transform: scale(1.01);
  box-shadow: 0 2px 8px rgba(157, 78, 221, 0.12);
}

.content-wrapper table tbody td,
.club-page table tbody td,
.state-page table tbody td,
.location-page table tbody td {
  padding: 14px 20px;
  font-size: 15px;
  color: var(--dark-text);
  line-height: 1.6;
  border: none;
  vertical-align: top;
}

.content-wrapper table tbody td:first-child,
.club-page table tbody td:first-child,
.state-page table tbody td:first-child,
.location-page table tbody td:first-child {
  font-weight: 600;
  color: var(--primary-deep);
}

.content-wrapper table tbody tr:nth-child(even),
.club-page table tbody tr:nth-child(even),
.state-page table tbody tr:nth-child(even),
.location-page table tbody tr:nth-child(even) {
  background: #fafafa;
}

.content-wrapper table tbody tr:nth-child(even):hover,
.club-page table tbody tr:nth-child(even):hover,
.state-page table tbody tr:nth-child(even):hover,
.location-page table tbody tr:nth-child(even):hover {
  background: var(--light-bg);
}

.content-wrapper table tbody td a,
.club-page table tbody td a,
.state-page table tbody td a,
.location-page table tbody td a {
  color: var(--primary-sakura);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.content-wrapper table tbody td a:hover,
.club-page table tbody td a:hover,
.state-page table tbody td a:hover,
.location-page table tbody td a:hover {
  color: var(--primary-deep);
  text-decoration: underline;
}

/* Responsive tables */
@media (max-width: 768px) {
  .content-wrapper table,
  .club-page table,
  .state-page table,
  .location-page table {
    font-size: 14px;
    border-radius: 8px;
  }
  
  .content-wrapper table thead th,
  .club-page table thead th,
  .state-page table thead th,
  .location-page table thead th {
    padding: 12px 12px;
    font-size: 13px;
  }
  
  .content-wrapper table tbody td,
  .club-page table tbody td,
  .state-page table tbody td,
  .location-page table tbody td {
    padding: 10px 12px;
    font-size: 13px;
  }
  
  .content-wrapper table,
  .club-page table,
  .state-page table,
  .location-page table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

/* Comments Section Styles */
.comments-section {
  margin: 60px 0;
  padding: 40px 0;
  border-top: 2px solid var(--light-bg);
}

.comments-section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 30px;
  font-family: var(--font-heading);
}

.comments-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comment-card {
  background: #fff;
  border: 1px solid var(--light-bg);
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.comment-card:hover {
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
  transform: translateY(-2px);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 16px;
}

.comment-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.comment-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.comment-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comment-author-details {
  flex: 1;
}

.comment-author-name {
  font-weight: 600;
  color: var(--primary-deep);
  font-size: 16px;
  margin-bottom: 4px;
}

.comment-date {
  font-size: 14px;
  color: var(--text-muted);
}

.comment-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.comment-rating .star {
  font-size: 18px;
  color: #ddd;
}

.comment-rating .star.filled {
  color: #ffc107;
}

.rating-value {
  font-weight: 600;
  color: var(--primary-deep);
  font-size: 14px;
}

.comment-text {
  color: var(--text-color);
  line-height: 1.7;
  font-size: 15px;
}

/* Comment Form Styles */
.comment-form-section {
  margin: 60px 0;
  padding: 40px;
  background: var(--light-bg);
  border-radius: 12px;
  border: 1px solid #e8e8e8;
}

.comment-form-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-deep);
  margin-bottom: 30px;
  font-family: var(--font-heading);
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--primary-deep);
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--text-color);
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-sakura);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.comment-submit-btn {
  padding: 14px 32px;
  background: var(--primary-sakura);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
  font-family: var(--font-body);
}

.comment-submit-btn:hover {
  background: #ff6b6b;
  transform: translateY(-2px);
}

.comment-submit-btn:active {
  transform: translateY(0);
}

.comment-form-message {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  margin-top: 8px;
}

.comment-form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.comment-form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Comments */
@media (max-width: 768px) {
  .comments-section {
    margin: 40px 0;
    padding: 30px 0;
  }
  
  .comments-section-title,
  .comment-form-title {
    font-size: 24px;
  }
  
  .comment-card {
    padding: 20px;
  }
  
  .comment-form-section {
    padding: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .comment-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .comment-rating {
    align-self: flex-start;
  }
}
