  :root {
    --red: #C00F27;
    --dark: #1C1B1B;
    --white: #E7D8D9;
    --discord: #7289da;
    --grad: linear-gradient(135deg, #1C1B1B 0%, #2a0a10 50%, #C00F27 100%);
  }

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

  html { scroll-behavior: smooth; }

  body {
    background: #1C1B1B;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    cursor: auto;
    transition: background-color 0.3s ease;
  }

  /* HEADER */
  header {
    position: fixed;
    top: 0; left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(28,27,27,0.75);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(192,15,39,0.2);
    border-radius: 100px;
    margin-top: 18px;
    white-space: nowrap;
  }

  nav { display: flex; align-items: center; gap: 4px; }

  nav a {
    color: rgba(231,216,217,0.7);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 50px;
    transition: all 0.25s ease;
    letter-spacing: 0.02em;
  }
  nav a:hover { color: var(--white); background: rgba(192,15,39,0.15); }
  nav a.cta {
    background: var(--red);
    color: var(--white);
    font-weight: 600;
  }
  nav a.cta:hover { background: #e01030; transform: scale(1.04); }

  .lang-switch {
    display: flex; align-items: center; gap: 8px;
    margin-left: 12px;
    font-size: 11px;
    font-weight: 600;
    color: rgba(231,216,217,0.5);
    letter-spacing: 0.05em;
  }
  .switch-wrap {
    width: 42px; height: 22px;
    background: rgba(192,15,39,0.3);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
    border: 1px solid rgba(192,15,39,0.5);
    transition: background 0.3s;
  }
  .switch-wrap.ptbr { background: rgba(192,15,39,0.7); }
  .switch-knob {
    width: 16px; height: 16px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    top: 2px; left: 3px;
    transition: left 0.3s ease;
  }
  .switch-wrap.ptbr .switch-knob { left: 23px; }

  /* HERO */
  #hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    /* Override section max-width — hero must be 100% viewport */
    max-width: 100vw !important;
    width: 100vw !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
  }

  .hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
    background: #000;
  }
  /* O YT API cria um iframe dentro de #heroBgVideo — isso faz ele cobrir tudo */
  #heroBgVideo {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Sempre maior que a viewport, mantendo proporção 16:9 */
    width: max(100vw, 177.78vh);
    height: max(56.25vw, 100vh);
    transform: translate(-50%, -50%);
    filter: blur(18px) brightness(0.28) saturate(1.4);
    pointer-events: none;
  }
  #heroBgVideo iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
  }

  .hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(192,15,39,0.08) 0%, rgba(28,27,27,0.7) 70%);
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .avatar-ring {
    width: 168px; height: 168px;
    border-radius: 50%;
    background: conic-gradient(var(--red), #ff4d6d, var(--red), #8b0000, var(--red));
    animation: spin 4s linear infinite;
    box-shadow: 0 0 40px rgba(192,15,39,0.5);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  @keyframes spin { to { transform: rotate(360deg); } }

  .avatar-inner {
    width: 152px; height: 152px;
    border-radius: 50%;
    overflow: hidden;
    background: #1C1B1B;
    display: flex; align-items: center; justify-content: center;
    animation: none;
    flex-shrink: 0;
  }

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

  .avatar-placeholder {
    width: 100%; height: 100%;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
    background: linear-gradient(135deg, #2a0a10, #1C1B1B);
    color: var(--red);
    font-family: 'Bebas Neue', cursive;
  }

  .hero-name {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(56px, 10vw, 110px);
    letter-spacing: 0.05em;
    line-height: 1;
    animation: blink-color 1.8s ease-in-out infinite;
  }
  @keyframes blink-color {
    0%, 100% { color: var(--white); text-shadow: 0 0 40px rgba(231,216,217,0.3); }
    50% { color: var(--red); text-shadow: 0 0 60px rgba(192,15,39,0.6); }
  }

  .hero-sub {
    font-size: 14px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(231,216,217,0.5);
    font-weight: 400;
  }

  .scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(231,216,217,0.35);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    animation: float 2s ease-in-out infinite;
  }
  @keyframes float { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }
  .scroll-hint::after {
    content: '';
    display: block;
    width: 1px; height: 48px;
    background: linear-gradient(to bottom, rgba(192,15,39,0.6), transparent);
  }

  /* SECTIONS */
  section {
    padding: 100px 5%;
    max-width: 1300px;
    margin: 0 auto;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: 'Space Mono', monospace;
  }

  .section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: clamp(36px, 6vw, 72px);
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 52px;
    color: var(--white);
  }

  /* REVEAL ANIMATION */
  .reveal {
    opacity: 0;
    transform: translateY(48px);
    transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,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; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .reveal-delay-6 { transition-delay: 0.6s; }

  /* PORTFOLIO */
  #portfolio { padding-top: 120px; }

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

  .video-card {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    group: true;
  }
  .video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(192,15,39,0.0);
    transition: background 0.3s ease;
    z-index: 2;
    border-radius: 16px;
  }
  .video-card:hover::before { background: rgba(192,15,39,0.15); }

  .video-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
    display: block;
  }
  .video-card:hover img { transform: scale(1.06); }

  .video-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a1a1a, #2a0a10);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    color: rgba(231,216,217,0.3);
    letter-spacing: 0.1em;
    flex-direction: column;
    gap: 12px;
  }

  .play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 54px; height: 54px;
    background: rgba(192,15,39,0.85);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    backdrop-filter: blur(4px);
  }
  .play-btn svg { width: 20px; height: 20px; fill: white; margin-left: 3px; }
  .video-card:hover .play-btn { opacity: 1; transform: translate(-50%,-50%) scale(1.08); }

  .video-edit-btn {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(28,27,27,0.85);
    border: 1px solid rgba(192,15,39,0.4);
    color: var(--white);
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 4;
    font-family: 'Outfit', sans-serif;
    transition: all 0.2s;
    opacity: 0;
  }
  .video-card:hover .video-edit-btn { opacity: 1; }
  .video-edit-btn:hover { background: var(--red); border-color: var(--red); }

  .btn-all-projects {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 16px 48px;
    background: transparent;
    border: 1.5px solid rgba(192,15,39,0.5);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .btn-all-projects::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
  }
  .btn-all-projects:hover::before { transform: scaleX(1); }
  .btn-all-projects span { position: relative; z-index: 1; }

  /* ALL PROJECTS MODAL */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28,27,27,0.95);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .modal-overlay.open { opacity: 1; pointer-events: all; }
  .modal-box {
    background: #1a1a1a;
    border: 1px solid rgba(192,15,39,0.25);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 1000px;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(30px);
    transition: transform 0.3s;
  }
  .modal-overlay.open .modal-box { transform: translateY(0); }
  .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
  }
  .modal-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 36px;
    color: var(--white);
    letter-spacing: 0.05em;
  }
  .modal-close {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(192,15,39,0.15);
    border: 1px solid rgba(192,15,39,0.3);
    color: var(--white);
    cursor: pointer;
    font-size: 18px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .modal-close:hover { background: var(--red); }

  .modal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }

  .add-video-btn {
    width: 100%;
    padding: 18px;
    background: rgba(192,15,39,0.08);
    border: 1.5px dashed rgba(192,15,39,0.3);
    border-radius: 16px;
    color: rgba(231,216,217,0.5);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
  }
  .add-video-btn:hover { background: rgba(192,15,39,0.15); color: var(--white); border-color: var(--red); }
  .add-video-btn svg { width: 24px; height: 24px; stroke: currentColor; fill: none; }

  /* VIDEO FORM */
  .video-form {
    background: #111;
    border-radius: 16px;
    padding: 20px;
    display: none;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    border: 1px solid rgba(192,15,39,0.2);
  }
  .video-form.open { display: flex; }
  .video-form input, .video-form select {
    background: rgba(231,216,217,0.06);
    border: 1px solid rgba(192,15,39,0.2);
    border-radius: 10px;
    padding: 11px 16px;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }
  .video-form input:focus, .video-form select:focus { border-color: var(--red); }
  .video-form select option { background: #1a1a1a; }
  .form-row { display: flex; gap: 10px; }
  .btn-add {
    background: var(--red);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-add:hover { background: #e01030; }

  /* SHORT VIDEOS */
  #shorts { background: transparent; }

  .shorts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .short-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
  }
  .short-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(192,15,39,0.0);
    transition: background 0.3s;
    z-index: 2;
  }
  .short-card:hover::before { background: rgba(192,15,39,0.15); }
  .short-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s cubic-bezier(0.16,1,0.3,1); }
  .short-card:hover img { transform: scale(1.06); }

  /* CHANNELS */
  #channels { overflow: hidden; }

  .channels-track-wrap {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .channels-track-wrap::-webkit-scrollbar { display: none; }

  .channels-track {
    display: flex;
    gap: 28px;
    padding: 16px 4px;
    justify-content: center;
    flex-wrap: nowrap;
    min-width: max-content;
    margin: 0 auto;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
  }

  .channel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    min-width: 100px;
    text-decoration: none;
    color: var(--white);
    transition: transform 0.3s;
  }
  .channel-card:hover { transform: translateY(-6px); }

  .channel-avatar {
    width: 88px; height: 88px;
    border-radius: 50%;
    overflow: hidden;
    border: 2.5px solid rgba(192,15,39,0.3);
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #2a0a10;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
  }
  .channel-card:hover .channel-avatar {
    border-color: var(--red);
    box-shadow: 0 0 24px rgba(192,15,39,0.4);
  }
  .channel-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .channel-name {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    color: rgba(231,216,217,0.7);
    max-width: 90px;
    line-height: 1.3;
  }

  .carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
  }

  .carousel-btn {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: rgba(192,15,39,0.12);
    border: 1px solid rgba(192,15,39,0.3);
    color: var(--white);
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.25s;
  }
  .carousel-btn:hover { background: var(--red); border-color: var(--red); }
  .carousel-btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; }

  .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }

  .skill-tag {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 7px 16px;
    border-radius: 50px;
    border: 1px solid rgba(192,15,39,0.35);
    color: rgba(231,216,217,0.6);
    background: rgba(192,15,39,0.06);
    transition: all 0.25s ease;
    cursor: default;
    font-family: 'Space Mono', monospace;
  }
  .skill-tag:hover {
    border-color: var(--red);
    color: var(--white);
    background: rgba(192,15,39,0.15);
    transform: translateY(-2px);
  }

  /* ABOUT */
  #about {}
  .about-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 80px;
    align-items: start;
  }

  .about-text {
    font-size: 16px;
    line-height: 1.9;
    color: rgba(231,216,217,0.8);
    font-weight: 300;
  }
  .about-text p { margin-bottom: 20px; }
  .about-quote {
    border-left: 2px solid var(--red);
    padding-left: 20px;
    margin: 28px 0;
    color: rgba(231,216,217,0.6);
    font-style: italic;
    font-size: 15px;
    line-height: 1.8;
  }

  .about-stats { display: flex; flex-direction: column; gap: 20px; }

  .stat-bar {
    background: rgba(231,216,217,0.04);
    border: 1px solid rgba(192,15,39,0.15);
    border-radius: 16px;
    padding: 24px 28px;
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(231,216,217,0.4);
    margin-bottom: 8px;
    font-family: 'Space Mono', monospace;
  }
  .stat-software {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
  }
  .stat-years {
    font-family: 'Bebas Neue', cursive;
    font-size: 52px;
    color: var(--red);
    line-height: 1;
  }
  .stat-years span {
    font-size: 18px;
    color: rgba(231,216,217,0.4);
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
  }

  .views-card {
    background: linear-gradient(135deg, rgba(192,15,39,0.12), rgba(192,15,39,0.04));
    border: 1px solid rgba(192,15,39,0.3);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    margin-top: 4px;
  }
  .views-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(231,216,217,0.4);
    margin-bottom: 10px;
    font-family: 'Space Mono', monospace;
  }
  .views-number {
    font-family: 'Bebas Neue', cursive;
    font-size: 64px;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 0 40px rgba(192,15,39,0.4);
  }

  /* BUDGET */
  #budget {
    text-align: center;
    padding-bottom: 120px;
  }

  .budget-subtitle {
    font-size: 18px;
    color: rgba(231,216,217,0.6);
    margin-bottom: 48px;
    font-weight: 300;
  }

  .contact-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .contact-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
    letter-spacing: 0.03em;
  }

  .btn-discord {
    background: rgba(114,137,218,0.12);
    border: 1.5px solid rgba(114,137,218,0.3);
    color: #7289da;
  }
  .btn-discord:hover {
    background: rgba(114,137,218,0.2);
    border-color: #7289da;
    box-shadow: 0 0 36px rgba(114,137,218,0.35), 0 0 72px rgba(114,137,218,0.15);
    transform: translateY(-3px);
    color: #fff;
  }
  .btn-twitter {
    background: rgba(29,161,242,0.1);
    border: 1.5px solid rgba(29,161,242,0.3);
    color: #1da1f2;
  }
  .btn-twitter:hover {
    background: rgba(29,161,242,0.2);
    border-color: #1da1f2;
    box-shadow: 0 0 36px rgba(29,161,242,0.3);
    transform: translateY(-3px);
    color: #fff;
  }

  .contact-btn svg { width: 22px; height: 22px; }

  /* FOOTER */
  footer {
    text-align: center;
    padding: 32px;
    border-top: 1px solid rgba(192,15,39,0.1);
    color: rgba(231,216,217,0.25);
    font-size: 12px;
    letter-spacing: 0.1em;
    font-family: 'Space Mono', monospace;
  }

  /* BACKGROUND ORBS */
  .bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0;
    transition: opacity 0.6s ease;
    will-change: transform, opacity;
  }
  .orb-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(192,15,39,0.22) 0%, transparent 70%);
    top: 10%; left: -10%;
    animation: orbFloat1 18s ease-in-out infinite;
  }
  .orb-2 {
    width: 360px; height: 360px;
    background: radial-gradient(circle, rgba(192,15,39,0.16) 0%, transparent 70%);
    top: 40%; right: -8%;
    animation: orbFloat2 22s ease-in-out infinite;
  }
  .orb-3 {
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(180,0,30,0.18) 0%, transparent 70%);
    bottom: 20%; left: 30%;
    animation: orbFloat3 16s ease-in-out infinite;
  }
  .orb-4 {
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(192,15,39,0.25) 0%, transparent 70%);
    top: 60%; left: 10%;
    animation: orbFloat4 12s ease-in-out infinite;
  }

  @keyframes orbFloat1 {
    0%,100% { transform: translate(0,0) scale(1); }
    33%     { transform: translate(60px,-80px) scale(1.1); }
    66%     { transform: translate(-40px,50px) scale(0.95); }
  }
  @keyframes orbFloat2 {
    0%,100% { transform: translate(0,0) scale(1); }
    40%     { transform: translate(-70px,60px) scale(1.08); }
    70%     { transform: translate(30px,-40px) scale(0.92); }
  }
  @keyframes orbFloat3 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(50px,-70px) scale(1.15); }
  }
  @keyframes orbFloat4 {
    0%,100% { transform: translate(0,0); }
    30%     { transform: translate(40px,30px); }
    70%     { transform: translate(-30px,-20px); }
  }

  /* scroll-reactive pulse */
  .orb.scroll-pulse {
    animation-play-state: running;
  }
  .orb.scrolling {
    opacity: 1 !important;
    filter: blur(70px);
    transition: opacity 0.2s ease, filter 0.3s ease;
  }

  /* BUDGET GLOW BEAM */
  .budget-beam {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 700px;
    background: conic-gradient(from 270deg at 50% 100%, transparent 60deg, rgba(192,15,39,0.0) 90deg, transparent 120deg);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
  }
  .budget-beam::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, rgba(192,15,39,0.7), rgba(192,15,39,0.15) 60%, transparent);
    filter: blur(1px);
  }
  .budget-beam::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 100%;
    background: linear-gradient(to top, rgba(192,15,39,0.18) 0%, rgba(192,15,39,0.06) 40%, transparent 80%);
    filter: blur(30px);
  }
  .budget-beam.visible-beam { opacity: 1; }

  #budget { position: relative; overflow: hidden; }

  /* FOOTER BEAM — full-width rising glow */
  footer {
    position: relative;
    overflow: visible;
  }
  .footer-glow {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background: linear-gradient(to top,
      rgba(192,15,39,0.22) 0%,
      rgba(192,15,39,0.10) 35%,
      rgba(192,15,39,0.03) 65%,
      transparent 100%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
  }
  .footer-glow.visible {
    animation: footerPulse 3.5s ease-in-out infinite;
  }
  @keyframes footerPulse {
    0%,100% { opacity: 0.7; }
    50%      { opacity: 1;   }
  }

  /* NOISE GRAIN OVERLAY */
  body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    pointer-events: none;
    z-index: 9999;
  }

  /* VIDEO MODAL */
  .video-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .video-modal-overlay.open { opacity: 1; pointer-events: all; }
  .video-modal-inner {
    width: 90%;
    max-width: 900px;
    position: relative;
  }
  .video-modal-close {
    position: absolute;
    top: -48px; right: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(192,15,39,0.3);
    border: 1px solid rgba(192,15,39,0.5);
    color: var(--white);
    cursor: pointer;
    font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .video-modal-close:hover { background: var(--red); }
  .video-modal-frame {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
  }
  .video-modal-frame iframe, .video-modal-frame video { width: 100%; height: 100%; border: none; }

  /* SCROLLBAR */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--dark); }
  ::-webkit-scrollbar-thumb { background: var(--red); border-radius: 4px; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    header { padding: 12px 16px; gap: 4px; }
    nav a { font-size: 11px; padding: 6px 10px; }
    .video-grid { grid-template-columns: repeat(2,1fr); }
    .shorts-grid { grid-template-columns: repeat(2,1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .modal-grid { grid-template-columns: repeat(2,1fr); }
    section { padding: 70px 5%; }
    .section-title { font-size: clamp(32px, 7vw, 56px); }
  }

  @media (max-width: 600px) {
    /* Header */
    header {
      width: calc(100% - 24px);
      padding: 10px 12px;
      flex-wrap: wrap;
      justify-content: center;
      gap: 6px;
      border-radius: 20px;
    }
    nav { flex-wrap: wrap; justify-content: center; gap: 4px; }
    nav a { font-size: 10px; padding: 5px 8px; }
    .lang-switch { margin-left: 0; }

    /* Hero */
    .hero-name { font-size: clamp(38px, 12vw, 60px); }
    .hero-sub { font-size: 10px; letter-spacing: 0.2em; }
    .avatar-ring { width: 130px; height: 130px; }
    .avatar-inner { width: 116px; height: 116px; }

    /* Sections */
    section { padding: 60px 4%; }
    .section-title { font-size: clamp(30px, 9vw, 48px); margin-bottom: 32px; }

    /* Videos */
    .video-grid { grid-template-columns: 1fr; gap: 12px; }
    .shorts-grid { grid-template-columns: 1fr; gap: 12px; }
    .modal-grid { grid-template-columns: 1fr; }

    /* Channels */
    .channel-avatar { width: 70px; height: 70px; font-size: 24px; }
    .channel-card { min-width: 80px; }
    .channels-track { gap: 18px; }

    /* About */
    .about-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-text { font-size: 14px; }
    .stat-years { font-size: 40px; }
    .views-number { font-size: 48px; }

    /* Budget */
    .contact-btns { flex-direction: column; align-items: stretch; }
    .contact-btn { justify-content: center; padding: 16px 24px; }

    /* Modal */
    .modal-box { padding: 24px 16px; width: 96%; }
    .modal-grid { grid-template-columns: repeat(2,1fr); gap: 10px; }

    /* Video modal */
    .video-modal-inner { width: 98%; }
  }
