:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --orange: #f5620a;
  --orange-glow: rgba(245, 98, 10, 0.35);
  --orange-light: #ff7c2a;
  --text: #f0ece4;
  --muted: #888880;
  --border: rgba(245, 98, 10, 0.18);
}

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

html { 
    scroll-behavior: smooth; 
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  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.04'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.4;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 24px 80px;
  overflow: visible;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 120vw);
  height: 320px;
  background: radial-gradient(ellipse 60% 100% at 50% 100%, rgba(245,98,10,0.12) 0%, rgba(245,98,10,0.03) 40%, transparent 80%);
  pointer-events: none;
  animation: pulse 4s ease-in-out infinite;
  filter: blur(16px);
}

@media (max-width: 768px) {
  .hero::after {
    bottom: -80px;
    height: 280px;
    filter: blur(12px);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: translateX(-50%) scaleX(1); }
  50%       { opacity: 0.7; transform: translateX(-50%) scaleX(1.08); }
}

.hero-dot {
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--orange);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: baseline;
  position: relative;
  top: -6px;
  animation: blink 2.4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(245,98,10,0.6);
}

@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 rgba(245,98,10,0); }
  50%       { opacity: 0.7; box-shadow: 0 0 12px var(--orange); }
}

.hero-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 10vw, 96px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--text);
  animation: fadeUp 0.9s cubic-bezier(.22,1,.36,1) both;
  position: relative;
}

.hero-name::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -150px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245,98,10,0.15) 0%, transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-name::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -180px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245,98,10,0.12) 0%, transparent 70%);
  filter: blur(14px);
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-name::before {
    width: 150px;
    height: 150px;
    top: -100px;
    right: -120px;
    filter: blur(10px);
  }

  .hero-name::after {
    width: 160px;
    height: 160px;
    bottom: -80px;
    left: -140px;
    filter: blur(12px);
  }
}

@media (max-width: 480px) {
  .hero-name::before {
    width: 100px;
    height: 100px;
    top: -80px;
    right: -100px;
  }

  .hero-name::after {
    width: 110px;
    height: 110px;
    bottom: -60px;
    left: -120px;
  }
}

.hero-sub {
  font-size: 14px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  animation: fadeUp 0.9s 0.15s cubic-bezier(.22,1,.36,1) both;
}

.hero-tagline {
  margin-top: 32px;
  font-size: clamp(14px, 3vw, 18px);
  color: var(--muted);
  letter-spacing: 0.06em;
  animation: fadeUp 0.9s 0.3s cubic-bezier(.22,1,.36,1) both;
}

.hero-tagline em {
  font-style: normal;
  color: var(--text);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s 0.45s cubic-bezier(.22,1,.36,1) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 24px var(--orange-glow);
}

.btn-primary:hover {
  background: var(--orange-light);
  box-shadow: 0 6px 32px rgba(245,98,10,0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(240,236,228,0.28);
}

.btn-ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 30%, var(--orange) 50%, var(--border) 70%, transparent);
  margin: 0;
}

@media (max-width: 480px) {
  .divider {
    background: linear-gradient(90deg, transparent, var(--border) 25%, var(--orange) 50%, var(--border) 75%, transparent);
  }
}

section {
  padding: 100px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .section-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .section-label {
    font-size: 9px;
    letter-spacing: 0.2em;
    margin-bottom: 8px;
  }
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 9vw, 88px);
  letter-spacing: 0.03em;
  line-height: 0.95;
  color: var(--text);
}

#portfolio {
  text-align: center;
  position: relative;
}

#portfolio::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 120vw);
  height: 320px;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(245,98,10,0.1) 0%, rgba(245,98,10,0.03) 45%, transparent 80%);
  pointer-events: none;
  filter: blur(16px);
}

@media (max-width: 768px) {
  #portfolio::before {
    top: -120px;
    height: 280px;
    filter: blur(12px);
  }
}

@media (max-width: 480px) {
  #portfolio::before {
    top: -100px;
    height: 240px;
    filter: blur(10px);
  }
}

#portfolio::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245,98,10,0.15) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(10px);
}

@media (max-width: 768px) {
  #portfolio::after {
    width: 220px;
    height: 220px;
    right: -100px;
    filter: blur(8px);
  }
}

@media (max-width: 480px) {
  #portfolio::after {
    width: 150px;
    height: 150px;
    right: -80px;
  }
}

