:root {
  --primary: #d13438;
  --secondary: #2d3436;
  --accent: #fdcb6e;
  --dark: #121212;
  --light: #f5f5f5;
  --blood: #8a0303;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: var(--blood);
  color: var(--light);
  background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url("/api/placeholder/1920/1080");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow-x: hidden;
}

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

header {
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--blood);
  box-shadow: 0 5px 20px rgba(209, 52, 56, 0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(253, 203, 110, 0.5);
}

.logo img {
  height: 50px;
  margin-right: 12px;
  filter: drop-shadow(0 0 5px var(--accent));
}

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

.nav-links li {
  margin-left: 40px;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s;
  position: relative;
  padding-bottom: 5px;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(138, 3, 3, 0.3) 0%, transparent 70%);
  z-index: 1;
}

.hero-content {
  max-width: 600px;
  animation: fadeIn 1s ease-out;
}

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

.hero-title {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--accent);
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.hero-title::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 4px;
  background: var(--blood);
  bottom: -10px;
  left: 0;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  color: var(--light);
  line-height: 1.6;
  max-width: 90%;
}

.hero-image {
  position: absolute;
  right: -5%;
  bottom: -5%;
  height: 110%;
  z-index: 1;
  opacity: 0.9;
  filter: drop-shadow(0 0 30px var(--blood));
  animation: float 6s ease-in-out infinite;
}

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

.btn {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 15px 40px;
  background-color: var(--blood);
  color: var(--light);
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(138, 3, 3, 0.4);
}

.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: 0.5s;
}

.btn:hover {
  background-color: #a00;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(138, 3, 3, 0.6);
}

.hover-animation {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(138, 3, 3, 0.6);
  transition: all 0.3s ease;
}

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

.coin-highlight {
  display: flex;
  align-items: center;
  margin-top: 60px;
  padding-left: 10px 0;
  width: 100%;
}

.coin-img {
  width: 520px;
  height: 320px;
  filter: drop-shadow(0 0 20px var(--accent));
  animation: pulse 3s infinite;
  margin-right: 30px;
}

@keyframes pulse {
  0%, 100% {
    filter: drop-shadow(0 0 20px var(--accent));
  }
  50% {
    filter: drop-shadow(0 0 40px var(--accent));
  }
}

.about {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/api/placeholder/1200/800");
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: -1;
}

.section-title {
  font-size: 50px;
  margin-bottom: 20px;
  color: var(--accent);
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 4px;
  background: var(--blood);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: #aaa;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.feature-card {
  background: rgba(45, 52, 54, 0.9);
  border-radius: 15px;
  padding: 40px 30px;
  transition: all 0.4s;
  border-bottom: 4px solid transparent;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(138, 3, 3, 0.1) 0%, transparent 60%);
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-bottom: 4px solid var(--blood);
  box-shadow: 0 10px 30px rgba(138, 3, 3, 0.3);
}

.feature-icon {
  display: flex;
  justify-content: center;
  font-size: 50px;
  margin-bottom: 25px;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(253, 203, 110, 0.3);
}

.feature-icon img {
  width: 800px;
  height: 200px;
  margin-bottom: 25px;
}

.feature-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent);
}

.feature-description {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
}

.pudge-section {
  display: flex;
  padding: 100px 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(138, 3, 3, 0.2), rgba(0, 0, 0, 0.7));
  text-align: center;
  overflow: hidden;
}

.pudge-content {
  max-width: 700px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.pudge-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("/api/placeholder/1600/900");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
}

.pudge-quote {
  font-size: 36px;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 30px;
  line-height: 1.4;
}

.pudge-signature {
  font-size: 24px;
  color: var(--light);
  margin-bottom: 40px;
}

.tokenomics {
  padding: 120px 0;
  background: rgba(18, 18, 18, 0.97);
  position: relative;
}

.tokenomics::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/api/placeholder/1000/800");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.token-distribution {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.distribution-card {
  flex: 1;
  min-width: 250px;
  background: rgba(45, 52, 54, 0.8);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(5px);
  transition: all 0.3s;
  border-left: 4px solid transparent;
}

.distribution-card:hover {
  transform: translateY(-10px);
  border-left: 4px solid var(--blood);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.distribution-percentage {
  font-size: 54px;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.distribution-card h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--light);
}

