:root {
  --color-bg: #050407;
  --color-panel: rgba(15, 15, 22, 0.8);
  --color-brand: #e50914;
  --color-text: #f5f5f1;
  --color-muted: rgba(255, 255, 255, 0.65);
  --color-line: rgba(255, 255, 255, 0.1);
  --radius-lg: 1.25rem;
  --radius-md: 0.75rem;
  --radius-sm: 0.4rem;
}

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

button {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  cursor: pointer;
}

main {
  position: relative;
  z-index: 2;
}

.cinematic-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(229, 9, 20, 0.4), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(0, 212, 255, 0.35), transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(255, 71, 102, 0.45), transparent 35%),
    #020202;
  filter: blur(40px);
  opacity: 0.8;
  animation: backdropPulse 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes backdropPulse {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.05);
  }
}

.experience-header {
  position: sticky;
  inset: 0 auto auto 0;
  width: 100%;
  padding: 1.5rem clamp(1.5rem, 4vw, 4rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 10;
  backdrop-filter: blur(8px);
  transition: box-shadow 300ms ease;
  opacity: 0.96;
  --scroll-opacity: 0;
}

.experience-header.scrolled {
  background: linear-gradient(180deg,
      rgba(5, 4, 7, calc(0.65 * var(--scroll-opacity))) 0%,
      rgba(5, 4, 7, calc(0.45 * var(--scroll-opacity))) 80%,
      transparent 100%);
  box-shadow: 0 calc(4px * var(--scroll-opacity)) calc(20px * var(--scroll-opacity)) rgba(0, 0, 0, calc(0.3 * var(--scroll-opacity)));
}

.brand {
  display: flex;
  gap: 0.65rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.brand-mark {
  color: var(--color-brand);
  font-size: 1.5rem;
}

.profile-nav {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-btn {
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-text);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: background 250ms ease, color 250ms ease;
}

.nav-btn:hover,
.nav-btn:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.nav-btn.active {
  background: var(--color-brand);
}

.nav-btn.outline {
  border: 1px solid rgba(229, 9, 20, 0.6);
  background: rgba(229, 9, 20, 0.15);
}

.nav-btn.outline:hover,
.nav-btn.outline:focus-visible {
  background: rgba(229, 9, 20, 0.3);
}

.profile-gate {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  text-align: center;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 6vw, 5rem);
}

.gate-kicker {
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  margin: 0;
  padding-bottom: 50px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  width: min(580px, 100%);
  justify-items: center;
}

.profile-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid transparent;
  position: relative;
  padding: 0.4rem;
  isolation: isolate;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
  max-width: 170px;
  width: 100%;
}

.profile-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.profile-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10%;
  display: block;
}

.profile-card .label {
  position: absolute;
  inset: auto 0 0 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85));
  font-weight: 600;
  font-size: 0.9rem;
}

.profile-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.35), transparent 40%);
  opacity: 0;
  transition: opacity 250ms ease;
}

.profile-card:hover,
.profile-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--color-brand);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.45);
}

.profile-card:hover::after,
.profile-card:focus-visible::after {
  opacity: 0.6;
}

.profile-page {
  display: none;
  padding: 1rem clamp(1rem, 4vw, 4rem) 4rem;
  min-height: 100vh;
}

.profile-page.active {
  display: block;
  animation: pageFade 500ms ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero {
  margin-bottom: 2.5rem;
}

.carousel {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--color-line);
}

.carousel-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.hero-card {
  min-width: 100%;
  scroll-snap-align: start;
  position: relative;
}

.hero-card img {
  display: block;
  width: 100%;
  height: min(70vh, 520px);
  object-fit: cover;
}

.hero-card .card-overlay {
  position: absolute;
  inset: 0;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6) 75%, rgba(0, 0, 0, 0.95) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  align-content: flex-end;
  /* Pack lines at the bottom */
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-card .card-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.95) 90%);
    padding-bottom: 3rem;
    /* Extra bottom padding for mobile */
  }
}

.hero-copy {
  flex: 1 1 100%;
  /* Take full width on mobile */
  max-width: 800px;
}

.hero-copy h3 {
  font-size: clamp(1.2rem, 5vw, 3.5rem);
  /* Smaller min size */
  margin: 0 0 0.5rem;
  line-height: 1.1;
}

