@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Pirata+One&family=Crimson+Text:ital,wght@0,400;0,600;1,400&display=swap');

.footer-title {
  font-family: 'Cinzel', serif;
  color: #654321;
  margin-bottom: 1.5rem;
}

.footer-link {
  color: #2F1B14;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #8B4513;
}

.social-link {
  color: #8B4513;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #DAA520;
}

.newsletter-input {
  flex: 1;
  padding: 0.5rem;
  border: 1px solid #8B4513;
  border-radius: 4px 0 0 4px;
  font-family: 'Crimson Text', serif;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
}

.newsletter-btn {
  background: linear-gradient(135deg, #DAA520 0%, #B8860B 100%);
  color: #2F1B14;
  border: 1px solid #8B4513;
  border-radius: 0 4px 4px 0;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-btn:hover {
  background: linear-gradient(135deg, #F4E4BC 0%, #DAA520 100%);
  transform: translateY(-1px);
}

/* Enhanced Button Gradients */
.btn-primary {
  background: linear-gradient(135deg, #DAA520 0%, #B8860B 50%, #CD853F 100%);
  color: #2F1B14;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  border: 2px solid #8B4513;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F4E4BC 0%, #DAA520 50%, #B8860B 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
  background: linear-gradient(135deg, #8B4513 0%, #654321 50%, #4A2A1A 100%);
  color: #F4E4BC;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  border: 2px solid #8B4513;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(244, 228, 188, 0.1), transparent);
  transition: left 0.6s ease;
}

.btn-secondary:hover::before {
  left: 100%;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #654321 0%, #4A2A1A 50%, #3D2317 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(139, 69, 19, 0.4);
}

/* Enhanced Section Backgrounds with Strong Gradients */
.how-it-works-section {
  background: linear-gradient(135deg, rgba(232, 213, 183, 0.6) 0%, rgba(212, 197, 160, 0.5) 25%, rgba(199, 184, 144, 0.6) 50%, rgba(181, 166, 130, 0.5) 100%);
  padding: 4rem 0;
  position: relative;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.news-crew-section {
  padding: 4rem 0;
  position: relative;
  background: linear-gradient(135deg, rgba(228, 213, 183, 0.3) 0%, rgba(208, 193, 156, 0.2) 50%, rgba(194, 179, 143, 0.3) 100%);
}

.news-crew-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(218, 165, 32, 0.04) 50%, transparent 70%);
  pointer-events: none;
}

.newsletter-section {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.2) 0%, rgba(101, 67, 33, 0.15) 25%, rgba(83, 53, 25, 0.18) 50%, rgba(101, 67, 33, 0.12) 100%);
  padding: 4rem 0;
  position: relative;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 25%, rgba(218, 165, 32, 0.06) 50%, transparent 75%);
  pointer-events: none;
}

/* Force gradient application on grid items */
.stages-grid > div,
.grid > div {
  background: linear-gradient(135deg, #FDF9F1 0%, #F5EAD6 35%, #EDD8BE 65%, #F2E1C7 100%) !important;
  border: 3px solid #8B4513 !important;
  border-radius: 16px !important;
  padding: 2rem !important;
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.2) !important;
  position: relative !important;
  /* overflow: hidden !important; */
}

.stages-grid > div::before,
.grid > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(218, 165, 32, 0.06) 50%, transparent 70%);
  pointer-events: none;
}

/* Specific targeting for main content cards */
div[class*="stage-card"],
div[class*="news-card"],
div[class*="crew-card"],
section .grid > div:not(.footer-card) {
  background: linear-gradient(135deg, #FDF9F1 0%, #F5EAD6 30%, #EDD8BE 60%, #F2E1C7 100%) !important;
  border: 3px solid #8B4513 !important;
  border-radius: 16px !important;
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.25) !important;
}/* Import Fonts */

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

body {
  font-family: 'Crimson Text', serif;
  line-height: 1.6;
  color: #2F1B14;
}

