/* ============================================================
   ANSHUL GOYAL - Premium Personal Website CSS
   ============================================================ */

:root {
  --primary: #6c63ff;
  --primary-dark: #5a52e0;
  --primary-glow: rgba(108, 99, 255, 0.4);
  --accent: #ff4b91;
  --accent-glow: rgba(255, 75, 145, 0.3);
  --yt-red: #ff0000;
  --bg: #060612;
  --bg-2: #0b0b1e;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(108, 99, 255, 0.3);
  --text: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.55);
  --text-subtle: rgba(255, 255, 255, 0.35);
  --gradient: linear-gradient(135deg, #6c63ff 0%, #ff4b91 100%);
  --gradient-text: linear-gradient(135deg, #a78bfa 0%, #f472b6 100%);
  --shadow-glow: 0 0 40px rgba(108, 99, 255, 0.2);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, sans-serif;
  --font-display: 'Space Grotesk', -apple-system, sans-serif;
}

/* ================== RESET ================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

/* ================== SCROLLBAR ================== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}

/* ================== CUSTOM CURSOR ================== */
.cursor {
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  z-index: 99999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, background 0.2s;
  mix-blend-mode: exclusion;
}

.cursor-trail {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(108, 99, 255, 0.5);
  border-radius: 50%;
  position: fixed;
  z-index: 99998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.08s ease, top 0.08s ease;
}

.cursor.hovered {
  width: 32px;
  height: 32px;
  background: var(--accent);
}

/* ================== LOADER ================== */
.loader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 99997;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 220px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 20px;
}

.loader-fill {
  height: 100%;
  width: 0%;
  background: var(--gradient);
  border-radius: 2px;
  animation: load 2s ease-in-out forwards;
}

.loader-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@keyframes load {
  to {
    width: 100%;
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

/* ================== LAYOUT ================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* ================== NAVBAR ================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 16px 48px;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(6, 6, 18, 0.85);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 48px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  margin-right: auto;
}

.nav-logo-img {
  height: 43.2px;
  width: auto;
  max-width: 192px;
  object-fit: contain;
  /* The logo image has a dark bg — invert works on dark sites */
  filter: brightness(0) invert(1);
  display: block;
}

.logo-text {
  color: var(--text);
}

.logo-dot {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 32px;
  padding: 10px 24px;
  background: var(--gradient);
  color: #fff;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity 0.3s;
}

.nav-cta:hover::before {
  opacity: 1;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================== BUTTONS ================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gradient);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px var(--primary-glow);
}

.btn-primary.small {
  padding: 10px 22px;
  font-size: 0.87rem;
}

.btn-primary.full-width {
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 100px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--primary);
  background: rgba(108, 99, 255, 0.12);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.87rem;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(255, 75, 145, 0.1);
}

/* ================== SECTION HEADERS ================== */
.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.3);
  color: #a78bfa;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ================== HERO ================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 48px 60px;
  gap: 60px;
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 65% 50%, rgba(108, 99, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 50%, rgba(255, 75, 145, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, rgba(6, 6, 18, 0.2) 0%, rgba(6, 6, 18, 0.8) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  box-shadow: 0 0 8px #4ade80;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-display);
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.title-line {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-muted);
  font-weight: 400;
}

.title-name {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
}

.title-roles {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--text-muted);
  font-weight: 400;
}

.role-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: left;
}

.stat-num-row {
  display: flex;
  align-items: baseline;
  gap: 3px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-plus {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 380px;
}

.profile-ring-outer {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--primary), var(--accent), var(--primary));
  padding: 3px;
  animation: rotateSlow 8s linear infinite;
  position: relative;
}

.profile-ring-mid {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg);
  padding: 6px;
  position: relative;
  animation: rotateSlowReverse 8s linear infinite;
}

@keyframes rotateSlowReverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes rotateSlow {
  to {
    transform: rotate(360deg);
  }
}

.profile-ring-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a3e 0%, #0d0d28 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.profile-fallback {
  display: none;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  align-items: center;
  justify-content: center;
}