.portfolio-header {
  margin-bottom: 56px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.video-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 9/16;
  background: #1a1a1a;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: transform 0.28s cubic-bezier(.22,1,.36,1), box-shadow 0.28s;
}

.video-card:hover {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 20px 60px rgba(245,98,10,0.25);
  border-color: var(--orange);
}

.video-card:hover .card-play { opacity: 1; transform: scale(1); }

.video-card:nth-child(1) .card-thumb { background: linear-gradient(145deg, #1c1008 0%, #3d1a05 50%, #1a0d03 100%); }
.video-card:nth-child(2) .card-thumb { background: linear-gradient(145deg, #080c1a 0%, #0d1f3d 50%, #05100d 100%); }
.video-card:nth-child(3) .card-thumb { background: linear-gradient(145deg, #1c1008 0%, #3d1a05 50%, #1a0d03 100%); }
.video-card:nth-child(4) .card-thumb { background: linear-gradient(145deg, #080c1a 0%, #0d1f3d 50%, #05100d 100%); }

.card-thumb {
  position: absolute;
  inset: 0;
}

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 55%);
}

.card-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--orange);
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

.card-play {
  position: absolute;
  top: 50%; left: 42.5%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(245,98,10,0.9);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.22s, transform 0.22s;
}

.card-play svg { fill: #fff; width: 20px; height: 20px; margin-left: 3px; }

@media (max-width: 768px) {
  .card-play {
    width: 45px;
    height: 45px;
  }

  .card-play svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .card-play {
    width: 40px;
    height: 40px;
  }

  .card-play svg {
    width: 16px;
    height: 16px;
  }
}

.about-wrap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: start;
  background: linear-gradient(135deg, #111 0%, #0d0d0d 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.about-wrap::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(6px);
}

@media (max-width: 768px) {
  .about-wrap::before {
    width: 180px;
    height: 180px;
    top: -40px;
    right: -40px;
  }
}

@media (max-width: 480px) {
  .about-wrap::before {
    display: none;
  }
}

.about-wrap::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -120px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(245,98,10,0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(8px);
}

@media (max-width: 768px) {
  .about-wrap::after {
    width: 200px;
    height: 200px;
    bottom: -60px;
    left: -80px;
    filter: blur(6px);
  }
}

@media (max-width: 480px) {
  .about-wrap::after {
    display: none;
  }
}

.about-photo {
  width: 200px; height: 300px;
  border-radius: 10px;
  border: 2px solid var(--border);
  overflow: hidden;
  position: relative;
  object-fit: cover;
}

.about-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 150px;
  border-radius: 50px 50px 0 0;
  opacity: 0.6;
}

.about-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.about-text {
  font-size: 15px;
  line-height: 1.75;
  color: #aaa8a0;
  margin-bottom: 24px;
}

.about-text strong {
  color: var(--orange);
  font-weight: 700;
}

.contact-strip {
  text-align: center;
  padding: 80px 24px 100px;
  position: relative;
  overflow: hidden;
}

.contact-strip::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(245,98,10,0.12) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(10px);
}

.contact-strip::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245,98,10,0.1) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(12px);
}

@media (max-width: 768px) {
  .contact-strip::before {
    width: 500px;
    height: 250px;
    filter: blur(8px);
  }

  .contact-strip::after {
    width: 280px;
    height: 280px;
    bottom: -120px;
    left: -120px;
    filter: blur(10px);
  }
}

@media (max-width: 480px) {
  .contact-strip::before {
    width: 350px;
    height: 200px;
    filter: blur(6px);
  }

  .contact-strip::after {
    display: none;
  }
}

.contact-strip .section-title { margin-bottom: 20px; }

.contact-sub {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}

footer {
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  text-align: center;
  font-size: 12px;
  color: #555;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 768px) {
  footer {
    padding: 20px 24px;
    font-size: 11px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  footer {
    padding: 16px 12px;
    font-size: 10px;
    gap: 8px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  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);
}

.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

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

.modal-container {
  position: relative;
  z-index: 1001;
  width: 90vw;
  height: 90vh;
  max-width: 900px;
  max-height: 600px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(245, 98, 10, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-player {
  width: 100%;
  height: 100%;
}

.modal-message {
  position: relative;
  z-index: 1001;
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, #111 0%, #0d0d0d 100%);
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(245, 98, 10, 0.3);
}

.modal-message p {
  font-size: 16px;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.modal-message .btn {
  display: inline-flex;
}

@media (max-width: 768px) {
  .modal-message {
    padding: 32px 28px;
  }

  .modal-message p {
    font-size: 14px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .modal-message {
    padding: 24px 20px;
  }

  .modal-message p {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .modal-message .btn {
    padding: 10px 18px;
    font-size: 11px;
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1002;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(245, 98, 10, 0.8);
}

.modal-close svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {
  .modal-close {
    width: 36px;
    height: 36px;
    top: 10px;
    right: 10px;
  }

  .modal-close svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .modal-close {
    width: 32px;
    height: 32px;
    top: 8px;
    right: 8px;
  }

  .modal-close svg {
    width: 18px;
    height: 18px;
  }
}

.footer-website{
color: rgb(97, 96, 96);
}
.footer-website:hover{
    color: rgb(154, 154, 154);
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 16px 60px;
    min-height: 80vh;
  }

  .hero-name {
    font-size: clamp(32px, 8vw, 64px);
  }

  .hero-sub {
    font-size: 12px;
    letter-spacing: 0.2em;
    margin-top: 4px;
  }

  .hero-tagline {
    font-size: clamp(12px, 2.5vw, 16px);
    margin-top: 24px;
  }

  .hero-cta {
    gap: 8px;
    margin-top: 24px;
    flex-direction: column;
  }

  .btn {
    padding: 11px 20px;
    font-size: 12px;
    width: 100%;
    justify-content: center;
  }

  section {
    padding: 60px 16px;
  }

  .section-title {
    font-size: clamp(32px, 7vw, 64px);
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }

  .video-card {
    aspect-ratio: 9/16;
  }

  .about-wrap {
    grid-template-columns: 1fr;
    padding: 24px 16px;
    gap: 28px;
  }

  .about-photo {
    width: 100%;
    height: 200px;
    margin: 0 auto;
  }

  .about-name {
    font-size: 24px;
  }

  .about-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .stats-row {
    gap: 16px;
    margin-bottom: 20px;
  }

  .stat-num {
    font-size: 28px;
  }

  .stat-desc {
    font-size: 10px;
  }

  .contact-strip {
    padding: 60px 16px 80px;
  }

  .contact-sub {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .modal-container {
    width: 95vw;
    height: 95vh;
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
  }

  .modal-message {
    padding: 30px 20px;
  }

  .modal-message p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  footer {
    padding: 20px 16px;
    font-size: 11px;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .hero {
    padding: 50px 20px 70px;
    min-height: 85vh;
  }

  .hero-name {
    font-size: clamp(40px, 9vw, 72px);
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero-tagline {
    font-size: clamp(13px, 2.8vw, 17px);
    margin-top: 26px;
  }

  .hero-cta {
    gap: 10px;
    margin-top: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 12px;
  }

  section {
    padding: 80px 20px;
  }

  .section-title {
    font-size: clamp(40px, 8vw, 72px);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }

  .about-wrap {
    grid-template-columns: 160px 1fr;
    padding: 32px 24px;
    gap: 32px;
  }

  .about-photo {
    width: 160px;
    height: 200px;
  }

  .about-name {
    font-size: 28px;
  }

  .about-text {
    font-size: 14px;
  }

  .stats-row {
    gap: 20px;
    margin-bottom: 24px;
    flex-wrap: wrap;
  }

  .stat-num {
    font-size: 32px;
  }

  .stat-desc {
    font-size: 11px;
  }

  .contact-strip {
    padding: 70px 20px 90px;
  }

  .contact-sub {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .modal-container {
    width: 92vw;
    height: 90vh;
  }

  .modal-message {
    padding: 35px 28px;
  }

  footer {
    padding: 24px 20px;
    font-size: 12px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    padding: 60px 32px 80px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 680px;
  }

  .about-wrap {
    grid-template-columns: 180px 1fr;
    gap: 40px;
    padding: 40px 32px;
  }

  .about-photo {
    width: 180px;
    height: 220px;
  }

  section {
    padding: 90px 32px;
  }

  .contact-strip {
    padding: 80px 32px 100px;
  }
}

@media (min-width: 1025px) {
  .hero {
    padding: 60px 24px 80px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 720px;
  }

  .about-wrap {
    grid-template-columns: 200px 1fr;
    gap: 48px;
    padding: 48px;
  }

  .about-photo {
    width: 200px;
    height: 300px;
  }

  section {
    padding: 100px 24px;
  }

  .contact-strip {
    padding: 80px 24px 100px;
  }
}