* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #070d18 0%, #0a1020 45%, #111827 100%);
  color: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: none;
  cursor: pointer;
}

.animated-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  animation: pulseGlow 8s ease-in-out infinite alternate;
}

.glow-1 {
  width: 320px;
  height: 320px;
  background: #9945ff;
  top: 8%;
  left: 6%;
}

.glow-2 {
  width: 420px;
  height: 420px;
  background: #14f195;
  bottom: 10%;
  right: 8%;
  animation-delay: 1.5s;
}

.glow-3 {
  width: 280px;
  height: 280px;
  background: #ffd84d;
  top: 30%;
  right: 24%;
  animation-delay: 3s;
}

@keyframes pulseGlow {
  from {
    transform: scale(1) translateY(0);
  }
  to {
    transform: scale(1.15) translateY(-12px);
  }
}

.floating-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.floating-emoji {
  position: absolute;
  bottom: -60px;
  opacity: 0.13;
  animation: floatUp linear infinite;
  user-select: none;
}

@keyframes floatUp {
  from {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.13;
  }
  80% {
    opacity: 0.13;
  }
  to {
    transform: translateY(-120vh) rotate(360deg);
    opacity: 0;
  }
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.navbar {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 28px;
  font-weight: 800;
  color: #ffd84d;
  letter-spacing: 0.4px;
}

.logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(255, 216, 77, 0.28);
  border: 2px solid rgba(255, 216, 77, 0.45);
}

.nav-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav-links a {
  color: #f3f4f6;
  font-weight: 700;
  transition: 0.25s ease;
}

.nav-links a:hover {
  color: #ffd84d;
  transform: translateY(-1px);
}

.hero {
  min-height: 100vh;
  padding-bottom: 80px;
}

.hero-content {
  max-width: 1050px;
  margin: 0 auto;
  padding: 50px 20px 20px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 216, 77, 0.12);
  border: 1px solid rgba(255, 216, 77, 0.35);
  color: #ffd84d;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.hero-logo-wrap {
  margin-bottom: 24px;
}

.hero-logo {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 216, 77, 0.45);
  box-shadow:
    0 0 25px rgba(255, 216, 77, 0.3),
    0 0 60px rgba(153, 69, 255, 0.18);
}

.hero-content h1 {
  font-size: 78px;
  line-height: 1.03;
  font-weight: 900;
  margin-bottom: 22px;
  text-shadow: 0 0 22px rgba(255, 216, 77, 0.16);
}

.hero-content h1 span {
  display: block;
  color: #ffd84d;
}

.hero-text {
  max-width: 780px;
  margin: 0 auto 34px;
  font-size: 22px;
  color: #d1d5db;
}

.hero-buttons,
.community-buttons,
.buy-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 28px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 18px;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-primary {
  background: linear-gradient(135deg, #ffd84d, #ffb800);
  color: #111827;
  box-shadow: 0 0 24px rgba(255, 196, 0, 0.35);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border: 2px solid rgba(255, 216, 77, 0.5);
}

.btn-secondary:hover {
  background: rgba(255, 216, 77, 0.08);
}

.big-btn {
  min-width: 180px;
}

.hero-stats {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-card,
.feature-card,
.token-card,
.roadmap-card,
.community-card,
.buy-panel,
.warning-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.stat-card,
.feature-card,
.token-card,
.roadmap-card,
.community-card,
.buy-panel {
  padding: 28px;
  transition: 0.25s ease;
}

.stat-card:hover,
.feature-card:hover,
.token-card:hover,
.roadmap-card:hover,
.community-card:hover,
.buy-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 216, 77, 0.3);
}

.stat-card h3 {
  font-size: 26px;
  color: #ffd84d;
  margin-bottom: 6px;
}

.stat-card p {
  color: #d1d5db;
  font-size: 16px;
}

.section {
  padding: 90px 20px;
}

.section-dark {
  background: rgba(255, 255, 255, 0.03);
}

.container {
  max-width: 1150px;
  margin: 0 auto;
}

.section h2 {
  font-size: 48px;
  text-align: center;
  margin-bottom: 14px;
  color: #ffd84d;
}

