/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  overflow-x: hidden;
}

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

/* Hero Section */
.hero-section {
  min-height: 100vh;
  position: relative;
  background: linear-gradient(
    135deg,
    #ff8c42 0%,
    #ff6b35 25%,
    #ffa500 50%,
    #ffd700 75%,
    #ffa500 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  z-index: 1;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8) contrast(1.2);
}

.floating-coins {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.coin {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(255, 140, 0, 0.4);
  animation: float 6s ease-in-out infinite;
  overflow: hidden;
  border: 3px solid #ffd700;
}

.coin-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.coin:hover .coin-image {
  transform: scale(1.1) rotate(10deg);
}

.coin-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.coin-2 {
  top: 60%;
  right: 15%;
  animation-delay: 1.5s;
}

.coin-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
}

.coin-4 {
  top: 40%;
  right: 30%;
  animation-delay: 4.5s;
}

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

/* Header */
.main-header {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 20px 0;
  display: flex;
  justify-content: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-circle {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, #ffd700 0%, #ffa500 50%, #ff8c42 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 8px 32px rgba(255, 140, 0, 0.4);
  border: 4px solid #ffd700;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.logo-circle:hover {
  transform: scale(1.1) rotate(5deg);
}

.main-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-text {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 140, 0, 0.3);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 215, 0, 0.3);
}

.main-title {
  margin-bottom: 30px;
}

.title-line {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #8b4513;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-name {
  display: block;
  font-size: 72px;
  font-weight: 900;
  color: #ff6b35;
  text-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.hero-story {
  margin-top: 30px;
  margin-bottom: 40px;
}

.story-text {
  font-size: 18px;
  font-weight: 600;
  color: #8b4513;
  line-height: 1.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contract Section */
.contract-section {
  margin-bottom: 40px;
}

.contract-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contract-copier {
  position: relative;
}

.contract-display {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px 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.15);
}

.contract-address {
  font-family: "Monaco", "Menlo", "Ubuntu Mono", monospace;
  font-size: 14px;
  color: #8b4513;
  flex: 1;
  word-break: break-all;
  font-weight: 600;
}

.copy-btn {
  background: linear-gradient(135deg, #ffd700, #ffa500);
  border: none;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: #8b4513;
  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: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  font-weight: 600;
}

.copy-feedback.show {
  opacity: 1;
  transform: translateY(0);
}

/* Chart Section */
.chart-section {
  margin-top: 20px;
  text-align: center;
}

.chart-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.chart-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.5);
  border-color: rgba(255, 215, 0, 0.6);
  background: linear-gradient(135deg, #ff8c42, #ffa500);
}

.chart-btn svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
}

/* Social Section */
.social-section h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ff6b35;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 215, 0, 0.3);
  border-radius: 12px;
  text-decoration: none;
  color: #8b4513;
  font-weight: 600;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 215, 0, 0.6);
  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);
}

/* Main Content */
.main-content {
  background: #fff8dc;
}

/* Tribute Section */
.tribute-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff8dc 0%, #ffe4b5 100%);
}

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

.tribute-card {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(255, 140, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tribute-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(255, 140, 0, 0.4);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffd700;
  background: radial-gradient(circle, #ffd700 0%, #ffa500 100%);
  transition: transform 0.3s ease;
}

.card-icon:hover {
  transform: scale(1.1) rotate(10deg);
}

.card-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.tribute-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ff6b35;
  margin-bottom: 15px;
}

.tribute-card p {
  color: #8b4513;
  line-height: 1.6;
}

/* Memorial Section */
.memorial-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffe4b5 0%, #ffd700 100%);
}

.memorial-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.memorial-text h2 {
  font-size: 36px;
  font-weight: 700;
  color: #8b4513;
  margin-bottom: 30px;
}

.memorial-text p {
  font-size: 18px;
  color: #8b4513;
  line-height: 1.8;
  margin-bottom: 20px;
}

.memorial-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.memorial-circle {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ffd700 0%, #ffa500 50%, #ff8c42 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 20px 80px rgba(255, 140, 0, 0.4);
  border: 5px solid #ffd700;
  animation: pulse 3s ease-in-out infinite;
  overflow: hidden;
}

.inner-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: #f5deb3;
  border-radius: 50%;
  border: 3px solid #8b4513;
  overflow: hidden;
}

.george-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.memorial-circle:hover .george-portrait-img {
  transform: scale(1.05);
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Legacy Section */
.legacy-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
}

.legacy-content {
  text-align: center;
}

.legacy-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: #8b4513;
  margin-bottom: 50px;
}

.legacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 600px;
  margin: 0 auto;
}

.legacy-item {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(255, 140, 0, 0.3);
  border: 2px solid rgba(255, 215, 0, 0.3);
  transition: transform 0.3s ease;
}

.legacy-item:hover {
  transform: translateY(-5px);
}

.legacy-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #ffd700;
  background: radial-gradient(circle, #ffd700 0%, #ffa500 100%);
}

.legacy-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.legacy-number {
  font-size: 48px;
  font-weight: 900;
  color: #ff6b35;
  margin-bottom: 10px;
}

.legacy-label {
  font-size: 16px;
  font-weight: 600;
  color: #8b4513;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.main-footer {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  color: #fff8dc;
  padding: 60px 0 40px;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-logo-circle {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #ffd700 0%, #ffa500 100%);
  border-radius: 50%;
  position: relative;
  border: 2px solid #ffd700;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.footer-logo-circle:hover {
  transform: scale(1.1) rotate(5deg);
}

.footer-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.footer-text {
  flex: 1;
}

.footer-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-date {
  font-weight: 600;
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-name {
    font-size: 48px;
  }

  .memorial-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .memorial-circle {
    width: 250px;
    height: 250px;
  }

  .inner-circle {
    width: 160px;
    height: 160px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

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

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

  .coin {
    width: 60px;
    height: 60px;
  }

  .logo-circle {
    width: 80px;
    height: 80px;
  }

  .social-links {
    flex-direction: column;
    align-items: 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;
  }

  .chart-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-text {
    padding: 30px 20px;
  }

  .hero-name {
    font-size: 36px;
  }

  .story-text {
    font-size: 16px;
  }

  .memorial-circle {
    width: 200px;
    height: 200px;
  }

  .inner-circle {
    width: 130px;
    height: 130px;
  }

  .coin {
    width: 50px;
    height: 50px;
  }

  .logo-circle {
    width: 70px;
    height: 70px;
  }

  .social-link {
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
}
