:root {
  --primary-color: #2a9fd6;
  --secondary-color: #77b300;
  --success-color: #77b300;
  --info-color: #9933cc;
  --warning-color: #ff8800;
  --danger-color: #cc0000;
  --light-color: #222;
  --dark-color: #adafae;
  --bg-primary: #060606;
  --bg-secondary: #222;
  --bg-tertiary: #333;
  --bg-dark: #1a1a1a;
  --bg-dark-secondary: #0a0a0a;
  --bg-dark-tertiary: #2a2a2a;
  --text-primary: #fff;
  --text-secondary: #adafae;
  --text-muted: #888;
  --text-light: #f8f9fa;
  --border-color: #333;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #1a7aa8 100%);
  --gradient-accent: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
  --border-radius: 0.375rem;
}

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

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

main {
  padding-top: 60px;
}

.modern-nav {
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
  z-index: 1000;
  height: 60px !important;
  min-height: 60px !important;
}
.modern-nav.scrolled {
  background: rgba(6, 6, 6, 0.98);
  box-shadow: var(--shadow-lg);
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
  color: var(--text-primary) !important;
  font-weight: 500;
  margin: 0 0.4rem;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
}

#main-container {
  position: absolute;
  top: 60px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: calc(100vh - 60px);
  box-sizing: border-box;
  background: #000;
  z-index: 10;
}

/* Gallery Styles */
.gallery-section {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.gallery-placeholder {
  position: relative;
  height: 120px;
  width: 200px;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-placeholder:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px var(--primary-color), 0 0 40px var(--primary-color), var(--shadow);
}
.gallery-thumb {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  background: transparent;
  padding: 6px;
  min-height: 120px;
}
.gallery-placeholder:hover .gallery-thumb {
  filter: brightness(1.1) drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
}
.placeholder-overlay {
  position: absolute;
  bottom: 8px;
  right: 8px;
  z-index: 2;
}
.placeholder-overlay .badge {
  font-size: 0.7rem;
  padding: 4px 8px;
}
.hover-banner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #000;
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.8rem;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.gallery-placeholder:hover .hover-banner {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .gallery-placeholder {
    height: 80px;
    width: 140px;
  }
}
@media (max-width: 768px) {
  .gallery-placeholder {
    height: 70px;
    width: 100px;
  }
} 