.hero-copy p {
  font-size: clamp(0.8rem, 2vw, 1.25rem);
  /* Smaller min size */
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

.hero-play {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: clamp(0.4rem, 1.5vw, 0.6rem) clamp(1rem, 3vw, 1.5rem);
  border-radius: 999px;
  background: var(--color-brand);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: clamp(0.75rem, 2vw, 1.1rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.hero-play::before {
  content: '';
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
}

.placeholder {
  opacity: 0.7;
}

.hero-card.placeholder .card-overlay {
  justify-content: flex-start;
}

.rank-item {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-width: 220px;
  gap: clamp(0.5rem, 1vw, 0.75rem);
}

.rank-item::before {
  content: attr(data-rank);
  font-size: clamp(3.5rem, 9vw, 7rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.08);
  position: absolute;
  left: -0.5rem;
  bottom: -0.4rem;
  pointer-events: none;
}

.rank-item .thumb-card {
  margin-left: clamp(2.8rem, 4vw, 3.5rem);
  min-width: 180px;
}

section[data-row='edits-top10'] .row-track,
section[data-row='films-top'] .row-track {
  display: flex;
  gap: clamp(1.25rem, 2vw, 2rem);
}

section[data-row='edits-top10'] .row-track .rank-item,
section[data-row='films-top'] .row-track .rank-item {
  min-width: 240px;
  flex-shrink: 0;
}

section[data-row='edits-top10'] .row-track .rank-item {
  min-width: 260px;
  max-width: 260px;
}

section[data-row='edits-top10'] .rank-item .thumb-card {
  width: 260px;
  height: 280px;
}

section[data-row='edits-top10'] .rank-item .thumb-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}

section[data-row='films-top'] .row-track .rank-item {
  min-width: 260px;
  max-width: 260px;
}

section[data-row='films-top'] .rank-item .thumb-card {
  width: 260px;
  height: 280px;
}

section[data-row='films-top'] .rank-item .thumb-card img {
  height: 180px;
  width: 100%;
  object-fit: cover;
}


section[data-row='edits-popular'] .row-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 1rem;
}

section[data-row='edits-popular'] .thumb-card {
  min-width: 220px;
  width: 220px;
  min-height: 250px;
}

section[data-row='edits-popular'] .thumb-card img {
  border-radius: 0.5rem;
}


.hero-card h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 4vw, 2.75rem);
}

.hero-card p {
  margin: 0;
  color: var(--color-muted);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 250ms ease;
}

.carousel-btn:hover {
  background: rgba(229, 9, 20, 0.8);
  border-color: rgba(229, 9, 20, 0.6);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.carousel-btn::before,
.row-btn::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

.carousel-btn.prev {
  left: 1.5rem;
}

.carousel-btn.prev::before {
  transform: rotate(-135deg);
}

.carousel-btn.next {
  right: 1.5rem;
}

.carousel-btn.next::before {
  transform: rotate(45deg);
}

.content-row {
  position: relative;
  margin-bottom: 2.5rem;
}

.row-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.row-header h2 {
  margin: 0;
}

.row-header p {
  margin: 0;
  color: var(--color-muted);
}

.row-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 300px;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
}

.row-track::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.rank-item {
  position: relative;
  margin-left: clamp(1rem, 4vw, 1.5rem);
  /* Responsive spacing */
  height: 100%;
  display: flex;
}

.rank-item::after {
  content: attr(data-rank);
  position: absolute;
  bottom: -0.5rem;
  left: -1rem;
  font-size: clamp(6rem, 12vw, 9rem);
  /* Responsive font size */
  font-weight: 900;
  line-height: 0.8;
  color: transparent;
  /* Ghost look */
  -webkit-text-stroke: 2px var(--color-muted);
  /* Subtle outline */
  z-index: 1;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.05em;
  opacity: 0.6;
  /* Blend slightly */
}

.rank-item .thumb-card {
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  height: 280px;
}

.rank-item .thumb-card img {
  position: relative;
  z-index: 0;
  height: 180px;
  border-radius: 0.75rem;
}

.rank-item .thumb-card .meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
}

.thumb-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-line);
  min-height: 180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.thumb-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.thumb-card .meta {
  padding: 0.5rem;
}

.thumb-card h4 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.thumb-card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.85rem;
}

.coming-tag {
  display: inline-flex;
  margin-top: 0.4rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid rgba(229, 9, 20, 0.45);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Coming Soon Section - Movie Poster Styling */
section[data-row='films-coming'] .row-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 240px;
  gap: 1.5rem;
}

