/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #00ffa3;
  --secondary: #9945ff;
  --accent: #ffd166;
  --dark: #121212;
  --darker: #0a0a0a;
  --light: #ffffff;
  --gray: #888888;
  --solana-purple: #9945ff;
  --solana-green: #00ffa3;
  --telegram-blue: #0088cc;
  --font-heading: "Poppins", sans-serif;
  --font-body: "Poppins", sans-serif;
  --font-meme: "Comic Neue", cursive;
}

body {
  font-family: var(--font-body);
  background-color: var(--darker);
  color: var(--light);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.9)),
    url("img/bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding-bottom: 40px;
}

/* Header Styles */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.logo-text {
  font-family: var(--font-meme);
  font-size: 28px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: var(--primary);
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Telegram Link Special Styling */
.telegram-link {
  background: rgba(0, 136, 204, 0.2);
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid var(--telegram-blue);
  color: var(--telegram-blue);
}

.telegram-link:hover {
  background: var(--telegram-blue);
  color: white;
  border-color: var(--telegram-blue);
}

.telegram-link::after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  font-size: 24px;
  color: var(--light);
  cursor: pointer;
}

/* Hero Content */
.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: calc(100vh - 120px);
  padding: 40px 0;
  gap: 40px;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.tagline {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.solana-badge,
.moon-badge {
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.solana-badge {
  background: rgba(153, 69, 255, 0.2);
  border: 1px solid var(--solana-purple);
  color: var(--solana-purple);
}

.moon-badge {
  background: rgba(255, 209, 102, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-title {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 30px;
  font-family: var(--font-meme);
}

.title-part-1 {
  display: block;
  color: var(--primary);
  text-shadow: 0 0 10px rgba(0, 255, 163, 0.5);
}

.title-part-2 {
  display: block;
  color: var(--light);
}

.hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: var(--gray);
  max-width: 90%;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  color: var(--darker);
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.meme-btn {
  font-family: var(--font-meme);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  border: 3px solid var(--primary);
  text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 500px;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Hero Image */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.dogo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(0, 255, 163, 0.5));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.image-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(0, 255, 163, 0.3) 0%,
    rgba(153, 69, 255, 0.1) 70%,
    transparent 100%
  );
  border-radius: 50%;
  z-index: 1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.moon-element,
.rocket-element,
.sol-element {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  animation: float-element 15s linear infinite;
}

.moon-element {
  background: rgba(255, 209, 102, 0.2);
  color: var(--accent);
  top: -20px;
  right: 30px;
  animation-delay: 0s;
}

.rocket-element {
  background: rgba(255, 69, 69, 0.2);
  color: #ff4545;
  bottom: 40px;
  left: -20px;
  animation-delay: 5s;
}

.sol-element {
  background: rgba(153, 69, 255, 0.2);
  color: var(--solana-purple);
  bottom: -20px;
  right: 80px;
  animation-delay: 10s;
}

@keyframes float-element {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(0, -40px) rotate(180deg);
  }
  75% {
    transform: translate(-20px, -20px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--gray);
  z-index: 10;
}

.scroll-indicator span {
  font-size: 14px;
  margin-bottom: 10px;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--gray);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.wheel {
  width: 4px;
  height: 10px;
  background-color: var(--primary);
  border-radius: 2px;
  animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(20px);
    opacity: 0;
  }
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--darker);
  z-index: 1000;
  padding: 30px;
  display: flex;
  flex-direction: column;
  transition: right 0.5s ease;
  border-left: 2px solid var(--primary);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.close-mobile-menu {
  font-size: 28px;
  color: var(--light);
  cursor: pointer;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 40px;
}

.mobile-nav-link {
  color: var(--light);
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav-link:hover {
  color: var(--primary);
}

/* About Section */
.about {
  padding: 120px 0;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 30% 50%,
      rgba(153, 69, 255, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 20%,
      rgba(0, 255, 163, 0.1) 0%,
      transparent 50%
    );
  z-index: 1;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.section-title {
  font-size: 48px;
  margin-bottom: 40px;
  font-family: var(--font-meme);
}

.title-decor {
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.title-decor::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 255, 163, 0.2);
  z-index: -1;
  border-radius: 4px;
}

.about-description {
  margin-bottom: 50px;
}

.about-paragraph {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--gray);
}

.highlight {
  color: var(--primary);
  font-weight: 700;
}

.mayhem-mode {
  background: linear-gradient(90deg, #ff4545, #ffd166);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-style: italic;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateX(10px);
  border-color: var(--primary);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--darker);
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--light);
}

.feature-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-container {
  position: relative;
  width: 450px;
  height: 450px;
}

.about-dogo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 30px rgba(153, 69, 255, 0.3));
}

.about-image-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%;
  left: -10%;
  background: radial-gradient(
    circle,
    rgba(153, 69, 255, 0.3) 0%,
    rgba(0, 255, 163, 0.1) 70%,
    transparent 100%
  );
  border-radius: 50%;
  z-index: 1;
}

.chaos-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}

.chaos-element {
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  animation: chaos-float 8s ease-in-out infinite;
}

.chaos-1 {
  background: rgba(255, 69, 69, 0.2);
  color: #ff4545;
  top: 10px;
  left: -20px;
  animation-delay: 0s;
}

.chaos-2 {
  background: rgba(255, 209, 102, 0.2);
  color: var(--accent);
  top: 50%;
  right: -10px;
  animation-delay: 2s;
}

