/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 165, 0, 0.1)
  );
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  top: 80%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 30%;
  animation-delay: 1s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 40px 0;
}

.hero-text {
  max-width: 600px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffd700, #ffa500, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.subtitle {
  font-size: 0.6em;
  font-weight: 400;
  color: #a0a0a0;
  display: block;
  margin-top: 10px;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 40px;
  max-width: 500px;
}

/* Contract Section */
.contract-section {
  margin-bottom: 40px;
}

.contract-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffd700;
}

.contract-copier {
  position: relative;
}

.contract-display {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  padding: 16px 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contract-display:hover {
  border-color: rgba(255, 215, 0, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

.contract-address {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 0.9rem;
  color: #ffffff;
  flex: 1;
  word-break: break-all;
}

.copy-btn {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border: none;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: #000;
  transition: all 0.3s ease;
  margin-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.copy-feedback {
  position: absolute;
  top: -40px;
  right: 0;
  background: #4caf50;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.copy-feedback.show {
  opacity: 1;
  transform: translateY(0);
}

/* Social Section */
.social-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffd700;
}

.social-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.1);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.social-link.twitter:hover {
  border-color: #1da1f2;
  background: rgba(29, 161, 242, 0.1);
  box-shadow: 0 10px 30px rgba(29, 161, 242, 0.2);
}

.social-link.telegram:hover {
  border-color: #0088cc;
  background: rgba(0, 136, 204, 0.1);
  box-shadow: 0 10px 30px rgba(0, 136, 204, 0.2);
}

/* Hero Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  position: relative;
}

.teddy-logo {
  position: relative;
  width: 300px;
  height: 300px;
  z-index: 3;
}

.logo-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ffa500, #ff6b35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: pulse 3s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
  overflow: hidden;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.teddy-coin-logo {
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: 50%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.teddy-coin-logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.teddy-photo {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.teddy-photo:hover {
  transform: translateY(-10px) scale(1.02);
}

.teddy-real-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.photo-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 165, 0, 0.2)
  );
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.teddy-photo:hover .photo-glow {
  opacity: 1;
}

.teddy-photo:hover .teddy-real-photo {
  transform: scale(1.05);
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.05) 0%,
    rgba(255, 165, 0, 0.05) 100%
  );
  position: relative;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,215,0,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,215,0,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.story-text {
  max-width: 600px;
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
}

.story-description p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #b0b0b0;
  margin-bottom: 20px;
}

.story-description p:last-child {
  margin-bottom: 0;
}

.story-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.screenshot-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.screenshot-container:hover {
  transform: translateY(-10px) scale(1.02);
}

.endorsement-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.screenshot-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.2),
    rgba(255, 165, 0, 0.2)
  );
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.screenshot-container:hover .screenshot-glow {
  opacity: 1;
}

.screenshot-container:hover .endorsement-screenshot {
  transform: scale(1.05);
}

/* Sources Section */
.sources-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.sources-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.source-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.source-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 215, 0, 0.3);
  background: rgba(255, 215, 0, 0.05);
  box-shadow: 0 15px 40px rgba(255, 215, 0, 0.1);
}

.source-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.source-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.source-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #b0b0b0;
  margin-bottom: 15px;
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd700;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.source-link:hover {
  color: #ffa500;
  transform: translateX(5px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    order: 2;
  }

  .hero-visual {
    order: 1;
    gap: 30px;
  }

  .teddy-logo {
    width: 250px;
    height: 250px;
  }

  .teddy-photo {
    width: 220px;
    height: 220px;
  }

  .social-links {
    justify-content: center;
  }

  .contract-display {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .copy-btn {
    margin-left: 0;
  }

  .copy-feedback {
    position: static;
    margin-top: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .teddy-logo {
    width: 200px;
    height: 200px;
  }

  .teddy-photo {
    width: 180px;
    height: 180px;
  }

  .social-links {
    flex-direction: column;
    align-items: center;
  }

  .social-link {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }

  /* Story Section Mobile */
  .story-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .story-text {
    order: 2;
  }

  .story-visual {
    order: 1;
  }

  .screenshot-container {
    max-width: 350px;
  }

  /* Sources Section Mobile */
  .sources-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .source-card {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .source-icon {
    align-self: center;
  }
}

/* Tokenomics & History Section */
.tokenomics-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(255, 215, 0, 0.04) 0%,
    rgba(255, 165, 0, 0.04) 100%
  );
  position: relative;
  overflow: hidden;
}
.tokenomics-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.tokenomics-text {
  max-width: 600px;
}
.tokenomics-description ul {
  margin-bottom: 24px;
  padding-left: 20px;
}
.tokenomics-description li {
  font-size: 1.1rem;
  color: #ffd700;
  margin-bottom: 10px;
  list-style: disc inside;
}
.tokenomics-description li a {
  color: #ffa500;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
.tokenomics-description li a:hover {
  color: #ff6b35;
}
.tokenomics-description p {
  font-size: 1.1rem;
  color: #b0b0b0;
  margin-top: 10px;
}
.tokenomics-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.etherscan-proof-container {
  position: relative;
  width: 100%;
  max-width: 650px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.etherscan-proof-container:hover {
  transform: translateY(-10px) scale(1.02);
}
.etherscan-proof-img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.3s ease;
}
.etherscan-proof-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 215, 0, 0.18),
    rgba(255, 165, 0, 0.18)
  );
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.etherscan-proof-container:hover .etherscan-proof-glow {
  opacity: 1;
}
.etherscan-proof-container:hover .etherscan-proof-img {
  transform: scale(1.05);
}

/* Responsive for Tokenomics & Etherscan Proofs */
@media (max-width: 900px) {
  .tokenomics-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .tokenomics-text {
    order: 2;
  }
  .tokenomics-visual {
    order: 1;
  }
  .etherscan-proof-container {
    max-width: 95vw;
  }
}