.distribution-card p {
  color: #aaa;
  line-height: 1.6;
}

.roadmap {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.roadmap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/api/placeholder/1400/900");
  background-size: cover;
  background-position: center;
  opacity: 0.05;
  z-index: 0;
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 80px auto 0;
  z-index: 1;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--blood);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
  margin-bottom: 50px;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  right: -15px;
  background-color: var(--blood);
  border: 5px solid var(--accent);
  top: 20px;
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 15px rgba(253, 203, 110, 0.5);
}

.timeline-item.left {
  left: 0;
}

.timeline-item.right {
  left: 50%;
}

.timeline-item.right::after {
  left: -15px;
}

.timeline-content {
  padding: 30px;
  background: rgba(45, 52, 54, 0.8);
  position: relative;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  border-top: 4px solid transparent;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-top: 4px solid var(--accent);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.timeline-date {
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 15px;
  font-size: 20px;
}

.timeline-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--light);
}

.timeline-content p {
  color: #aaa;
  line-height: 1.6;
}

.join-community {
  padding: 100px 0;
  background: linear-gradient(rgba(138, 3, 3, 0.8), rgba(18, 18, 18, 0.95)), url("/api/placeholder/1600/900");
  background-size: cover;
  background-position: center;
  text-align: center;
}

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

.community-title {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}

.community-text {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 40px;
  line-height: 1.6;
}

.social-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  background: rgba(45, 52, 54, 0.8);
  border-radius: 30px;
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  backdrop-filter: blur(5px);
}

.social-btn:hover {
  background: var(--blood);
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon {
  margin-right: 10px;
  font-size: 20px;
}

footer {
  background: rgba(0, 0, 0, 0.95);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(to right, var(--blood), var(--accent), var(--blood));
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-logo {
  font-size: 32px;
  font-weight: bold;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-about {
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-heading {
  font-size: 20px;
  color: var(--light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  width: 50px;
  height: 3px;
  background: var(--blood);
  bottom: 0;
  left: 0;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s;
}

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

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(45, 52, 54, 0.8);
  border-radius: 50%;
  color: var(--light);
  text-decoration: none;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--blood);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(138, 3, 3, 0.4);
}

.copyright {
  text-align: center;
  color: #666;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero-title {
    font-size: 54px;
  }
  .hero-subtitle {
    font-size: 20px;
  }
  .hero-image {
    height: 90%;
    right: -10%;
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item.right {
    left: 0;
  }
  .timeline-item::after {
    left: 15px;
    right: auto;
  }
  .timeline-item.right::after {
    left: 15px;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 90px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 90px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    transition: all 0.5s;
    z-index: 99;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 20px 0;
  }
  .hero-title {
    font-size: 42px;
  }
  .hero-subtitle {
    font-size: 18px;
  }
  .hero-image {
    opacity: 0.3;
    height: 80%;
    right: -30%;
  }
  .section-title {
    font-size: 36px;
  }
  .pudge-quote {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .btn {
    padding: 12px 30px;
    font-size: 16px;
  }
  .feature-card, .distribution-card {
    padding: 30px 20px;
  }
  .timeline-content {
    padding: 20px;
  }
  .timeline-date {
    font-size: 18px;
  }
  .timeline-content h3 {
    font-size: 20px;
  }
  .community-title {
    font-size: 36px;
  }
  .community-text {
    font-size: 18px;
  }
}

/* Animations */
.animated {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s;
}

.animated.slide-in {
  opacity: 1;
  transform: translateY(0);
}

/* Scroll to top button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--blood);
  color: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(138, 3, 3, 0.4);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: #a00;
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(138, 3, 3, 0.6);
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: rgba(45, 52, 54, 0.95);
  border-radius: 15px;
  max-width: 500px;
  width: 90%;
  padding: 40px;
  position: relative;
  transform: translateY(-50px);
  transition: all 0.5s;
  border-top: 4px solid var(--blood);
}

.modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: var(--light);
  transition: color 0.3s;
}

.modal-close:hover {
  color: var(--primary);
}

.modal-title {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 20px;
}

.modal-text {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* Loading animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: all 0.8s;
}

.loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 5px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: var(--blood);
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