.chaos-3 {
  background: rgba(0, 255, 163, 0.2);
  color: var(--primary);
  bottom: 20px;
  left: 30px;
  animation-delay: 4s;
}

@keyframes chaos-float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(15px, -15px) rotate(90deg);
  }
  50% {
    transform: translate(0, -30px) rotate(180deg);
  }
  75% {
    transform: translate(-15px, -15px) rotate(270deg);
  }
}

/* Community Section */
.community {
  padding: 120px 0;
  background-color: var(--dark);
  position: relative;
  overflow: hidden;
}

.community::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 70% 30%,
      rgba(153, 69, 255, 0.15) 0%,
      transparent 60%
    ),
    radial-gradient(
      circle at 30% 70%,
      rgba(0, 255, 163, 0.1) 0%,
      transparent 60%
    );
  z-index: 1;
}

.community-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.community-text {
  flex: 1;
  max-width: 600px;
}

.pack-text {
  background: linear-gradient(90deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 52px;
  animation: pack-glow 3s ease-in-out infinite;
}

@keyframes pack-glow {
  0%,
  100% {
    filter: drop-shadow(0 0 5px rgba(255, 107, 107, 0.5));
  }
  25% {
    filter: drop-shadow(0 0 10px rgba(254, 202, 87, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(72, 219, 251, 0.5));
  }
  75% {
    filter: drop-shadow(0 0 10px rgba(255, 159, 243, 0.5));
  }
}

.community-subtitle {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--accent);
  font-family: var(--font-meme);
}

.community-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  color: var(--gray);
}

/* Meme Button Styles */
.meme-button-container {
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.meme-community-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(90deg, #000000 0%, #1d1d1d 50%, #000000 100%);
  color: white;
  font-family: var(--font-meme);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  padding: 25px 50px;
  border-radius: 20px;
  border: 4px solid white;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.meme-community-btn:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.meme-community-btn:hover .btn-text {
  color: var(--primary);
}

.meme-community-btn:hover .btn-icon {
  transform: rotate(360deg) scale(1.2);
}

.btn-text {
  transition: all 0.3s ease;
}

.btn-icon {
  font-size: 28px;
  color: white;
  transition: all 0.5s ease;
}

.meme-community-btn:hover .btn-icon {
  color: var(--primary);
}

.meme-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.6s ease;
  z-index: -1;
}

.meme-community-btn:hover .meme-effect {
  left: 100%;
}

.meme-shadow {
  position: absolute;
  bottom: -15px;
  left: 10%;
  width: 80%;
  height: 30px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 1;
  transition: all 0.3s ease;
}

.meme-button-container:hover .meme-shadow {
  width: 90%;
  left: 5%;
  background: rgba(0, 255, 163, 0.3);
  filter: blur(15px);
}

.meme-tags {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.meme-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 50px;
  font-family: var(--font-meme);
  font-weight: 700;
  font-size: 16px;
  animation: tag-bounce 2s ease-in-out infinite;
}

.meme-tag:nth-child(1) {
  animation-delay: 0s;
}

.meme-tag:nth-child(2) {
  animation-delay: 0.5s;
}

.meme-tag:nth-child(3) {
  animation-delay: 1s;
}

@keyframes tag-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.community-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.community-image-container {
  width: 450px;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.community-dogo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.community-dogo-img:hover {
  transform: scale(1.05);
}

/* Footer */
.footer {
  padding: 80px 0 40px;
  background-color: var(--darker);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 20% 80%,
    rgba(153, 69, 255, 0.05) 0%,
    transparent 60%
  );
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.footer-brand {
  flex: 1;
  min-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.footer-logo-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.footer-logo-text h3 {
  font-family: var(--font-meme);
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 5px;
}

.footer-logo-text p {
  font-size: 16px;
  color: var(--light);
  margin-bottom: 5px;
}

.footer-tagline {
  color: var(--gray) !important;
  font-size: 14px !important;
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
}

.footer-disclaimer p:first-child {
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-disclaimer p:last-child {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-nav {
  min-width: 150px;
}

.footer-nav h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  margin-bottom: 12px;
}

.footer-nav ul li a {
  color: var(--light);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-nav ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 60px;
  }

  .hero-description {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    font-size: 50px;
  }

  .image-container {
    width: 350px;
    height: 350px;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-image-container {
    width: 350px;
    height: 350px;
  }

  .feature {
    justify-content: center;
  }

  .community-content {
    flex-direction: column;
    text-align: center;
  }

  .community-text {
    max-width: 100%;
  }

  .community-image-container {
    width: 350px;
    height: 350px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-links {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }

  .image-container {
    width: 300px;
    height: 300px;
  }

  .section-title {
    font-size: 36px;
  }

  .about-paragraph {
    font-size: 16px;
  }

  .about-image-container {
    width: 300px;
    height: 300px;
  }

  .community-image-container {
    width: 300px;
    height: 300px;
  }

  .meme-community-btn {
    font-size: 20px;
    padding: 20px 40px;
  }

  .footer-links {
    flex-direction: column;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }

  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .stat-item {
    padding: 15px;
  }

  .stat-value {
    font-size: 24px;
  }

  .image-container {
    width: 250px;
    height: 250px;
  }

  .mobile-nav {
    width: 100%;
  }

  .section-title {
    font-size: 28px;
  }

  .about-image-container {
    width: 250px;
    height: 250px;
  }

  .feature {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .community-image-container {
    width: 250px;
    height: 250px;
  }

  .meme-community-btn {
    font-size: 18px;
    padding: 18px 30px;
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .meme-tags {
    justify-content: center;
  }
}
