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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #e2e8f0;
  min-height: 100vh;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

/* Header */
.header {
  text-align: center;
  margin-bottom: 3rem;
}

.avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f97316;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  /* background: linear-gradient(135deg, #f97316 0%, #fb923c 100%); */
  background: linear-gradient(135deg, #ff1a4c 0%, #0358fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-size: 1.125rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Featured Offer */
.featured-offer {
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s ease-out;
}

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

.offer-card {
  position: relative;
  display: block;
  padding: 2rem;
  /* background: linear-gradient(135deg, #f97316 0%, #fb923c 100%); */
  background: linear-gradient(135deg, #0358fe 0%, #ff1a4c 100%);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.4);
}

.offer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(249, 115, 22, 0.5);
}

.offer-card:hover::before {
  opacity: 1;
}

.offer-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.offer-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.offer-description {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
  line-height: 1.5;
}

.offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.offer-card:hover .offer-cta {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(4px);
}

.arrow-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.offer-card:hover .arrow-icon {
  transform: translateX(4px);
}

/* Sections */
.section {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #f1f5f9;
}

/* Social Links Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: #e2e8f0;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: #0358fe;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
  /* color: #ff1a4c; */
}

.social-link .icon {
  width: 32px;
  height: 32px;
  color: #ff1a4c;
}
.social-link:hover .icon {
  color: #0358fe; /* or any color you like */
}


.social-link span {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Links Grid */
.links-grid {
  display: grid;
  gap: 1rem;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(148, 163, 184, 0.1);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.link-card:hover {
  background: rgba(249, 115, 22, 0.1);
  border-color: #0358fe;
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.2);
}

.link-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.link-content {
  flex: 1;
}

.link-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #f1f5f9;
  margin-bottom: 0.25rem;
}

.link-description {
  font-size: 0.875rem;
  color: #94a3b8;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  color: #64748b;
  font-size: 0.875rem;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 640px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .offer-title {
    font-size: 1.5rem;
  }

  .offer-description {
    font-size: 0.9375rem;
  }

  .social-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .section-title {
    font-size: 1.25rem;
  }
}
