/* AnimaChannel - Bold Pink/Teal Theme */

:root {
  --background: #faf5f5;
  --foreground: #1a1a1a;
  --card: #ffffff;
  --card-foreground: #1a1a1a;
  --primary: #1a1a1a;
  --primary-foreground: #ffffff;
  --secondary: #f0e6e6;
  --secondary-foreground: #1a1a1a;
  --muted: #e8dcdc;
  --muted-foreground: #6b5a5a;
  --accent: #ff3366;
  --accent-foreground: #ffffff;
  --border: #dcc8c8;
  --input: #f5eaea;
  --ring: #ff3366;
  --radius: 0.75rem;

  --hot-pink: #ff3366;
  --teal: #00d4aa;
  --indigo: #6366f1;
  --navy: #1e3a5f;
  --plaid-pink: #ff69b4;
  --plaid-teal: #40e0d0;
}

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

html {
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

/* Global image responsive handling */
img {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--secondary);
}

::-webkit-scrollbar-thumb {
  background: var(--hot-pink);
  border-radius: 3px;
}

::selection {
  background: var(--hot-pink);
  color: white;
}

/* Typography */
.font-serif {
  font-family: 'Playfair Display', Georgia, serif;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 245, 0.9);
  backdrop-filter: blur(12px);
}

.top-bar {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.5rem 0;
  font-size: 0.75rem;
}

.top-bar a:hover {
  text-decoration: underline;
}

.main-header {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}

.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.5rem;
  right: 0.5rem;
  height: 2px;
  background: var(--hot-pink);
  transform: scaleX(0);
  transition: transform 0.3s;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Mobile Menu */
.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  border: 2px solid var(--foreground);
  border-radius: 0.5rem;
  background: transparent;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-menu {
  display: none;
  padding: 1rem;
  border-top: 1px solid var(--border);
  background: var(--background);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background 0.3s;
}

.mobile-nav a:hover {
  background: var(--secondary);
}