/* Floating domain tags */
.floating-tag {
  position: absolute;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(108, 99, 255, 0.35);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: #a78bfa;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.tag-1 {
  top: 5%;
  left: -10%;
  animation: float1 4s ease-in-out infinite;
}

.tag-2 {
  top: 20%;
  right: -15%;
  animation: float2 5s ease-in-out infinite;
}

.tag-3 {
  bottom: 25%;
  right: -20%;
  animation: float1 6s ease-in-out infinite 1s;
}

.tag-4 {
  bottom: 5%;
  left: -5%;
  animation: float2 4.5s ease-in-out infinite 0.5s;
}

.tag-5 {
  top: 45%;
  left: -18%;
  animation: float1 5.5s ease-in-out infinite 1.5s;
}

.tag-6 {
  top: 70%;
  right: -5%;
  animation: float2 3.5s ease-in-out infinite 0.8s;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.scroll-indicator {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: scrollDown 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
    opacity: 1
  }

  100% {
    transform: translateY(18px);
    opacity: 0
  }
}

/* ================== ABOUT ================== */
.about {
  background: rgba(255, 255, 255, 0.01);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-card {
  position: relative;
  padding: 20px;
  border-radius: 24px;
  overflow: hidden;
}

.about-img-bg {
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0.12;
  border-radius: 24px;
}

.about-img-inner {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  z-index: 1;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  display: block;
}

.about-meta-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(6, 6, 18, 0.85);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(16px);
  font-size: 0.85rem;
  box-shadow: var(--shadow-glow);
  z-index: 2;
}

.about-meta-card i {
  font-size: 1.4rem;
}

.about-meta-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

.about-meta-card span {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.card-1 {
  bottom: 30px;
  left: -20px;
}

.card-1 i {
  color: var(--primary);
}

.card-2 {
  top: 30px;
  right: -20px;
}

.card-2 i {
  color: var(--yt-red);
}

.about-lead {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text);
}

.about-text {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 14px;
}

.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.skill-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.84rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.skill-tag:hover {
  border-color: var(--primary);
  color: var(--text);
  background: rgba(108, 99, 255, 0.1);
}

.skill-tag i {
  color: var(--primary);
  font-size: 0.9rem;
}

.about-cta {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}

/* ================== DOMAINS ================== */
.domains-section {
  background: var(--bg-2);
}

.domains-marquee-wrap {
  overflow: hidden;
  margin-bottom: 60px;
  -webkit-mask: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.domains-marquee {
  display: flex;
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

.marquee-domain {
  padding: 10px 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Domain Cards */
.domain-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 50px;
}

.domain-card {
  position: relative;
  padding: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.domain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: var(--radius);
}

.domain-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
}

.domain-card:hover::before {
  opacity: 0.04;
}

.domain-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.domain-card:hover .domain-card-glow {
  opacity: 1;
}

.domain-card.is-featured {
  border-color: rgba(108, 99, 255, 0.4);
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 75, 145, 0.05) 100%);
}

.domain-card.is-featured:hover {
  transform: translateY(-8px);
}

.domain-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.domain-badge.premium {
  background: rgba(250, 204, 21, 0.15);
  color: #fbbf24;
}

.domain-badge.featured-badge {
  background: var(--gradient);
  color: #fff;
}

.domain-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.domain-name span {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.domain-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Price row above meta */
.domain-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.domain-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-note {
  font-size: 0.7rem;
  font-weight: 600;
  -webkit-text-fill-color: var(--text-muted);
  color: var(--text-muted);
  background: none;
  letter-spacing: 1px;
  margin-left: 2px;
}

.domain-offer-pct {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 100px;
  padding: 3px 10px;
}

.domain-offer-pct i {
  font-size: 0.7rem;
}

.domain-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

.domain-meta span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.domain-meta i {
  color: var(--primary);
}

.traffic-high {
  color: #f97316 !important;
}

.traffic-high i {
  color: #f97316 !important;
}

.traffic-low {
  color: var(--text-subtle) !important;
}

.domain-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 18px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.domain-btn:hover {
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 8px 24px var(--primary-glow);
}

.domains-cta {
  text-align: center;
  padding: 50px;
  background: rgba(108, 99, 255, 0.06);
  border: 1px solid rgba(108, 99, 255, 0.15);
  border-radius: var(--radius);
}

.domains-cta p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 24px;
}

