:root {
    --blue-deep:    #020818;
    --blue-dark:    #040d24;
    --blue-mid:     #0a1a3e;
    --blue-accent:  #1a4bcc;
    --blue-bright:  #3b7ef6;
    --blue-glow:    #4f9fff;
    --blue-neon:    #00aaff;
    --blue-light:   #a3d4ff;
    --blue-pale:    #d0eaff;
    --white:        #f0f8ff;
    --glass-bg:     rgba(10, 30, 80, 0.45);
    --glass-border: rgba(79, 159, 255, 0.25);
    --font-display: 'Syne', sans-serif;
    --font-body:    'DM Sans', sans-serif;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--blue-deep);
    color: var(--white);
    font-family: var(--font-body);
    overflow-x: hidden;
    cursor: none;
  }

  /* ─── CUSTOM CURSOR ─── */
  .cursor {
    position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  }
  .cursor-dot {
    width: 8px; height: 8px;
    background: var(--blue-neon);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
    box-shadow: 0 0 10px var(--blue-neon), 0 0 20px var(--blue-neon);
  }
  .cursor-ring {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(0, 170, 255, 0.6);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, transform 0.15s;
  }
  body:has(a:hover, button:hover) .cursor-ring {
    width: 52px; height: 52px;
    background: rgba(0, 170, 255, 0.07);
  }

  /* ─── SCROLLBAR ─── */
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--blue-dark); }
  ::-webkit-scrollbar-thumb { background: var(--blue-accent); border-radius: 3px; }

  /* ─── NOISE OVERLAY ─── */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none; z-index: 1; opacity: 0.4;
  }

  /* ─── AMBIENT ORBS ─── */
  .orb {
    position: fixed; border-radius: 50%; filter: blur(90px);
    pointer-events: none; z-index: 0; animation: orbDrift 18s ease-in-out infinite alternate;
  }
  .orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(26,75,204,0.35), transparent 70%); top: -200px; left: -150px; animation-delay: 0s; }
  .orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,170,255,0.2), transparent 70%); bottom: -150px; right: -100px; animation-delay: -6s; }
  .orb-3 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(59,126,246,0.25), transparent 70%); top: 40%; left: 55%; animation-delay: -12s; }

  @keyframes orbDrift {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(30px, -40px) scale(1.1); }
    100% { transform: translate(-20px, 20px) scale(0.95); }
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 20px 60px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(2, 8, 24, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(79, 159, 255, 0.1);
    transition: padding 0.3s;
  }
  nav.scrolled { padding: 14px 60px; }

  .nav-logo {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 800;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-neon));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
  }
  .nav-links { display: flex; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--blue-light);
    text-decoration: none; position: relative; padding-bottom: 4px;
    transition: color 0.3s;
  }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1px; background: var(--blue-neon);
    transition: width 0.3s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-links a:hover::after { width: 100%; }

  .nav-cta {
    padding: 10px 24px; border-radius: 30px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-bright));
    color: #fff; font-size: 0.85rem; font-weight: 600;
    text-decoration: none; letter-spacing: 0.04em;
    box-shadow: 0 0 20px rgba(59, 126, 246, 0.45);
    transition: box-shadow 0.3s, transform 0.2s;
  }
  .nav-cta:hover { box-shadow: 0 0 35px rgba(0, 170, 255, 0.7); transform: translateY(-1px); }

  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
  .hamburger span { width: 24px; height: 2px; background: var(--blue-light); border-radius: 2px; transition: 0.3s; }

  /* ─── HERO ─── */
  #hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 120px 60px 80px;
    position: relative; overflow: hidden; z-index: 2;
  }

  .hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center; max-width: 1300px; margin: 0 auto; width: 100%;
  }

  .hero-left { animation: fadeSlideLeft 1s cubic-bezier(.22,1,.36,1) both; }

  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 18px; border-radius: 30px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg); backdrop-filter: blur(10px);
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--blue-neon);
    margin-bottom: 28px;
  }
  .hero-tag::before {
    content: ''; width: 6px; height: 6px; background: var(--blue-neon);
    border-radius: 50%; box-shadow: 0 0 8px var(--blue-neon);
    animation: pulse 2s ease infinite;
  }
  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

  .hero-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800; line-height: 1.05;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff 30%, var(--blue-light) 60%, var(--blue-neon) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 1.1rem; font-weight: 300; line-height: 1.8;
    color: rgba(163, 212, 255, 0.85); max-width: 480px; margin-bottom: 36px;
  }

  .roles {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 44px;
  }
  .role-pill {
    padding: 9px 20px; border-radius: 30px;
    background: rgba(26, 75, 204, 0.25);
    border: 1px solid rgba(59, 126, 246, 0.4);
    font-size: 0.82rem; font-weight: 500; color: var(--blue-pale);
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.2s;
    animation: fadeUp 0.6s cubic-bezier(.22,1,.36,1) both;
  }
  .role-pill:nth-child(1){animation-delay:0.3s}
  .role-pill:nth-child(2){animation-delay:0.4s}
  .role-pill:nth-child(3){animation-delay:0.5s}
  .role-pill:nth-child(4){animation-delay:0.6s}
  .role-pill:hover {
    background: rgba(59, 126, 246, 0.35);
    border-color: var(--blue-glow);
    box-shadow: 0 0 20px rgba(0, 170, 255, 0.3);
    transform: translateY(-2px);
  }

  .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    padding: 15px 34px; border-radius: 50px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-neon));
    color: #fff; font-weight: 600; font-size: 0.95rem;
    text-decoration: none; letter-spacing: 0.03em;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.45), 0 4px 20px rgba(26,75,204,0.5);
    transition: box-shadow 0.3s, transform 0.2s;
    position: relative; overflow: hidden;
  }
  .btn-primary::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255,255,255,0.12), transparent);
    transform: translateX(-100%); transition: transform 0.5s;
  }
  .btn-primary:hover { box-shadow: 0 0 50px rgba(0, 170, 255, 0.75), 0 4px 30px rgba(26,75,204,0.7); transform: translateY(-2px); }
  .btn-primary:hover::after { transform: translateX(100%); }

  .btn-ghost {
    padding: 15px 34px; border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg); backdrop-filter: blur(10px);
    color: var(--blue-light); font-weight: 500; font-size: 0.95rem;
    text-decoration: none; letter-spacing: 0.03em;
    transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, transform 0.2s;
  }
  .btn-ghost:hover { border-color: var(--blue-glow); color: #fff; box-shadow: 0 0 25px rgba(79,159,255,0.25); transform: translateY(-2px); }

  /* ─── HERO IMAGE ─── */
  .hero-right {
    display: flex; justify-content: center; align-items: center;
    position: relative; animation: fadeSlideRight 1s cubic-bezier(.22,1,.36,1) both;
  }

  .hero-img-wrap {
    position: relative; width: 380px; height: 480px;
  }

  .img-glow-ring {
    position: absolute; inset: -20px;
    border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
    background: conic-gradient(from 0deg, var(--blue-neon), var(--blue-accent), transparent, var(--blue-bright), var(--blue-neon));
    animation: rotateBorder 8s linear infinite;
    filter: blur(4px);
  }
  @keyframes rotateBorder { to { transform: rotate(360deg); } }

  .img-glow-ring-inner {
    position: absolute; inset: -12px;
    border-radius: 40% 60% 55% 45% / 45% 45% 55% 55%;
    background: conic-gradient(from 180deg, var(--blue-accent), transparent, var(--blue-neon), transparent, var(--blue-accent));
    animation: rotateBorder 12s linear infinite reverse;
    filter: blur(2px); opacity: 0.7;
  }

  .img-bg-glow {
    position: absolute; inset: -40px;
    background: radial-gradient(ellipse at center, rgba(0, 170, 255, 0.25) 0%, transparent 65%);
    border-radius: 50%; animation: glowPulse 4s ease-in-out infinite alternate;
  }
  @keyframes glowPulse { 0%{opacity:0.5; transform:scale(0.95);} 100%{opacity:1; transform:scale(1.05);} }

  .hero-avatar {
    width: 100%; height: 100%;
    border-radius: 38% 62% 50% 50% / 42% 42% 58% 58%;
    object-fit: cover; position: relative; z-index: 2;
    border: 2px solid rgba(79, 159, 255, 0.4);
  }

  /* placeholder avatar */
  .avatar-placeholder {
    width: 100%; height: 100%;
    border-radius: 38% 62% 50% 50% / 42% 42% 58% 58%;
    position: relative; z-index: 2;
    background: linear-gradient(160deg, var(--blue-mid), var(--blue-dark));
    border: 2px solid rgba(79, 159, 255, 0.4);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .avatar-placeholder::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 30%, rgba(59,126,246,0.3), transparent 60%);
  }
  .avatar-placeholder i {
    font-size: 6rem; color: rgba(79, 159, 255, 0.5);
    position: relative; z-index: 1;
    margin-bottom: 10px;
  }
  .avatar-placeholder span {
    font-size: 0.75rem; color: rgba(163,212,255,0.5);
    letter-spacing: 0.08em; text-transform: uppercase;
    position: relative; z-index: 1;
  }

  .floating-badge {
    position: absolute; z-index: 5;
    padding: 12px 18px; border-radius: 16px;
    background: var(--glass-bg); backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(79,159,255,0.2);
    animation: float 4s ease-in-out infinite;
  }
  .floating-badge.badge-subs { bottom: 30px; left: -40px; animation-delay: 0s; }
  .floating-badge.badge-views { top: 40px; right: -30px; animation-delay: -2s; }
  .floating-badge.badge-years { top: 50%; right: -50px; transform: translateY(-50%); animation-delay: -1s; }

  @keyframes float {
    0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);}
  }
  .floating-badge.badge-years { animation: floatMid 4s ease-in-out infinite; animation-delay: -1s; }
  @keyframes floatMid {
    0%,100%{transform:translateY(-50%);} 50%{transform:translateY(calc(-50% - 10px));}
  }

  .badge-value {
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 800;
    color: var(--white); line-height: 1;
  }
  .badge-label { font-size: 0.7rem; color: var(--blue-light); letter-spacing: 0.06em; margin-top: 2px; }

  /* ─── SECTION COMMON ─── */
  section { position: relative; z-index: 2; }

  .section-header { text-align: center; margin-bottom: 64px; }
  .section-eyebrow {
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--blue-neon); font-weight: 600; margin-bottom: 14px;
    display: flex; align-items: center; justify-content: center; gap: 12px;
  }
  .section-eyebrow::before, .section-eyebrow::after {
    content: ''; flex: 1; max-width: 60px; height: 1px;
    background: linear-gradient(to right, transparent, var(--blue-neon));
  }
  .section-eyebrow::after { background: linear-gradient(to left, transparent, var(--blue-neon)); }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--white) 50%, var(--blue-light));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
  }
  .section-sub { color: rgba(163,212,255,0.7); font-size: 1rem; font-weight: 300; max-width: 540px; margin: 0 auto; line-height: 1.8; }

  .container { max-width: 1300px; margin: 0 auto; padding: 0 60px; }

  /* ─── DIVIDER ─── */
  .divider {
    height: 1px; margin: 0 60px;
    background: linear-gradient(to right, transparent, var(--blue-accent), var(--blue-neon), var(--blue-accent), transparent);
    opacity: 0.3;
  }

  /* ─── ABOUT ─── */
  #about { padding: 120px 0; }

  .about-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }

  .about-art {
    position: relative; height: 520px;
  }
  .about-img-main {
    width: 300px; height: 400px;
    border-radius: 30px;
    position: absolute; top: 0; left: 0;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 170, 255, 0.25), 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(79, 159, 255, 0.3);
  }
  .about-img-main::before {
    content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(160deg, rgba(59,126,246,0.15), transparent 60%);
  }
  .art-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(160deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .art-placeholder i { font-size: 5rem; color: rgba(79,159,255,0.4); }

  .about-img-accent {
    width: 200px; height: 260px;
    border-radius: 24px;
    position: absolute; bottom: 0; right: 40px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 170, 255, 0.3), 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(79,159,255,0.35);
    animation: floatSlow 6s ease-in-out infinite;
  }
  @keyframes floatSlow {
    0%,100%{transform:translateY(0);} 50%{transform:translateY(-15px);}
  }

  .about-card-stat {
    position: absolute; bottom: 60px; left: 260px; z-index: 5;
    padding: 16px 20px; border-radius: 18px;
    background: var(--glass-bg); backdrop-filter: blur(14px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(79,159,255,0.15);
    animation: float 5s ease-in-out infinite; animation-delay: -2s;
    min-width: 130px;
  }

  .about-content {}
  .about-content p {
    color: rgba(163,212,255,0.8); font-size: 1rem; line-height: 1.9;
    font-weight: 300; margin-bottom: 20px;
  }

  .skills-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 36px;
  }
  .skill-item {
    padding: 16px 20px; border-radius: 16px;
    background: var(--glass-bg); backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.2s;
  }
  .skill-item:hover { border-color: var(--blue-glow); box-shadow: 0 0 20px rgba(79,159,255,0.2); transform: translateX(4px); }
  .skill-name { font-size: 0.82rem; font-weight: 600; color: var(--blue-light); margin-bottom: 8px; display: flex; justify-content: space-between; }
  .skill-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
  .skill-fill { height: 100%; border-radius: 2px; background: linear-gradient(to right, var(--blue-accent), var(--blue-neon)); animation: fillBar 1.5s cubic-bezier(.22,1,.36,1) both; }
  @keyframes fillBar { from{width:0} }

  /* ─── CONTENT / VIDEOS ─── */
  #content { padding: 120px 0; }

  .content-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }

  .content-card {
    border-radius: 24px; overflow: hidden;
    background: var(--glass-bg); backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s, border-color 0.3s;
    position: relative;
  }
  .content-card:hover { transform: translateY(-8px); border-color: rgba(79,159,255,0.5); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(0,170,255,0.15); }

  .card-thumb {
    height: 180px; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
    display: flex; align-items: center; justify-content: center;
  }
  .card-thumb-gradient { position: absolute; inset: 0; opacity: 0.6; }
  .card-thumb-icon { font-size: 2.8rem; color: rgba(255,255,255,0.2); position: relative; z-index: 1; }

  .play-btn {
    position: absolute; z-index: 2;
    width: 52px; height: 52px; border-radius: 50%;
    background: rgba(0, 170, 255, 0.9);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: white;
    box-shadow: 0 0 30px rgba(0, 170, 255, 0.7);
    transform: scale(0); transition: transform 0.3s cubic-bezier(.22,1,.36,1);
  }
  .content-card:hover .play-btn { transform: scale(1); }

  .card-badge {
    position: absolute; top: 12px; right: 12px; z-index: 3;
    padding: 4px 12px; border-radius: 20px;
    background: rgba(0,170,255,0.9); font-size: 0.7rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
  }

  .card-body { padding: 22px 24px; }
  .card-category { font-size: 0.7rem; color: var(--blue-neon); letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
  .card-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; line-height: 1.4; color: var(--white); margin-bottom: 10px; }
  .card-meta { display: flex; gap: 14px; font-size: 0.75rem; color: rgba(163,212,255,0.6); }
  .card-meta span { display: flex; align-items: center; gap: 5px; }

  /* ─── SOCIAL ─── */
  #social { padding: 120px 0; }

  .social-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  }

  .social-card {
    display: flex; align-items: center; gap: 22px;
    padding: 28px 32px; border-radius: 24px;
    background: var(--glass-bg); backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    text-decoration: none; color: var(--white);
    transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
    group: true;
  }
  .social-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent, rgba(79,159,255,0.05));
    opacity: 0; transition: opacity 0.3s;
  }
  .social-card:hover { transform: translateY(-5px) scale(1.01); border-color: rgba(79,159,255,0.45); }
  .social-card:hover::before { opacity: 1; }
  .social-card:hover .social-arrow { transform: translate(4px, -4px); opacity: 1; }

  .social-icon-wrap {
    width: 58px; height: 58px; border-radius: 18px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; position: relative;
    transition: box-shadow 0.3s;
  }
  .social-card:hover .social-icon-wrap { box-shadow: 0 0 30px var(--glow-color, rgba(255,0,0,0.4)); }

  .social-info { flex: 1; }
  .social-platform { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; margin-bottom: 4px; opacity: 0.7; }
  .social-handle { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; }
  .social-count { font-size: 0.8rem; color: rgba(163,212,255,0.6); margin-top: 4px; }

  .social-arrow { font-size: 0.9rem; color: var(--blue-light); opacity: 0; transform: translate(0, 0); transition: transform 0.3s, opacity 0.3s; }

  /* YouTube */
  .social-yt { --glow-color: rgba(255,0,0,0.45); }
  .social-yt .social-icon-wrap { background: rgba(255,0,0,0.15); color: #ff4444; border: 1px solid rgba(255,0,0,0.25); }
  .social-yt:hover { box-shadow: 0 20px 50px rgba(255,0,0,0.12); }

  /* Discord */
  .social-discord { --glow-color: rgba(88,101,242,0.5); }
  .social-discord .social-icon-wrap { background: rgba(88,101,242,0.15); color: #7289da; border: 1px solid rgba(88,101,242,0.25); }
  .social-discord:hover { box-shadow: 0 20px 50px rgba(88,101,242,0.1); }

  /* Instagram */
  .social-ig { --glow-color: rgba(225,48,108,0.4); }
  .social-ig .social-icon-wrap { background: rgba(225,48,108,0.12); color: #e1306c; border: 1px solid rgba(225,48,108,0.2); }
  .social-ig:hover { box-shadow: 0 20px 50px rgba(225,48,108,0.1); }

  /* Twitter/X */
  .social-x { --glow-color: rgba(255,255,255,0.2); }
  .social-x .social-icon-wrap { background: rgba(255,255,255,0.08); color: #e7e9ea; border: 1px solid rgba(255,255,255,0.15); }

  /* TikTok */
  .social-tt { --glow-color: rgba(0,242,234,0.4); }
  .social-tt .social-icon-wrap { background: rgba(0,242,234,0.08); color: #00f2ea; border: 1px solid rgba(0,242,234,0.2); }

  /* Twitch */
  .social-twitch { --glow-color: rgba(145,70,255,0.45); }
  .social-twitch .social-icon-wrap { background: rgba(145,70,255,0.12); color: #9146ff; border: 1px solid rgba(145,70,255,0.2); }

  /* ─── ACHIEVEMENTS ─── */
  #achievements { padding: 120px 0; }

  .achievements-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
  }

  .ach-card {
    padding: 36px 28px; border-radius: 28px; text-align: center;
    background: var(--glass-bg); backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    position: relative; overflow: hidden;
    transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s, border-color 0.3s;
  }
  .ach-card::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 60%; height: 2px;
    background: linear-gradient(to right, transparent, var(--blue-neon), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .ach-card:hover { transform: translateY(-6px); border-color: rgba(79,159,255,0.4); box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 30px rgba(0,170,255,0.12); }
  .ach-card:hover::before { opacity: 1; }

  .ach-icon {
    width: 60px; height: 60px; border-radius: 18px; margin: 0 auto 22px;
    background: linear-gradient(135deg, rgba(26,75,204,0.5), rgba(0,170,255,0.25));
    border: 1px solid rgba(79,159,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; color: var(--blue-neon);
    box-shadow: 0 0 20px rgba(0,170,255,0.2);
  }
  .ach-number {
    font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--blue-neon));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
  }
  .ach-suffix { font-size: 1.2rem; font-weight: 600; color: var(--blue-neon); vertical-align: super; }
  .ach-label { font-size: 0.82rem; color: rgba(163,212,255,0.7); margin-top: 8px; font-weight: 400; }

  /* ─── CONTACT ─── */
  #contact { padding: 120px 0; }

  .contact-inner {
    max-width: 800px; margin: 0 auto; text-align: center;
  }

  .contact-form {
    margin-top: 50px; display: flex; flex-direction: column; gap: 18px;
    text-align: left;
  }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

  .form-group { display: flex; flex-direction: column; gap: 8px; }
  .form-group label { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); font-weight: 600; }

  .form-control {
    padding: 15px 20px; border-radius: 14px;
    background: rgba(10, 26, 62, 0.6); backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--white); font-family: var(--font-body); font-size: 0.95rem;
    outline: none; transition: border-color 0.3s, box-shadow 0.3s;
    resize: none;
  }
  .form-control::placeholder { color: rgba(163,212,255,0.35); }
  .form-control:focus { border-color: var(--blue-glow); box-shadow: 0 0 20px rgba(79,159,255,0.2); }

  textarea.form-control { height: 140px; }

  .form-submit {
    align-self: center; margin-top: 10px;
    padding: 16px 48px; border-radius: 50px;
    background: linear-gradient(135deg, var(--blue-accent), var(--blue-neon));
    color: #fff; font-weight: 600; font-size: 0.95rem;
    letter-spacing: 0.04em; border: none; cursor: pointer;
    box-shadow: 0 0 30px rgba(0,170,255,0.4), 0 4px 20px rgba(26,75,204,0.5);
    transition: box-shadow 0.3s, transform 0.2s;
    font-family: var(--font-body);
  }
  .form-submit:hover { box-shadow: 0 0 50px rgba(0,170,255,0.7), 0 4px 30px rgba(26,75,204,0.7); transform: translateY(-2px); }

  /* ─── FOOTER ─── */
  footer {
    padding: 50px 60px;
    background: rgba(2, 8, 24, 0.95);
    border-top: 1px solid rgba(79,159,255,0.12);
    position: relative; z-index: 2;
    text-align: center;
  }
  footer::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 300px; height: 1px;
    background: linear-gradient(to right, transparent, var(--blue-neon), transparent);
    box-shadow: 0 0 20px var(--blue-neon);
  }

  .footer-logo {
    font-family: var(--font-display); font-size: 2rem; font-weight: 800;
    background: linear-gradient(135deg, var(--blue-bright), var(--blue-neon));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 16px; letter-spacing: -0.03em;
  }

  .footer-links {
    display: flex; gap: 30px; justify-content: center;
    list-style: none; margin-bottom: 28px;
  }
  .footer-links a { font-size: 0.82rem; color: rgba(163,212,255,0.5); text-decoration: none; transition: color 0.3s; }
  .footer-links a:hover { color: var(--blue-neon); }

  .footer-socials { display: flex; gap: 16px; justify-content: center; margin-bottom: 30px; }
  .footer-social-btn {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(26,75,204,0.2); border: 1px solid rgba(79,159,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-light); text-decoration: none; font-size: 0.9rem;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, color 0.3s;
  }
  .footer-social-btn:hover { background: rgba(0,170,255,0.2); border-color: var(--blue-neon); box-shadow: 0 0 15px rgba(0,170,255,0.3); color: var(--blue-neon); }

  .footer-copy { font-size: 0.8rem; color: rgba(163,212,255,0.35); }
  .footer-copy span { color: var(--blue-glow); text-shadow: 0 0 10px rgba(79,159,255,0.5); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeSlideLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeSlideRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(.22,1,.36,1), transform 0.8s cubic-bezier(.22,1,.36,1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ─── MOBILE ─── */
  @media (max-width: 1024px) {
    .achievements-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 768px) {
    nav { padding: 18px 24px; }
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }

    #hero { padding: 100px 24px 60px; }
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .hero-right { order: -1; }
    .hero-img-wrap { width: 260px; height: 320px; }
    .floating-badge.badge-years { right: -10px; }
    .floating-badge.badge-views { right: 0; }
    .floating-badge.badge-subs { left: 0; }

    .container { padding: 0 24px; }
    .divider { margin: 0 24px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-art { height: 340px; margin-bottom: 40px; }
    .about-img-main { width: 200px; height: 270px; }
    .about-img-accent { width: 150px; height: 190px; right: 10px; }
    .about-card-stat { left: 160px; bottom: 30px; }

    .social-grid { grid-template-columns: 1fr; }
    .content-grid { grid-template-columns: 1fr; }
    .achievements-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }

    footer { padding: 40px 24px; }
    .footer-links { flex-wrap: wrap; gap: 16px; }
  }