/* Background - Darker with Gradients */
.main-bg {
  background: linear-gradient(135deg, #E8DCC6 0%, #D4C5A0 50%, #C7B890 100%);
  min-height: 100vh;
  position: relative;
}

.main-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(139, 69, 19, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* Typography */
.pirate-title {
  font-family: 'Pirata One', cursive;
  color: #8B4513;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.elegant-title {
  font-family: 'Cinzel', serif;
  color: #654321;
  font-weight: 600;
}

/* Modern Header Styles */
.modern-header {
  background: linear-gradient(135deg, #2C1810 0%, #3D2317 50%, #4A2A1A 100%);
  border-bottom: 4px solid #D4AF37;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
}

.modern-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.1) 50%, transparent 100%);
  pointer-events: none;
}

/* Large Header Logo & Brand */
.header-logo {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.header-logo:hover {
  transform: scale(1.05);
}

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

.brand-title {
  font-family: 'Pirata One', cursive;
  font-size: 2.5rem;
  color: #D4AF37;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.brand-subtitle {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: #F4E4BC;
  font-style: italic;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Stylish Navigation Pills */
.nav-pills {
  display: flex;
  background: rgba(244, 228, 188, 0.1);
  border-radius: 50px;
  padding: 6px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
}

.nav-pill {
  color: #F4E4BC;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-pill::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
  transition: left 0.5s ease;
}

.nav-pill:hover::before {
  left: 100%;
}

.nav-pill:hover,
.nav-pill.active {
  color: #2C1810;
  background: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  transform: translateY(-2px);
}

/* Premium Join Button */
.premium-join-btn {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #DAA520 100%);
  color: #2C1810;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  border: 2px solid #B8860B;
  position: relative;
  overflow: hidden;
}

.premium-join-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.premium-join-btn:hover::before {
  left: 100%;
}

.premium-join-btn:hover {
  background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 50%, #B8860B 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

/* Mobile Menu Styles */
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(212, 175, 55, 0.1);
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-lines span {
  width: 25px;
  height: 3px;
  background: #D4AF37;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-lines span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active .hamburger-lines span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-lines span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  background: rgba(44, 24, 16, 0.95);
  border-radius: 20px;
  margin-top: 1rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(10px);
}

.mobile-nav-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: #F4E4BC;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav-link:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #D4AF37;
}

.mobile-join-btn {
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
  color: #2C1810;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  text-align: center;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.mobile-join-btn:hover {
  background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 100%);
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  padding: 4rem 0;
}

.welcome-card {
  /* same gradient as your stage / news cards */
  background: linear-gradient(
    135deg,
    #fdf9f1 0%,
    #f5ead6 35%,
    #edd8be 65%,
    #f2e1c7 100%
  );
  border: 3px solid #8b4513;       /* match .stage-card */
  border-radius: 16px;            /* ditto */
  padding: 3rem;
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.25);
  position: relative;
  overflow: visible;              /* allow badges/shadows to breathe */
}

/* optional shimmer overlay */
.welcome-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(218, 165, 32, 0.06) 50%,
    transparent 70%
  );
  pointer-events: none;
}

/* Captain Bytebeard Styling */
.captain-container {
  text-align: center;
  position: relative;
}

.captain-frame {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}

.captain-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 6px solid #8B4513;
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

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

.captain-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(218, 165, 32, 0.3), transparent);
  animation: pulse 3s infinite;
  z-index: 1;
}

@keyframes pulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.02); }
}

.captain-name {
  font-family: 'Pirata One', cursive;
  font-size: 2rem;
  color: #8B4513;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.captain-title {
  font-family: 'Cinzel', serif;
  color: #654321;
  font-style: italic;
  font-size: 1.1rem;
}

/* Welcome Content */
.welcome-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-heading {
  font-family: 'Pirata One', cursive;
  font-size: 3.5rem;
  line-height: 1.1;
  color: #8B4513;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.welcome-subheading {
  font-size: 2.5rem;
  color: #DAA520;
}