/* ================== YOUTUBE ================== */
.youtube-section {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.youtube-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 0, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.yt-channel-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 40px 50px;
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.08) 0%, rgba(108, 99, 255, 0.06) 100%);
  border: 1px solid rgba(255, 0, 0, 0.2);
  border-radius: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.yt-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.yt-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(255, 0, 0, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.yt-icon {
  font-size: 2rem;
  color: var(--yt-red);
}

.yt-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.yt-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.yt-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.yt-stats span {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.yt-stats i {
  color: var(--yt-red);
}

.yt-subscribe-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--yt-red);
  color: #fff;
  font-weight: 700;
  border-radius: 100px;
  font-size: 0.95rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.yt-subscribe-btn:hover {
  background: #cc0000;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

/* Second channel — purple theme */
.yt-card-hotel {
  margin-bottom: 20px;
}

.yt-card-guru {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 75, 145, 0.05) 100%);
  border-color: rgba(108, 99, 255, 0.25);
}

.yt-icon-purple {
  background: rgba(108, 99, 255, 0.15) !important;
}

.yt-icon-purple .yt-icon {
  color: var(--primary) !important;
}

.yt-btn-purple {
  background: var(--gradient) !important;
}

.yt-btn-purple:hover {
  background: linear-gradient(135deg, #5a52e0, #e03c7e) !important;
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.35) !important;
}

/* Video channel tag badge */
.video-channel-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  background: rgba(255, 0, 0, 0.75);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
}

.video-channel-tag.tag-purple {
  background: rgba(108, 99, 255, 0.8);
}

/* New video thumb backgrounds */
.bg-hotel {
  background: linear-gradient(135deg, #1a2a1a 0%, #1a3a2a 50%, #2e7d32 100%);
}

.bg-guru {
  background: linear-gradient(135deg, #1a1248 0%, #2d1b69 50%, #6c63ff 100%);
}


.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 0, 0, 0.3);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-thumb-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}

.bg-1 {
  background: linear-gradient(135deg, #1a1a5e 0%, #2d1b69 50%, #6c63ff 100%);
}

.bg-2 {
  background: linear-gradient(135deg, #1a2a3a 0%, #1e4060 50%, #0080ff 100%);
}

.bg-3 {
  background: linear-gradient(135deg, #2a1a1a 0%, #5e1b1b 50%, #ff4444 100%);
}

.video-card:hover .video-thumb-bg {
  transform: scale(1.05);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-btn i {
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  backdrop-filter: blur(4px);
  padding-left: 4px;
  transition: var(--transition);
}

.video-card:hover .play-btn i {
  background: var(--yt-red);
  border-color: var(--yt-red);
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 8px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.video-info {
  padding: 18px;
}

.video-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.5;
}

.video-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.yt-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.topic-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.topic-pill:hover {
  border-color: var(--yt-red);
  color: var(--text);
  background: rgba(255, 0, 0, 0.08);
}

.topic-pill i {
  color: var(--yt-red);
}

/* ================== TIMELINE ================== */
.portfolio-section {
  background: var(--bg-2);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, var(--primary), var(--accent), transparent);
}

.timeline-item {
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 40px);
  margin-bottom: 50px;
  position: relative;
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease;
}

.timeline-item.right {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 40px);
  transform: translateX(30px);
}

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-dot {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 16px;
  height: 16px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--bg-2);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.3);
  z-index: 1;
}

.timeline-dot.active {
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 75, 145, 0.3), 0 0 20px var(--accent);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(255, 75, 145, 0.3), 0 0 20px var(--accent);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(255, 75, 145, 0.15), 0 0 35px var(--accent);
  }
}

.timeline-card {
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 300px;
  transition: var(--transition);
}

.timeline-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.timeline-card.active-card {
  border-color: rgba(255, 75, 145, 0.3);
  background: rgba(255, 75, 145, 0.05);
}

.timeline-year {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(108, 99, 255, 0.12);
  border-radius: 100px;
  padding: 3px 12px;
  margin-bottom: 12px;
}