/* Card Styles */
.card-bold {
  background: var(--card);
  border: 2px solid var(--foreground);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.card-bold:hover {
  box-shadow: 6px 6px 0 var(--foreground);
  transform: translate(-3px, -3px);
}

.card-pink {
  background: linear-gradient(135deg, #ff3366 0%, #ff69b4 100%);
  color: white;
  border-radius: var(--radius);
}

.card-teal {
  background: linear-gradient(135deg, #00d4aa 0%, #40e0d0 100%);
  color: white;
  border-radius: var(--radius);
}

.card-navy {
  background: var(--navy);
  color: white;
  border-radius: var(--radius);
}

.card-stack {
  position: relative;
}

.card-stack::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 8px;
  right: -8px;
  bottom: -8px;
  background: var(--hot-pink);
  border-radius: inherit;
  z-index: -1;
}

.card-stack::after {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  right: -16px;
  bottom: -16px;
  background: var(--teal);
  border-radius: inherit;
  z-index: -2;
}

/* Tags */
.tag-pink {
  background: var(--hot-pink);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-teal {
  background: var(--teal);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-navy {
  background: var(--navy);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tag-outline {
  background: transparent;
  color: var(--foreground);
  border: 1.5px solid var(--foreground);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-pink {
  background: var(--hot-pink);
  color: white;
  border: 2px solid var(--hot-pink);
}

.btn-pink:hover {
  background: transparent;
  color: var(--hot-pink);
}

.btn-teal {
  background: var(--teal);
  color: white;
  border: 2px solid var(--teal);
}

.btn-teal:hover {
  background: transparent;
  color: var(--teal);
}

.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 2px solid var(--foreground);
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 2rem 1rem 4rem;
  overflow: hidden;
  max-width: 100%;
}


.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--foreground);
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  gap: 1rem;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}

.hero-main-card {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero-main-card {
    grid-column: span 8;
    grid-row: span 2;
  }
}

.hero-main-inner {
  display: grid;
  height: 100%;
}

@media (min-width: 1024px) {
  .hero-main-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 3rem;
  }
}

.hero-tags {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-title {
  margin-top: 2rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
}

.hero-title .highlight {
  position: relative;
  display: inline-block;
}

.hero-title .highlight svg {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 12px;
}

.hero-description {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 400px;
}

.hero-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  position: relative;
  display: none;
  min-height: 300px;
}

@media (min-width: 1024px) {
  .hero-image {
    display: block;
  }
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  animation: float-subtle 5s ease-in-out infinite;
}

.hero-stat-card {
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .hero-stat-card {
    grid-column: span 4;
  }
}

.hero-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.hero-stat-value {
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: 900;
}

.hero-stat-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* Marquee */
.marquee-section {
  margin-top: 2rem;
  overflow: hidden;
  border: 2px solid var(--foreground);
  border-radius: 1rem;
  background: var(--foreground);
  padding: 0.75rem 0;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0 1rem;
  color: var(--background);
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

/* Featured Section */
.section {
  padding: 4rem 1rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-title {
  margin-top: 1rem;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

/* Bento Grid */
.bento-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bento-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .bento-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.bento-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
  z-index: 10;
}

.bento-large {
  grid-column: span 1;
  grid-row: span 1;
  background: white;
}

@media (min-width: 1024px) {
  .bento-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

.casino-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  height: 100%;
  overflow: hidden;
}

.casino-card .casino-content {
  padding: 0;
  flex: 1;
  min-width: 0;
}

.casino-card .casino-name {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.casino-card .casino-rating {
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.casino-card .casino-rating .star {
  font-size: 0.65rem;
}

.casino-card .casino-rating-value {
  font-weight: 600;
  color: var(--brand-green, #1e5631);
}

.casino-card-large {
  display: grid;
  height: 100%;
}

@media (min-width: 1024px) {
  .casino-card-large {
    grid-template-columns: 3fr 2fr;
    height: 100%;
  }
  .casino-card-large .casino-image {
    aspect-ratio: auto;
    height: 100%;
    min-height: 300px;
  }
  .casino-card-large .casino-content {
    justify-content: center;
  }
}

.casino-image {
  position: relative;
  aspect-ratio: 1/1;
  width: 56px;
  height: 56px;
  overflow: hidden;
  border-radius: 12px;
  flex-shrink: 0;
}

.casino-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.casino-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
}

.casino-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.casino-rank {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--muted-foreground);
}

.casino-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-top: 0.75rem;
}

.casino-rating .star {
  color: #fbbf24;
  fill: #fbbf24;
}

.casino-rating-value {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.casino-description {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  flex-grow: 1;
}

.casino-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.casino-action {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--accent);
}

.casino-action svg {
  transition: transform 0.3s;
}

.casino-card:hover .casino-action svg {
  transform: translateX(4px);
}

/* Comparison Table */
.comparison-section {
  text-align: center;
}

.comparison-description {
  margin-top: 1rem;
  color: var(--muted-foreground);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.comparison-table {
  margin-top: 2.5rem;
  overflow: hidden;
}

.table-header {
  display: none;
  padding: 1rem 1.5rem;
  background: var(--foreground);
  color: var(--background);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 1024px) {
  .table-header {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 2fr 1.5fr 1fr;
    gap: 1rem;
  }
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-bottom: 2px solid var(--border);
  align-items: center;
}

@media (min-width: 1024px) {
  .table-row {
    grid-template-columns: 1fr 2fr 1fr 2fr 1.5fr 1fr;
  }
}

.table-row:last-child {
  border-bottom: none;
}

.table-row.highlight {
  background: rgba(255, 51, 102, 0.05);
}

.table-rank {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 0.5rem;
  font-weight: 900;
  border: 2px solid var(--foreground);
}

.table-rank.top {
  background: linear-gradient(135deg, var(--hot-pink), var(--teal));
  color: white;
  border: none;
}

.table-name {
  font-weight: 700;
}

.table-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  border: 2px solid #fbbf24;
  background: rgba(251, 191, 36, 0.1);
  font-size: 0.875rem;
  font-weight: 700;
}

.table-bonus {
  font-size: 0.875rem;
  font-weight: 500;
}

.table-features {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .table-features {
    display: flex;
  }
}

.table-feature {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.table-feature .check {
  color: var(--teal);
}

.table-feature .x {
  color: var(--muted-foreground);
}

.table-actions {
  display: flex;
  justify-content: flex-end;
}

/* Why Trust Us */
.trust-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-card {
  padding: 2rem;
  text-align: center;
}

.trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--teal));
  color: white;
  margin-bottom: 1rem;
}

.trust-title {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.trust-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* News Section */
.news-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  overflow: hidden;
}

.news-image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

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

.news-content {
  padding: 1.5rem;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.news-title {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.news-excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 2px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--muted-foreground);
}

/* Footer */
.site-footer {
  margin-top: 5rem;
  border-top: 2px solid var(--border);
}

.footer-brand-text {
  overflow: hidden;
  padding: 4rem 0;
  text-align: center;
}

.footer-brand-text span {
  font-size: clamp(60px, 12vw, 150px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--foreground);
  opacity: 0.08;
}

.footer-main {
  padding: 0 1rem 2rem;
}

.footer-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

.footer-brand-info p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--foreground);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--foreground);
  color: var(--background);
}

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

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

