* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #020617;
  color: white;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  position: relative;
}

.background-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.25;
  z-index: -3;
}

.glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -2;
}

.glow1 {
  top: 0;
  left: 0;
  background: rgba(251, 191, 36, 0.18);
}

.glow2 {
  bottom: 0;
  right: 0;
  background: rgba(236, 72, 153, 0.18);
}

#floating-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.floating-icon {
  position: absolute;
  top: 110%;
  opacity: 0.12;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  from {
    transform: translateY(0) rotate(0deg);
  }
  to {
    transform: translateY(-1400px) rotate(360deg);
  }
}

.hero,
.card-section,
.interests-section,
.vision-section,
.contact-section {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 60px 0;
}

.tag,
.section-tag {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: rgba(251, 191, 36, 0.08);
  color: #fbbf24;
  font-size: 14px;
  margin-bottom: 20px;
}

.section-tag.dark {
  background: rgba(0,0,0,0.1);
  color: #111827;
  border: none;
}

.hero h1 {
  font-size: 60px;
  line-height: 1.1;
  font-weight: 900;
}

.hero h1 span {
  color: #fbbf24;
}

.hero p {
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.8;
  color: #cbd5e1;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.badges span {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}

.buttons {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 24px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.primary {
  background: #fbbf24;
  color: #0f172a;
}

.primary:hover,
.secondary:hover,
.insta-btn:hover,
.vision-card button:hover {
  transform: scale(1.05);
}

.secondary {
  background: rgba(255,255,255,0.05);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
}

.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.photo-card {
  width: 360px;
  height: 480px;
  border-radius: 40px;
  background: linear-gradient(135deg, #0f172a, #1e293b, #000);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
  position: relative;
}

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(251,191,36,0.15), transparent 35%);
  z-index: 1;
  pointer-events: none;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border-radius: 40px;
  position: relative;
  z-index: 0;
}

.floating-badge {
  position: absolute;
  padding: 14px 18px;
  border-radius: 18px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  z-index: 5;
}

.top-badge {
  top: -20px;
  right: -20px;
  background: #fbbf24;
  color: #0f172a;
  animation: bounceSoft 4s infinite;
}

.bottom-badge {
  bottom: -20px;
  left: -20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: white;
  display: flex;
  flex-direction: column;
  animation: bounceSoft2 5s infinite;
}

@keyframes bounceSoft {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes bounceSoft2 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.card,
.interest-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.card-section,
.interests-section,
.vision-section,
.contact-section {
  padding: 40px 0 80px;
}

.card h2,
.section-heading h2,
.vision-card h2 {
  font-size: 44px;
  margin-bottom: 20px;
  font-weight: 900;
}

.card p,
.section-heading p,
.interest-card p,
.vision-card p {
  color: #cbd5e1;
  font-size: 18px;
  line-height: 1.8;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.interest-card {
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.interest-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.interest-card .emoji {
  font-size: 52px;
  margin-bottom: 20px;
}

.interest-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.vision-card {
  background: linear-gradient(to right, #fcd34d, #facc15, #f59e0b);
  color: #0f172a;
  border-radius: 40px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(251,191,36,0.25);
}

.vision-card p {
  color: #1e293b;
}

.vision-card button,
.insta-btn {
  margin-top: 28px;
  padding: 16px 28px;
  border: none;
  border-radius: 18px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
}

.vision-card button {
  background: #0f172a;
  color: white;
}

.insta-btn {
  background: linear-gradient(to right, #ec4899, #d946ef, #f59e0b);
  color: white;
}

.contact-card {
  text-align: center;
}

@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero p {
    font-size: 18px;
  }

  .badges,
  .buttons {
    justify-content: center;
  }

  .interest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card h2,
  .section-heading h2,
  .vision-card h2 {
    font-size: 34px;
  }

  .top-badge {
    right: 10px;
  }

  .bottom-badge {
    left: 10px;
  }
}

@media (max-width: 600px) {
  .interest-grid {
    grid-template-columns: 1fr;
  }

  .photo-card {
    width: 100%;
    max-width: 320px;
    height: 420px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .floating-badge {
    font-size: 13px;
    padding: 12px 14px;
  }
}