.timeline-card h4 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 8px;
}

.timeline-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ================== CONTACT ================== */
.contact-section {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-card:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.contact-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.email-icon {
  background: rgba(108, 99, 255, 0.15);
  color: var(--primary);
}

.phone-icon {
  background: rgba(74, 222, 128, 0.15);
  color: #4ade80;
}

.yt-icon-wrap {
  background: rgba(255, 0, 0, 0.12);
  color: var(--yt-red);
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-subtle);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  transition: color 0.3s;
}

.contact-value:hover {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fff;
  transition: var(--transition);
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.social-btn.youtube {
  --hover-bg: rgba(255, 0, 0, 0.18);
  --hover-border: rgba(255, 0, 0, 0.4);
}

.social-btn.whatsapp {
  --hover-bg: rgba(37, 211, 102, 0.15);
  --hover-border: rgba(37, 211, 102, 0.4);
}

.social-btn.email-s {
  --hover-bg: rgba(108, 99, 255, 0.15);
  --hover-border: rgba(108, 99, 255, 0.4);
}

.social-btn.twitter {
  --hover-bg: rgba(29, 161, 242, 0.15);
  --hover-border: rgba(29, 161, 242, 0.4);
}

.social-btn.linkedin {
  --hover-bg: rgba(0, 119, 181, 0.15);
  --hover-border: rgba(0, 119, 181, 0.4);
}

.social-btn:hover {
  background: var(--hover-bg, rgba(108, 99, 255, 0.15));
  border-color: var(--hover-border, rgba(108, 99, 255, 0.4));
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrap {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-family: var(--font);
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-subtle);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.12);
  background: rgba(108, 99, 255, 0.04);
}

.form-group select option {
  background: #1a1a3e;
  color: var(--text);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.form-success.show {
  display: block;
}

.success-icon {
  font-size: 3rem;
  color: #4ade80;
  margin-bottom: 16px;
  animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-success h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  color: var(--text-muted);
}

@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0
  }

  100% {
    transform: scale(1);
    opacity: 1
  }
}

/* ================== FOOTER ================== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
}

.footer-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(108, 99, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.footer-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-logo-img-wrap {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 52.8px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-quick a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 0.87rem;
  transition: color 0.3s;
}

.footer-contact-quick a:hover {
  color: var(--primary);
}

.footer-contact-quick i {
  color: var(--primary);
}

.footer-links-group h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.3s;
}

.footer-links-group a:hover {
  color: var(--text);
}

.footer-social-group h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(108, 99, 255, 0.1);
  transform: translateY(-2px);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.83rem;
}

.footer-bottom a {
  color: var(--primary);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* ================== SCROLL ANIMATIONS ================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 1100px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    width: 280px;
    height: 280px;
    order: -1;
  }

  .profile-ring-outer {
    width: 250px;
    height: 250px;
  }

  .title-name {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-image-wrap {
    max-width: 380px;
    margin: 0 auto;
  }

  .domain-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .navbar {
    padding: 16px 24px;
  }

  .navbar.scrolled {
    padding: 12px 24px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: rgba(11, 11, 30, 0.97);
    backdrop-filter: blur(20px);
    padding: 90px 40px 40px;
    border-left: 1px solid var(--border);
    gap: 30px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-links.open {
    display: flex;
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.1rem;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  section {
    padding: 70px 0;
  }

  .domain-cards {
    grid-template-columns: 1fr;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 22px;
  }

  .yt-channel-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item,
  .timeline-item.right {
    justify-content: flex-start;
    padding: 0 0 0 60px;
  }

  .timeline-dot {
    left: 20px;
  }

  .timeline-card {
    max-width: 100%;
  }

  .hero-visual {
    width: 220px;
    height: 220px;
  }

  .profile-ring-outer {
    width: 200px;
    height: 200px;
  }

  .floating-tag {
    font-size: 0.72rem;
    padding: 5px 10px;
  }

  .card-1 {
    left: 0;
  }

  .card-2 {
    right: 0;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 40px;
  }

  .container {
    padding: 0 16px;
  }

  .about-cta {
    flex-direction: column;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-divider {
    display: none;
  }
}