.footer-column li {
  margin-bottom: 0.75rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--foreground);
}

.footer-badge {
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--teal));
  color: white;
}

.age-badge span {
  font-size: 2.5rem;
  font-weight: 900;
}

.age-badge p {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-top: 0.25rem;
}

.footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
}

.footer-bottom {
  padding: 2rem 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Page Hero */
.page-hero {
  position: relative;
  padding: 4rem 1rem;
  background: linear-gradient(135deg, var(--secondary), var(--background));
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 2px var(--foreground);
  opacity: 0.05;
  white-space: nowrap;
}

.page-hero-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.page-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 1rem;
}

.page-hero-description {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 1.125rem;
}

/* Page Content */
.page-content {
  padding: 4rem 1rem;
}

.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.content-section {
  margin-bottom: 3rem;
}

.content-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border);
}

.content-section p {
  margin-bottom: 1rem;
  color: var(--muted-foreground);
  line-height: 1.8;
}

.content-section ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  color: var(--muted-foreground);
}

/* Contact Form */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info-card {
  padding: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--teal));
  color: white;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-info-text p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.contact-form {
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s;
  background: var(--background);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

/* Team Grid */
.team-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  text-align: center;
  padding: 2rem;
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, var(--hot-pink), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2.5rem;
  font-weight: 700;
}

.team-name {
  font-weight: 700;
  font-size: 1.125rem;
}

.team-role {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}

.team-bio {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 1rem;
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.hidden { display: none; }
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
}
@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
}

.w-full { width: 100%; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }

.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: calc(var(--radius) + 0.25rem); }
.rounded-xl { border-radius: calc(var(--radius) + 0.5rem); }
.rounded-2xl { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }

.overflow-hidden { overflow: hidden; }

.transition { transition: all 0.3s ease; }

.opacity-80 { opacity: 0.8; }
.opacity-60 { opacity: 0.6; }

/* Grid Pattern Background */
.grid-pattern {
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Mobile Responsive Overflow Fixes */
@media (max-width: 767px) {
  /* Ensure sections don't overflow */
  section {
    overflow-x: hidden;
  }

  /* Table responsive wrapper */
  .table-responsive,
  .comparison-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Table mobile layout */
  .table-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 1rem;
  }

  /* Pre/Code elements */
  pre, code {
    max-width: 100%;
    overflow-x: auto;
    word-wrap: break-word;
  }

  /* Fix card-stack overflow on mobile */
  .card-stack::before,
  .card-stack::after {
    display: none;
  }

  /* Hero section mobile fixes */
  .hero-bg-text {
    font-size: 60px;
  }

  /* Page hero background text */
  .page-hero-bg {
    font-size: 50px;
  }

  /* Footer brand text mobile */
  .footer-brand-text span {
    font-size: 50px;
  }

  /* Footer grid mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Button full width on mobile */
  .btn-lg {
    width: 100%;
    text-align: center;
  }

  /* Explore grid cards */
  #exploreGrid .col-6 {
    padding: 0.25rem;
  }

  /* Related brands grid */
  #relatedGrid .col-6 {
    padding: 0.25rem;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .container {
    padding: 0 0.75rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

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

  .page-hero-title {
    font-size: 1.75rem;
  }

  /* Hide decorative elements on very small screens */
  .hero-bg-text,
  .page-hero-bg,
  .footer-brand-text {
    display: none;
  }
}
