/* ============================================
   JUST FOR FUN COMMUNITY — Global Styles
   ============================================ */

:root {
  --navy: #0B1120;
  --navy-light: #131B2E;
  --navy-mid: #1A2540;
  --blue: #3B82F6;
  --blue-dark: #2563EB;
  --blue-light: #60A5FA;
  --pink: #EC4899;
  --pink-light: #F472B6;
  --gold: #F59E0B;
  --red: #EF4444;
  --light-bg: #f0f4f8;
  --card-bg: #1E293B;
  --white: #FFFFFF;
  --text-light: #CBD5E1;
  --text-muted: #94A3B8;
  --border: #334155;
  --tiktok: #EE1D52;
  --telegram: #0088CC;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

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

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(11, 17, 32, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(11, 17, 32, 0.97);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: var(--navy-mid);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-social {
  color: var(--text-muted);
  font-size: 18px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.2s;
}

.nav-social:hover {
  color: var(--white);
  border-color: var(--blue);
  background: rgba(59, 130, 246, 0.1);
}

.btn-join {
  background: linear-gradient(135deg, var(--tiktok), var(--pink));
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-join:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(236, 72, 153, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(180deg, var(--navy) 0%, #0D1B3E 50%, #162A5A 100%);
  display: flex;
  align-items: center;
  padding-top: 70px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('images/hero-bg-mountains.png') center bottom / cover no-repeat;
  opacity: 0.15;
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 550px;
}

.hero-label {
  color: var(--pink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hero-title {
  font-family: 'Russo One', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--white);
}

.hero-highlight {
  color: var(--blue);
  display: inline-block;
}

.hero-paw {
  color: var(--blue-light);
  font-size: 0.7em;
}

.hero-desc {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero buttons */
.btn-telegram-hero {
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-telegram-hero:hover {
  transform: translateY(-2px);
  background: var(--blue-dark);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-x-hero {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-x-hero:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

/* CTA section buttons */
.btn-cta-x,
.btn-cta-telegram,
.btn-cta-tiktok {
  background: var(--navy);
  color: var(--white);
  padding: 18px 32px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  min-width: 200px;
  justify-content: center;
}

.btn-cta-x:hover,
.btn-cta-telegram:hover,
.btn-cta-tiktok:hover {
  transform: translateY(-2px);
  background: var(--navy-light);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-tiktok {
  background: var(--tiktok);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-tiktok:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(238, 29, 82, 0.4);
}

.btn-telegram,
.btn-telegram-dark {
  background: var(--navy-mid);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-telegram:hover,
.btn-telegram-dark:hover {
  transform: translateY(-2px);
  border-color: var(--blue);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.btn-telegram-dark {
  background: var(--card-bg);
}

.btn-sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 2px;
}

.hero-image {
  flex: 1;
  max-width: 500px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

.wave-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.wave-divider svg {
  width: 100%;
  height: 80px;
}

/* ============ ABOUT SECTION ============ */
.about-section {
  background: var(--light-bg);
  color: #1E293B;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-family: 'Russo One', sans-serif;
  font-size: 28px;
  color: #0B1120;
  margin-bottom: 16px;
}

.title-dash {
  color: var(--blue);
  margin: 0 8px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #EFF6FF;
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}

.feature-icon.pink {
  background: #FDF2F8;
  color: var(--pink);
}

.feature-card h3 {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #0F172A;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: #64748B;
  line-height: 1.6;
}

/* ============ TOKEN SECTION ============ */
.token-section {
  background: var(--light-bg);
  padding: 0 0 80px;
}

.token-card {
  background: var(--navy-light);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--border);
}

.token-card .section-title {
  color: var(--white);
  margin-bottom: 32px;
}

.token-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.token-logo img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 3px solid var(--blue);
  object-fit: cover;
}

.token-info {
  flex: 1;
}

.token-info h3 {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  margin-bottom: 8px;
}

.token-info > p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

/* Token detail items (right column) */
.token-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 1px solid var(--border);
  padding-left: 32px;
}

.token-detail-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.token-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}

.token-detail-item:nth-child(1) .token-detail-icon { background: #F59E0B; }
.token-detail-item:nth-child(2) .token-detail-icon { background: var(--pink); }
.token-detail-item:nth-child(3) .token-detail-icon { background: #22C55E; }
.token-detail-item:nth-child(4) .token-detail-icon { background: var(--pink); }

.token-detail-item strong {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.token-detail-item span {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.token-ca label {
  font-size: 12px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.ca-box {
  display: flex;
  align-items: center;
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  gap: 12px;
}

.ca-box span {
  flex: 1;
  font-family: monospace;
  font-size: 13px;
  color: var(--text-light);
  word-break: break-all;
}

.copy-btn {
  background: var(--blue);
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.copy-btn:hover {
  background: var(--blue-dark);
}

/* ============ CTA SECTION ============ */
.cta-section {
  background: var(--light-bg);
  padding: 0 0 80px;
}

.cta-card {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 20px;
  padding: 48px;
  text-align: center;
}

.cta-card h2 {
  font-family: 'Russo One', sans-serif;
  font-size: 26px;
  margin-bottom: 8px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-size: 15px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Paw print watermarks on CTA */
.cta-card {
  position: relative;
  overflow: hidden;
}

.cta-card::before,
.cta-card::after {
  content: '\f1b0';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  font-size: 120px;
  color: rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.cta-card::before {
  top: -20px;
  left: -20px;
  transform: rotate(-15deg);
}

.cta-card::after {
  bottom: -20px;
  right: -20px;
  transform: rotate(15deg);
}

/* ============ DISCLAIMER ============ */
.disclaimer-section {
  background: var(--light-bg);
  padding: 0 0 60px;
}

.disclaimer-card {
  background: #FFF7ED;
  border: 2px solid #FDBA74;
  border-radius: 16px;
  padding: 32px;
}

.disclaimer-content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.disclaimer-left {
  flex: 2;
}

.disclaimer-left h3 {
  color: var(--red);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
}

.disclaimer-left h3 i {
  margin-right: 8px;
}

.disclaimer-left p {
  color: #78350F;
  font-size: 13px;
  line-height: 1.7;
}

.disclaimer-right {
  flex: 1;
  text-align: center;
}

.disclaimer-right img {
  width: 100px;
  height: auto;
  margin-bottom: 12px;
}

.disclaimer-motto {
  color: var(--red);
  font-size: 16px;
  line-height: 1.4;
}

.disclaimer-motto i {
  margin-left: 4px;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
}

.footer-about p {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--blue-light);
}

.footer-links a i {
  margin-right: 6px;
  width: 16px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 13px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-right .btn-join { display: none; }

  .hamburger { display: flex; }

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .hero-text { max-width: 100%; }
  .hero-buttons { justify-content: center; }
  .hero-image { max-width: 350px; }

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

  .token-content { flex-direction: column; text-align: center; }
  .token-details { border-left: none; padding-left: 0; border-top: 1px solid var(--border); padding-top: 24px; }

  .disclaimer-content { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }

  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .token-card { padding: 24px; }
}

/* ============ PAGE-SPECIFIC: Sub-pages ============ */
.page-hero {
  background: linear-gradient(180deg, var(--navy) 0%, #0D1B3E 100%);
  padding: 120px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Russo One', sans-serif;
  font-size: 36px;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 15px;
}

.page-content {
  background: var(--light-bg);
  padding: 60px 0 80px;
}

.page-content .content-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  color: #1E293B;
  max-width: 900px;
  margin: 0 auto;
}

.page-content .content-card h2 {
  font-family: 'Russo One', sans-serif;
  font-size: 22px;
  color: #0B1120;
  margin-bottom: 16px;
  margin-top: 32px;
}

.page-content .content-card h2:first-child {
  margin-top: 0;
}

.page-content .content-card p {
  color: #475569;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.page-content .content-card ul {
  color: #475569;
  font-size: 15px;
  line-height: 2;
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content .content-card .step-list {
  counter-reset: steps;
  list-style: none;
  padding-left: 0;
}

.page-content .content-card .step-list li {
  counter-increment: steps;
  padding: 16px 16px 16px 60px;
  position: relative;
  background: #F8FAFC;
  border-radius: 12px;
  margin-bottom: 12px;
}

.page-content .content-card .step-list li::before {
  content: counter(steps);
  position: absolute;
  left: 16px;
  top: 16px;
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.warning-box {
  background: #FEF3C7;
  border: 1px solid #FCD34D;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}

.warning-box h4 {
  color: #92400E;
  font-size: 14px;
  margin-bottom: 8px;
}

.warning-box p {
  color: #78350F;
  font-size: 14px;
}

.info-box {
  background: #EFF6FF;
  border: 1px solid #93C5FD;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box p {
  color: #1E40AF;
  font-size: 14px;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #1E293B;
  background: #F8FAFC;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
}

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

.contact-form button {
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  align-self: flex-start;
}

.contact-form button:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid #E2E8F0;
  padding: 20px 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  font-weight: 700;
  font-size: 16px;
  color: #0F172A;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  color: var(--blue);
  transition: transform 0.3s;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

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

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

.faq-answer p {
  padding-top: 12px;
}