.welcome-text {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #2F1B14;
}

.captain-quote {
  background: rgba(218, 165, 32, 0.1);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #DAA520;
  margin-bottom: 2rem;
  position: relative;
}

.quote-text {
  font-style: italic;
  font-size: 1.1rem;
  color: #654321;
  text-align: center;
  margin: 0;
}

.quote-icon {
  color: #8B4513;
  font-size: 1.5rem;
  vertical-align: middle;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #DAA520, #B8860B);
  color: #2F1B14;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  border: 2px solid #8B4513;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #F4E4BC, #DAA520);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(139, 69, 19, 0.4);
}

.btn-secondary {
  background: #8B4513;
  color: #F4E4BC;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
  border: 2px solid #8B4513;
}

.btn-secondary:hover {
  background: #654321;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(139, 69, 19, 0.4);
}

/* How It Works Section */
.how-it-works-section {
  background: rgba(232, 213, 183, 0.3);
  padding: 4rem 0;
}

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

.section-title {
  font-family: 'Pirata One', cursive;
  font-size: 3rem;
  color: #8B4513;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #654321;
  font-style: italic;
}

.stages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.stage-card {
  background: #FEFCF7;
  border: 3px solid #8B4513;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.2);
  overflow: visible !important;
  
}

.stage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

.stage-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #DAA520;
  color: #2F1B14;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cinzel', serif;
  font-weight: bold;
  font-size: 1.2rem;
  border: 3px solid #8B4513;
}

.stage-icon {
  font-size: 3rem;
  color: #8B4513;
  margin: 1rem 0;
}

.stage-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #654321;
  margin-bottom: 1rem;
  font-weight: 600;
}

.stage-description {
  color: #2F1B14;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.stage-visual {
  margin-top: 1rem;
}

.stage-visual-icon {
  font-size: 2rem;
  color: #DAA520;
  opacity: 0.6;
}

/* News & Crew Section */
.news-crew-section {
  padding: 4rem 0;
}

.news-card, .crew-card {
  background: #FEFCF7;
  border: 3px solid #8B4513;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.2);
  height: 100%;
}

.card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: #654321;
  margin-bottom: 2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.news-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.news-item {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(139, 69, 19, 0.2);
}

.news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.news-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: rgba(218, 165, 32, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8B4513;
  font-size: 1.2rem;
}

.news-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #654321;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.news-meta {
  font-size: 0.9rem;
  color: #8B4513;
  margin-bottom: 0.5rem;
}

.news-excerpt {
  color: #2F1B14;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.read-more {
  color: #DAA520;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.read-more:hover {
  color: #8B4513;
}

/* Crew Styles */
.crew-spotlight {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.crew-member {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.crew-avatar {
  position: relative;
  flex-shrink: 0;
}

.crew-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid #8B4513;
}

.crew-status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #FEFCF7;
}

.crew-status.online {
  background: #22C55E;
}

.crew-name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  color: #654321;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.crew-achievement {
  color: #8B4513;
  font-style: italic;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.crew-stats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  font-size: 0.8rem;
  color: #654321;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Newsletter Section */
.newsletter-section {
  background: rgba(139, 69, 19, 0.1);
  padding: 4rem 0;
}

.newsletter-card {
  /* pirate‐map gradient background */
  background: linear-gradient(
    135deg,
    #fdf9f1 0%,
    #f5ead6 35%,
    #edd8be 65%,
    #f2e1c7 100%
  );
  border: 3px solid #8b4513;             /* match your other cards */
  border-radius: 16px;                   /* same radius */
  padding: 3rem;
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.25);
  position: relative;
  overflow: visible;                     /* so nothing gets clipped */
}

/* optional gold-dust shimmer overlay */
.newsletter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(218, 165, 32, 0.06) 50%,
    transparent 70%
  );
  pointer-events: none;
}


.newsletter-header {
  margin-bottom: 2rem;
}