section[data-row='films-coming'] .thumb-card {
  min-width: 240px;
  width: 240px;
  min-height: 380px;
  position: relative;
}

section[data-row='films-coming'] .thumb-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 60%, rgba(0, 0, 0, 0.95) 100%);
  pointer-events: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

section[data-row='films-coming'] .thumb-card img {
  height: 320px;
  object-fit: cover;
  border-radius: 0.5rem;
}

section[data-row='films-coming'] .thumb-card .meta {
  padding: 1rem;
  position: relative;
  z-index: 1;
}

section[data-row='films-coming'] .coming-tag {
  display: inline-flex;
  background: rgba(229, 9, 20, 0.25);
  border: 1px solid rgba(229, 9, 20, 0.6);
  font-weight: 600;
  padding: 0.3rem 0.8rem;
}


.row-controls {
  position: absolute;
  inset: 50% 0 auto auto;
  display: flex;
  gap: 0.5rem;
  transform: translateY(-50%);
  z-index: 5;
}

.row-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.75);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 250ms ease;
  display: grid;
  place-items: center;
  backdrop-filter: blur(6px);
}

.row-btn:hover {
  background: rgba(229, 9, 20, 0.8);
  border-color: rgba(229, 9, 20, 0.6);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(229, 9, 20, 0.4);
}

.row-btn[data-row-prev]::before {
  transform: rotate(-135deg);
}

.row-btn[data-row-next]::before {
  transform: rotate(45deg);
}

.about-quote-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.about-quote-block span {
  display: block;
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--color-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.about-main-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.about-main-image {
  max-width: 420px;
  width: 100%;
  justify-self: center;
}

.about-bio {
  font-size: 0.95rem;
  color: var(--color-muted);
  max-width: 520px;
}

.about-bio p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.about-davinci {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.about-davinci svg {
  width: 42px;
  height: 42px;
}

.about-strip {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.about-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(2rem, 5vw, 4rem);
  margin: 4rem auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-line);
  max-width: 800px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.5));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--color-line), transparent);
}

@media (max-width: 600px) {
  .about-stats {
    flex-direction: column;
    gap: 2rem;
  }

  .stat-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-line), transparent);
  }
}

.about-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-line);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.follow-me {
  margin: 2rem auto 2rem;
  text-align: center;
}

.follow-me p {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-muted);
}

.socials {
  display: inline-flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.socials a {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.45);
  color: var(--color-text);
  transition: transform 200ms ease, background 200ms ease;
}

.socials a:hover,
.socials a:focus-visible {
  transform: translateY(-4px);
  background: rgba(229, 9, 20, 0.28);
}

video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  border: none;
  outline: none;
}

.video-overlay {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.video-iframe,
video {
  width: auto;
  height: 70vh;
  /* Target height: 70% of screen */
  max-width: 100%;
  /* Shrink width if needed (e.g. portrait) */
  aspect-ratio: 16/9;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

.video-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.overlay-content {
  position: relative;
  width: min(900px, 90vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #000;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.overlay-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.6);
  z-index: 10;
  cursor: pointer;
}

.overlay-close::before,
.overlay-close::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 14px;
  height: 2px;
  background: #fff;
  transform-origin: center;
}

.overlay-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.overlay-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}



.overlay-content h4 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-muted);
}

@media (max-height: 600px) {
  .overlay-content {
    flex-direction: row;
    align-items: center;
    width: 95vw;
    padding: 1rem;
  }

  .video-iframe,
  video {
    width: 60%;
    aspect-ratio: 16/9;
  }

  .overlay-controls {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {


  .carousel-btn {
    display: none;
  }

  .row-controls {
    display: none;
  }
}

@media (max-width: 600px) {
  .profile-card img {
    height: 150px;
  }

  .hero-card video,
  .hero-card img {
    height: 280px;
  }

  .profile-page {
    padding-top: 3rem;
  }
}

/* Follow Me Section */
.follow-me {
  text-align: center;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.follow-me p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-muted);
  margin: 0;
}

.socials {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-line);
  color: #fff;
  transition: all 0.3s ease;
}

.socials a:hover {
  background: var(--color-brand);
  border-color: var(--color-brand);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(229, 9, 20, 0.3);
}

.socials svg {
  width: 30px !important;
  height: 30px !important;
  fill: currentColor;
}