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

:root {
  --gold-primary: #d4af37;
  --gold-light: #f4d03f;
  --gold-dark: #b8941e;
  --dark-bg: #0a0a0a;
  --dark-secondary: #1a1a1a;
  --text-light: #ffffff;
  --text-gold: #ffd700;
}

body {
  font-family: "Georgia", "Times New Roman", serif;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1005 50%, #0a0a0a 100%);
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  width: 100%;
  min-height: 100vh;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 5%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--gold-dark);
  position: sticky;
  top: 0;
  z-index: 100;
}

.ticker {
  font-size: 2rem;
  font-weight: bold;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-primary),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-primary));
  color: var(--dark-bg);
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid var(--gold-light);
}

.social-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}

.hero {
  text-align: center;
  padding: 5rem 5% 3rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.15) 0%,
    transparent 70%
  );
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.main-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.title-line {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}
.title-line:nth-child(2) {
  animation-delay: 0.4s;
}
.title-line:nth-child(3) {
  animation-delay: 0.6s;
}

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

.title-line.gold {
  background: linear-gradient(
    135deg,
    var(--gold-light) 0%,
    var(--gold-primary) 50%,
    var(--gold-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-gold);
  margin-bottom: 2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.ticker-display {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: bold;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold-primary),
    var(--gold-dark),
    var(--gold-light)
  );
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
  letter-spacing: 10px;
  text-shadow: 0 0 50px rgba(212, 175, 55, 0.8);
  margin: 2rem 0;
}

@keyframes shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.ticker-label {
  font-size: 1.5rem;
  color: var(--gold-primary);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.showcase {
  padding: 4rem 5%;
  display: flex;
  justify-content: center;
}

.coin-display {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 500px));
  gap: 3rem;
  max-width: 1200px;
  width: 100%;
}

.coin-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
  border: 3px solid var(--gold-dark);
  transition: all 0.4s ease;
  animation: floatIn 1s ease-out forwards;
  opacity: 0;
}

.coin-card:nth-child(1) {
  animation-delay: 0.2s;
}
.coin-card:nth-child(2) {
  animation-delay: 0.4s;
}

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

.coin-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.5);
  border-color: var(--gold-light);
}

.coin-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.coin-card:hover .coin-image {
  transform: scale(1.05);
}

.coin-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
  pointer-events: none;
}

.info {
  padding: 5rem 5%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(212, 175, 55, 0.05) 50%,
    transparent 100%
  );
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 15px;
  border: 2px solid var(--gold-dark);
  transition: all 0.3s ease;
  text-align: center;
}

.info-card:hover {
  border-color: var(--gold-light);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.info-card h3 {
  color: var(--text-gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.info-card p {
  color: #cccccc;
  line-height: 1.8;
  font-size: 1.1rem;
}

.footer {
  text-align: center;
  padding: 3rem 5%;
  background: rgba(0, 0, 0, 0.5);
  border-top: 2px solid var(--gold-dark);
  margin-top: 4rem;
}

.footer p {
  margin: 0.5rem 0;
  color: #888888;
}

.disclaimer {
  font-size: 0.9rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 5%;
  }

  .ticker {
    font-size: 1.5rem;
  }

  .coin-display {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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