.newsletter-icon {
  font-size: 4rem;
  color: #DAA520;
  margin-bottom: 1rem;
}

.newsletter-title {
  font-family: 'Pirata One', cursive;
  font-size: 2.5rem;
  color: #8B4513;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
}

.newsletter-description {
  font-size: 1.2rem;
  color: #2F1B14;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto 1.5rem auto;
  flex-wrap: wrap;
}

.newsletter-email {
  flex: 1;
  padding: 1rem 1.5rem;
  border: 3px solid #8B4513;
  border-radius: 8px;
  background: #FFF;
  font-family: 'Crimson Text', serif;
  font-size: 1rem;
  min-width: 250px;
}

.newsletter-submit {
  background: linear-gradient(135deg, #DAA520, #B8860B);
  color: #2F1B14;
  padding: 1rem 2rem;
  border: 3px solid #8B4513;
  border-radius: 8px;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-submit:hover {
  background: linear-gradient(135deg, #F4E4BC, #DAA520);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 69, 19, 0.3);
}

.newsletter-privacy {
  color: #654321;
  font-size: 0.9rem;
  font-style: italic;
}

/* Footer with Gradients */
.vintage-footer {
  background: linear-gradient(135deg, rgba(101, 67, 33, 0.98) 0%, rgba(83, 53, 25, 0.99) 50%, rgba(68, 41, 20, 1) 100%);
  color: #F4E4BC;
  position: relative;
}

.vintage-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 175, 55, 0.05) 50%, transparent 70%);
  pointer-events: none;
}

.footer-card {
  background: linear-gradient(135deg, rgba(254, 252, 247, 0.98) 0%, rgba(247, 237, 216, 0.95) 50%, rgba(242, 230, 201, 0.92) 100%);
  border: 3px solid #8B4513;
  border-radius: 12px;
  padding: 1.5rem;
  color: #2F1B14;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.2);
  position: relative;
  overflow: hidden;
}

.footer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 20%, rgba(218, 165, 32, 0.03) 50%, transparent 80%);
  pointer-events: none;
}

.newsletter-box {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.15) 0%, rgba(244, 228, 188, 0.1) 100%);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid #DAA520;
  position: relative;
  overflow: hidden;
}

.newsletter-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(139, 69, 19, 0.02) 50%, transparent 100%);
  pointer-events: none;
}

.footer-bottom {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(44, 24, 16, 0.3) 100%);
  border-top: 2px solid #DAA520;
}

/* Back to Top Button */
.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #DAA520 100%);
  color: #2C1810;
  border: 3px solid #8B4513;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top-btn:hover {
  background: linear-gradient(135deg, #F4E4BC 0%, #D4AF37 50%, #B8860B 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.back-to-top-btn.hidden {
  opacity: 0;
  transform: translateY(100px);
  pointer-events: none;
}

.back-to-top-btn.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.copyright, .tagline {
  color: #F4E4BC;
}

.copyright a {
  color: #DAA520;
  text-decoration: none;
}

.copyright a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .welcome-heading {
    font-size: 2.5rem;
  }
  
  .welcome-subheading {
    font-size: 2rem;
  }
  
  .captain-image {
    width: 200px;
    height: 200px;
  }
  
  .action-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-email {
    min-width: auto;
  }
  
  .crew-member {
    flex-direction: column;
    text-align: center;
  }
  
  .crew-stats {
    justify-content: center;
  }
  
  /* Mobile Header Adjustments */
  .brand-title {
    font-size: 1.8rem;
  }
  
  .brand-subtitle {
    font-size: 0.8rem;
  }
  
  .header-logo {
    height: 60px;
  }
}

/* Mobile Menu Animations */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}

/* Additional Interactive Effects */
.nav-pill {
  position: relative;
  z-index: 1;
}

.premium-join-btn {
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Glow Effects */
.modern-header {
  position: relative;
}

.modern-header::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D4AF37 0%, #F4E4BC 50%, #D4AF37 100%);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}