.section-text {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
  color: #d1d5db;
  font-size: 20px;
}

.feature-grid,
.tokenomics-grid,
.roadmap-grid,
.community-grid {
  display: grid;
  gap: 24px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
}

.tokenomics-grid {
  grid-template-columns: repeat(4, 1fr);
}

.roadmap-grid,
.community-grid {
  grid-template-columns: repeat(2, 1fr);
}

.feature-icon,
.community-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

.feature-card h3,
.token-card h3,
.roadmap-card h3,
.community-card h3 {
  color: #ffd84d;
  font-size: 26px;
  margin-bottom: 10px;
}

.feature-card p,
.token-card p,
.community-card p {
  color: #e5e7eb;
  font-size: 18px;
}

.token-card p {
  font-weight: 800;
}

.phase {
  display: inline-block;
  margin-bottom: 12px;
  background: rgba(255, 216, 77, 0.12);
  color: #ffd84d;
  border: 1px solid rgba(255, 216, 77, 0.25);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 800;
}

.roadmap-card ul {
  padding-left: 20px;
  color: #e5e7eb;
}

.roadmap-card li {
  margin-bottom: 8px;
}

.buy-panel {
  max-width: 900px;
  margin: 0 auto;
}

.ca-box {
  margin-bottom: 24px;
}

.ca-label {
  font-size: 15px;
  font-weight: 800;
  color: #ffd84d;
  margin-bottom: 10px;
}

.ca-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.ca-row input {
  flex: 1;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 15px 16px;
  outline: none;
}

.copy-btn {
  padding: 15px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #14f195, #0ecb81);
  color: #081120;
  font-weight: 800;
}

.ca-note {
  margin-top: 10px;
  color: #d1d5db;
  font-size: 14px;
}

.community-card {
  text-align: center;
}

.warning-box {
  max-width: 900px;
  margin: 28px auto 0;
  padding: 22px;
  text-align: center;
  color: #e5e7eb;
}

.footer {
  padding: 28px 20px 40px;
  text-align: center;
  color: #d1d5db;
  font-weight: 700;
}

/* VIDEO SECTION */

.video-box {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  position: relative;
}

.video-box::before {
  content: "";
  position: absolute;
  width: min(930px, 100%);
  height: 100%;
  border-radius: 26px;
  background: linear-gradient(
    270deg,
    #ffd84d,
    #9945ff,
    #14f195,
    #ffd84d
  );
  background-size: 600% 600%;
  filter: blur(35px);
  opacity: 0.55;
  z-index: -1;
  animation: videoGlow 10s linear infinite;
}

@keyframes videoGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}

.turkey-video {
  width: 100%;
  max-width: 900px;
  border-radius: 24px;
  border: 2px solid rgba(255, 216, 77, 0.45);
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(255, 216, 77, 0.25);
  background: #000;
  display: block;
}

@media (max-width: 980px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .hero-text {
    font-size: 20px;
  }

  .hero-stats,
  .feature-grid,
  .tokenomics-grid,
  .roadmap-grid,
  .community-grid {
    grid-template-columns: 1fr;
  }

  .section h2 {
    font-size: 38px;
  }

  .hero-logo {
    width: 130px;
    height: 130px;
  }

  .video-box::before {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .navbar {
    flex-direction: column;
    gap: 14px;
  }

  .nav-links {
    justify-content: center;
    gap: 16px;
  }

  .logo {
    font-size: 24px;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

  .hero-content {
    padding-top: 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-logo {
    width: 110px;
    height: 110px;
  }

  .hero-text,
  .section-text,
  .feature-card p,
  .token-card p,
  .community-card p {
    font-size: 17px;
  }

  .btn,
  .copy-btn {
    width: 100%;
    max-width: 280px;
  }

  .ca-row {
    flex-direction: column;
    align-items: stretch;
  }

  .video-box {
    margin-top: 35px;
  }

  .video-box::before {
    filter: blur(22px);
    opacity: 0.45;
    border-radius: 22px;
  }

  .turkey-video {
    border-radius: 18px;
  }
}