@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Orbitron:wght@400;600;700;900&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg-primary: #040814;
  --bg-secondary: #0c112b;
  --bg-card: rgba(15, 23, 42, 0.65);
  --border-neon-cyan: rgba(0, 242, 254, 0.3);
  --border-neon-pink: rgba(255, 0, 127, 0.3);
  
  --neon-cyan: #00f2fe;
  --neon-pink: #ff007f;
  --neon-purple: #9b51e0;
  --neon-yellow: #ffd700;
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --font-title: 'Orbitron', 'Noto Sans JP', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  --glass-bg: rgba(8, 14, 36, 0.75);
  --glass-border: rgba(255, 255, 255, 0.05);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 0, 127, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-secondary);
  border: 1px solid var(--border-neon-cyan);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-cyan);
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* Typography & Layout Utilities */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  letter-spacing: 1px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 60px;
  text-transform: uppercase;
  position: relative;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 15%;
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  box-shadow: 0 0 10px var(--neon-cyan);
}

/* Decorative Japanese texts */
.jp-deco {
  position: absolute;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

/* Glassmorphism Header / Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo span {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px var(--neon-cyan);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul a {
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 8px;
  position: relative;
  white-space: nowrap;
}

nav ul a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-pink);
  transition: var(--transition-smooth);
  box-shadow: 0 0 8px var(--neon-pink);
}

nav ul a:hover {
  color: var(--neon-pink);
}

nav ul a:hover::after {
  width: 100%;
}

/* Mobile Menu Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--text-main);
  transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 20px 80px 20px;
  text-align: center;

  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-tag {
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neon-pink);
  letter-spacing: 4px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--border-neon-pink);
  border-radius: 50px;
  background: rgba(255, 0, 127, 0.05);
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.1);
  animation: glow-pulse 3s infinite alternate;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: -2px;
  line-height: 1;
  position: relative;
}

.hero-title span {
  display: block;
  font-size: 5rem;
  background: linear-gradient(135deg, #ffffff 30%, var(--neon-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 30px rgba(0, 242, 254, 0.25);
}

.hero-subtitle {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  letter-spacing: 2px;
  font-weight: 500;
}

.hero-subtitle span {
  color: var(--neon-cyan);
  text-shadow: 0 0 8px var(--neon-cyan);
}

.btn-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  z-index: 1;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: transparent;
  color: var(--bg-primary);
  border: none;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-primary:hover::before {
  filter: brightness(1.2);
}

.btn-primary:hover {
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
  transform: translateY(-2px);
  color: #fff;
}

.btn-secondary {
  background: rgba(12, 17, 43, 0.6);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.1);
}

.btn-secondary:hover {
  background: var(--neon-cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.5);
  transform: translateY(-2px);
}

/* Grid Layout for Sections */
.grid-container {
  display: grid;
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Projects Grid */
.projects-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon-cyan);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-main);
}

.project-card:hover .project-title {
  color: var(--neon-cyan);
}

.project-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-link {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-pink);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: auto;
}

.project-link i {
  transition: var(--transition-smooth);
}

.project-card:hover .project-link i {
  transform: translateX(4px);
}

/* Double Hover Image Cards (for Games and Series) */
.double-hover-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.double-hover-card {
  background: var(--bg-card);
  border: 1px solid var(--border-neon-pink);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.double-hover-card.blue-theme {
  border-color: var(--border-neon-cyan);
}

.double-hover-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-pink);
  box-shadow: 0 10px 30px rgba(255, 0, 127, 0.15);
}

.double-hover-card.blue-theme:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 10px 30px rgba(0, 242, 254, 0.15);
}

.double-hover-image {
  width: 100%;
  height: 280px;
  position: relative;
  overflow: hidden;
}

.double-hover-image .img-back,
.double-hover-image .img-front {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.double-hover-image .img-back {
  opacity: 0;
  transform: scale(1.05);
}

.double-hover-card:hover .double-hover-image .img-front {
  opacity: 0;
}

.double-hover-card:hover .double-hover-image .img-back {
  opacity: 1;
  transform: scale(1);
}

.double-hover-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.double-hover-title {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-main);
  line-height: 1.2;
}

.double-hover-card:hover .double-hover-title {
  color: var(--neon-pink);
}

.double-hover-card.blue-theme:hover .double-hover-title {
  color: var(--neon-cyan);
}

.double-hover-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* YouTube Video Section */
.youtube-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.youtube-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
}

.youtube-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 0, 127, 0.4);
  box-shadow: 0 8px 25px rgba(255, 0, 127, 0.1);
}

.youtube-thumb-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.youtube-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.youtube-card:hover .youtube-thumb {
  transform: scale(1.05);
}

.youtube-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 127, 0.9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 0, 127, 0.5);
  transition: var(--transition-smooth);
  pointer-events: none;
  z-index: 2;
}

.youtube-card:hover .youtube-play-btn {
  background: #fff;
  color: var(--neon-pink);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 25px #fff;
}

.youtube-title-overlay {
  padding: 15px;
  background: rgba(8, 14, 36, 0.95);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.youtube-video-title {
  font-size: 0.95rem;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
}

/* Horizontal Auto-Scrolling Carousel */
.gallery-carousel-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  padding: 40px 0;
  background: linear-gradient(90deg, transparent, rgba(0, 242, 254, 0.02) 50%, transparent);
}

.gallery-carousel-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.gallery-carousel-track:hover {
  animation-play-state: paused;
}



.gallery-item {
  width: 320px;
  height: 220px;
  margin: 0 15px;
  scroll-snap-align: center;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--border-neon-cyan);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  position: relative;
  transition: var(--transition-smooth);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 60%, rgba(4, 8, 20, 0.8));
  z-index: 1;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: scale(1.04);
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 242, 254, 0.35);
  z-index: 10;
}

.gallery-item:hover::before {
  opacity: 0;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-title {
  position: absolute;
  bottom: 15px;
  left: 20px;
  font-family: var(--font-title);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: #fff;
  z-index: 2;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  pointer-events: none;
  opacity: 0.9;
}

/* Glassmorphic Contact Form */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-card {
  width: 100%;
  max-width: 650px;
  background: rgba(12, 17, 43, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-neon-cyan);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 0, 127, 0.08) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-group {
  margin-bottom: 25px;
  position: relative;
}

.form-label {
  display: block;
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1.5px;
}

.form-control {
  width: 100%;
  background: rgba(4, 8, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-control:focus {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.2);
  background: rgba(4, 8, 20, 0.85);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  margin-top: 15px;
  border: none;
}

/* Form Alert Styles */
.form-alert {
  display: none;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.form-alert.success {
  background: rgba(0, 242, 254, 0.1);
  color: var(--neon-cyan);
  border: 1px solid var(--neon-cyan);
}

.form-alert.error {
  background: rgba(255, 0, 127, 0.1);
  color: var(--neon-pink);
  border: 1px solid var(--neon-pink);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-neon-cyan);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  z-index: 9999;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.5s ease-out;
}

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    padding: 20px 40px;
  }
}

.cookie-content p {
  color: var(--text-main);
  font-size: 0.9rem;
  margin: 0;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.cookie-link {
  color: var(--neon-cyan);
  font-size: 0.8rem;
  text-decoration: underline;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* Legal Pages */
.legal-section {
  padding: 150px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.legal-content {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 40px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.legal-content h3 {
  color: var(--neon-pink);
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.legal-content p, .legal-content ul {
  color: var(--text-muted);
  margin-bottom: 15px;
}

.legal-content ul {
  padding-left: 20px;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--neon-cyan);
}

.legal-content a:hover {
  text-shadow: 0 0 8px var(--neon-cyan);
}

.table-container {
  overflow-x: auto;
  margin-bottom: 20px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  color: var(--text-muted);
}

.legal-content th, .legal-content td {
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  text-align: left;
}

.legal-content th {
  color: var(--neon-cyan);
  font-family: var(--font-title);
  background: rgba(0, 242, 254, 0.05);
}

.cookie-management-section {
  margin-top: 40px;
  padding: 20px;
  border: 1px dashed var(--neon-pink);
  border-radius: 8px;
  text-align: center;
}

.footer-legal {
  margin: 15px 0;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--neon-cyan);
}
.form-alert {
  padding: 12px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.95rem;
  display: none;
  font-weight: 500;
}

.form-alert.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.form-alert.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

/* Lightbox Modal (HTML5 Dialog) */
.lightbox-modal {
  border: 1px solid var(--border-neon-cyan);
  background: rgba(6, 9, 19, 0.96);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  max-width: 90vw;
  max-height: 90vh;
  margin: auto;
  padding: 0;
  box-shadow: 0 0 40px rgba(0, 242, 254, 0.3);
  outline: none;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lightbox-modal[open] {
  opacity: 1;
  transform: scale(1);
  display: flex;
  flex-direction: column;
}

.lightbox-modal::backdrop {
  background: rgba(2, 4, 10, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease;
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 100;
  transition: var(--transition-smooth);
}

.lightbox-close:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow: 0 0 15px var(--neon-pink);
  transform: rotate(90deg);
}

.lightbox-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 320px;
  min-height: 200px;
}

.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-video-container {
  width: 80vw;
  max-width: 900px;
}

.lightbox-iframe-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
}

.lightbox-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox-caption {
  padding: 15px 30px;
  background: rgba(8, 14, 36, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-family: var(--font-title);
  font-size: 0.9rem;
  color: var(--text-main);
  text-align: center;
}

/* Footer Section */
footer {
  background: #02040b;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 20px;
  text-align: center;
  position: relative;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer-logo span {
  color: var(--neon-pink);
  text-shadow: 0 0 10px var(--neon-pink);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}

.social-btn.youtube:hover {
  background: rgba(255, 0, 0, 0.1);
  color: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.4);
  transform: translateY(-4px) scale(1.05);
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 10px;
}

/* Scroll Reveal Classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animations */
@keyframes marquee-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes glow-pulse {
  0% {
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.1);
    border-color: rgba(255, 0, 127, 0.2);
  }
  100% {
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
    border-color: rgba(255, 0, 127, 0.6);
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  nav ul {
    gap: 12px;
  }
  nav ul a {
    font-size: 0.8rem;
    padding: 5px 6px;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .hero-title span {
    font-size: 3.6rem;
  }
  section {
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  
  nav {
    position: fixed;
    top: 75px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 75px);
    background: rgba(4, 8, 20, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
    padding: 50px 20px;
    z-index: 999;
  }
  
  nav.active {
    left: 0;
  }
  
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  nav ul a {
    font-size: 1.2rem;
  }
  
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-title span {
    font-size: 2.8rem;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

.gallery-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  position: relative;
  z-index: 10;
}

.carousel-btn {
  background: rgba(12, 17, 43, 0.6);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.carousel-btn:hover {
  background: var(--neon-cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.5);
  transform: translateY(-2px);
}
