/* ==================== BASE STYLES ==================== */
html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: Inter, sans-serif;
  background: #0b0e12;
  color: #fff;
  position: relative;
  overflow-x: hidden;
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.grow {
  flex: 1;
}

/* ==================== ANIMATIONS ==================== */
@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, 30px) scale(1.1);
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==================== PAGE GLOW EFFECTS ==================== */
.page-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
  z-index: 0;
}

.page-glow-red {
  background: #cd4747;
  top: -200px;
  left: -100px;
}

.page-glow-blue {
  background: #3c78ff;
  bottom: -200px;
  right: -100px;
  animation-delay: 4s;
}

/* ==================== HEADER & NAVIGATION ==================== */
.site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  flex: 1;
}

.brand-logo {
  height: auto;
  width: 100%;
  max-width: 350px;
}

.brand-logo .logo-letter-s {
  fill: #ffffff;
}

.brand-logo .logo-letter-m {
  fill: #939393;
  transition: fill 0.3s ease;
}

.brand-logo .logo-tagline {
  fill: #ffffff;
}

.brand:hover .brand-logo .logo-letter-m {
  fill: #b447cd;
}

.nav {
  display: flex;
  gap: 18px;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 12px;
  border-radius: 8px;
}

.nav a:hover {
  opacity: 0.8;
  background: rgba(255, 255, 255, 0.05);
}

.nav a.active {
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(180, 71, 205, 0.4), 0 0 40px rgba(205, 71, 71, 0.2);
  border: 1px solid rgba(180, 71, 205, 0.3);
}

.nav a.active::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.3), rgba(205, 71, 71, 0.3));
  border-radius: 8px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
}

.nav-toggle {
  display: none;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.nav-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(205, 71, 71, 0.2), rgba(137, 107, 255, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(180, 71, 205, 0.4);
  box-shadow: 0 4px 15px rgba(180, 71, 205, 0.2);
}

.nav-toggle:hover::before {
  opacity: 1;
}

.nav-toggle.active {
  background: linear-gradient(135deg, rgba(205, 71, 71, 0.3), rgba(137, 107, 255, 0.3));
  border-color: rgba(180, 71, 205, 0.5);
  box-shadow: 0 4px 20px rgba(180, 71, 205, 0.3);
}

/* ==================== MAIN CONTENT ==================== */
.site-main {
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.page {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}

/* ==================== HERO SECTION ==================== */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 90%;
  padding: 60px 80px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 16px 0;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  line-height: 1;
}

.hero-tagline {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #b447cd;
  margin: 0 0 24px 0;
}

.hero-description {
  font-size: 20px;
  font-weight: 400;
  max-width: 600px;
  line-height: 1.6;
  margin: 0 auto 32px auto;
  opacity: 0.9;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #cd4747 0%, #896bff 100%);
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 60, 120, 0.3);
}

.hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 60, 120, 0.5);
}

.hero-button svg {
  transition: transform 0.3s ease;
}

.hero-button:hover svg {
  transform: translateX(4px);
}

/* ==================== CARD COMPONENTS ==================== */
.highlight-card,
.post-card,
.team-card,
.event-card,
.server-card,
.gallery-card,
.social-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.2s, background 0.2s;
}

.highlight-card:hover,
.post-card:hover,
.gallery-card:hover,
.social-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
}

/* ==================== GRID LAYOUTS ==================== */
.highlight-grid,
.post-grid,
.event-grid,
.server-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

/* ==================== ABOUT PAGE & TIMELINE ==================== */
.about-page {
  max-width: 1000px;
}

.about-header {
  text-align: center;
  margin-bottom: 80px;
}

.about-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 24px 0;
  background: linear-gradient(135deg, #cd4747 0%, #896bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-subtitle {
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, #b447cd, #cd4747, transparent);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 40px 60px 40px;
}

.timeline-left {
  left: 0;
  text-align: right;
}

.timeline-right {
  left: 50%;
  text-align: left;
}

.timeline-content {
  position: relative;
  padding: 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(180, 71, 205, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(180, 71, 205, 0.2);
}

.timeline-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #cd4747 0%, #896bff 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(180, 71, 205, 0.4);
  border: 3px solid #0b0e126e;
}

.timeline-left .timeline-icon {
  right: -70px;
  top: 30px;
}

.timeline-right .timeline-icon {
  left: -70px;
  top: 30px;
}

.timeline-year {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b447cd;
  margin-bottom: 12px;
}

.timeline-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #fff;
}

.timeline-description {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.85;
  margin: 0;
}

.team-section {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.team-heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 60px 0;
  background: linear-gradient(135deg, #cd4747 0%, #896bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-card {
  flex: 0 1 200px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-avatar {
  width: 80px;
  height: 80px;
  background: #15171b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 16px;
  border: 3px solid rgba(255, 255, 255, 0.297);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-card:hover .team-avatar {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(75, 71, 205, 0.4);
}

.team-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.team-role {
  font-size: 0.9rem;
  color: #b447cd;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.3), rgba(205, 71, 71, 0.3));
  border: 1px solid rgba(180, 71, 205, 0.4);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

/* Additional Members Section */
.additional-members-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.additional-members-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto 30px auto;
  padding: 16px 32px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.additional-members-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(180, 71, 205, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(180, 71, 205, 0.2);
}

.additional-members-toggle .toggle-icon {
  transition: transform 0.3s ease;
}

.additional-members-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.additional-members-content.open {
  max-height: 2000px;
}

/* ==================== GALLERY ==================== */
.gallery-page {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-header h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin: 0;
  background: linear-gradient(135deg, #cd4747 0%, #896bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.image-count {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Gallery Layout - Featured + Grid */
.gallery-layout {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Featured Image */
.gallery-featured {
  width: 100%;
  cursor: pointer;
}

.gallery-featured-inner {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}

.gallery-featured-inner:hover {
  border-color: rgba(180, 71, 205, 0.4);
  box-shadow: 0 20px 60px rgba(180, 71, 205, 0.2);
  transform: translateY(-4px);
}

.gallery-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-featured-inner:hover .gallery-featured-img {
  transform: scale(1.03);
}

.gallery-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.gallery-featured-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
}

.featured-type {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #b447cd;
}

.view-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff;
  transition: all 0.3s ease;
}

.gallery-featured-inner:hover .view-icon {
  background: linear-gradient(135deg, #b447cd, #cd4747);
  transform: scale(1.1);
}

/* Modern Gallery Grid */
.gallery-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  margin: 0;
  cursor: pointer;
}

.gallery-item-inner {
  position: relative;
  width: 100%;
  height: 220px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.gallery-item-inner:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(-6px);
}

.gallery-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item-inner:hover .gallery-item-img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.gallery-item-inner:hover .gallery-item-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-item-type {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #b447cd;
}

.gallery-item-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #fff;
}

/* Gallery Empty State */
.gallery-empty {
  text-align: center;
  padding: 100px 20px;
}

.gallery-empty svg {
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 24px;
}

.gallery-empty h2 {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 0 12px 0;
}

.gallery-empty p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Legacy support (keeping old classes for now) */
.gallery-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.gallery-card {
  position: relative;
  margin: 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  cursor: pointer;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-card:hover .image-wrapper img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .image-overlay {
  opacity: 1;
}

.view-text {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

figcaption {
  padding: 15px;
  color: #ffffff;
  font-size: 0.95rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
}

/* ==================== LIGHTBOX ==================== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999999;
  cursor: pointer;
}

.lightbox-content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  pointer-events: none;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

.lightbox-image-wrapper {
  position: relative;
  display: inline-block;
  max-width: 90vw;
  max-height: 90vh;
  pointer-events: auto;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  display: block;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 80px rgba(255, 255, 255, 0.05);
}

.lightbox-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1000002;
  transition: all 0.3s ease;
  line-height: 1;
  backdrop-filter: blur(10px);
  pointer-events: auto;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: rotate(90deg);
}

/* Lightbox Navigation */
.lightbox-nav {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 1000001;
}

.lightbox-prev,
.lightbox-next {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
}

/* Lightbox Counter */
.lightbox-counter {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 24px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 1000001;
}

/* Lightbox Responsive */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    width: 44px;
    height: 44px;
  }

  .lightbox-prev svg,
  .lightbox-next svg {
    width: 20px;
    height: 20px;
  }

  .lightbox-nav {
    padding: 0 10px;
  }

  .lightbox-counter {
    bottom: 20px;
    padding: 8px 18px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev svg,
  .lightbox-next svg {
    width: 18px;
    height: 18px;
  }
}

/* ==================== BLOG PAGE ==================== */
.blog-page {
  max-width: 1200px;
}

.blog-header {
  text-align: center;
  margin-bottom: 60px;
}

.blog-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #cd4747 0%, #896bff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-subtitle {
  font-size: 1.1rem;
  opacity: 0.7;
  margin: 0;
}

/* Featured Post */
.featured-post {
  margin-bottom: 60px;
}

.featured-post-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.featured-post-link:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(180, 71, 205, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.featured-post-image {
  position: relative;
  min-height: 400px;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.2), rgba(205, 71, 71, 0.2));
}

.featured-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-post-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
}

.featured-post-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, #b447cd, #cd4747);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(180, 71, 205, 0.4);
}

.featured-post-content {
  padding: 40px 40px 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.featured-post-date,
.featured-post-views {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  opacity: 0.6;
}

.featured-post-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: #fff;
  line-height: 1.3;
}

.featured-post-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
  margin: 0 0 24px 0;
}

.featured-post-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #b447cd;
  transition: all 0.3s ease;
}

.featured-post-link:hover .featured-post-cta {
  gap: 12px;
  color: #cd4747;
}

/* Blog Posts Section */
.blog-posts-section {
  margin-top: 40px;
}

.blog-posts-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.blog-posts-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.blog-sort-controls {
  display: flex;
  gap: 8px;
}

.blog-sort-btn {
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-sort-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.blog-sort-btn.active {
  color: #fff;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.3), rgba(205, 71, 71, 0.3));
  border-color: rgba(180, 71, 205, 0.4);
}

/* Blog Posts Grid */
.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.blog-post-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-post-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(180, 71, 205, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.blog-post-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.blog-post-card-image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.15), rgba(205, 71, 71, 0.15));
}

.blog-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
}

.blog-post-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.8), rgba(205, 71, 71, 0.8));
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.blog-post-card-content {
  padding: 20px;
}

.blog-post-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
  opacity: 0.6;
}

.blog-post-card-date,
.blog-post-card-views {
  display: inline-block;
}

.blog-post-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-card-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Blog Empty State */
.blog-empty {
  text-align: center;
  padding: 80px 20px;
  color: rgba(255, 255, 255, 0.5);
}

.blog-empty svg {
  margin-bottom: 20px;
  opacity: 0.3;
}

.blog-empty h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #fff;
}

.blog-empty p {
  margin: 0;
  opacity: 0.6;
}

/* ==================== EVENTS PAGE ==================== */
.events-page {
  max-width: 900px;
}

.events-header {
  text-align: center;
  margin-bottom: 48px;
}

.events-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #b447cd 0%, #cd4747 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.events-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin: 0;
}

/* Events Section */
.events-section {
  margin-bottom: 48px;
}

.events-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.events-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.events-section-icon.upcoming {
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.3), rgba(205, 71, 71, 0.2));
  color: #b447cd;
}

.events-section-icon.past {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
}

.events-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex: 1;
}

.events-count {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Month Group */
.events-month-group {
  margin-bottom: 32px;
}

.events-month-label {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  padding-left: 4px;
}

/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Event Card Modern */
.event-card-modern {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.event-card-modern:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.event-card-modern.event-upcoming {
  border-left: 3px solid #b447cd;
}

.event-card-modern.event-past {
  opacity: 0.7;
}

.event-card-modern.event-past:hover {
  opacity: 0.9;
}

/* Event Date Box */
.event-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding: 12px;
  background: rgba(180, 71, 205, 0.15);
  border-radius: 12px;
  text-align: center;
}

.event-past .event-card-date {
  background: rgba(255, 255, 255, 0.08);
}

.event-day {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.event-month {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* Event Content */
.event-card-content {
  flex: 1;
  min-width: 0;
}

.event-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.event-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

/* Event Badge */
.event-badge {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: rgba(180, 71, 205, 0.3);
  border: 1px solid rgba(180, 71, 205, 0.5);
  border-radius: 12px;
}

.event-badge.badge-today {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.3), rgba(0, 150, 60, 0.2));
  border-color: rgba(0, 200, 83, 0.5);
  color: #00c853;
}

.event-badge.badge-soon {
  background: linear-gradient(135deg, rgba(255, 171, 0, 0.3), rgba(255, 140, 0, 0.2));
  border-color: rgba(255, 171, 0, 0.5);
  color: #ffab00;
}

.event-badge.badge-past {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
}

/* Event Meta */
.event-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.event-time,
.event-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.event-time svg,
.event-location svg {
  opacity: 0.7;
}

/* Event Details */
.event-card-details {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 8px 0 0 0;
  line-height: 1.5;
}

/* Empty State */
.events-empty {
  text-align: center;
  padding: 80px 20px;
}

.events-empty svg {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 24px;
}

.events-empty h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px 0;
}

.events-empty p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Events Responsive */
@media (max-width: 600px) {
  .events-title {
    font-size: 2.2rem;
  }

  .event-card-modern {
    flex-direction: column;
    gap: 16px;
  }

  .event-card-date {
    flex-direction: row;
    gap: 8px;
    justify-content: flex-start;
    padding: 10px 16px;
  }

  .event-day {
    font-size: 1.4rem;
  }

  .event-month {
    margin-top: 0;
  }

  .event-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ==================== GAME HUB ==================== */
.gamehub-page {
  max-width: 1000px;
}

.gamehub-header {
  text-align: center;
  margin-bottom: 48px;
}

.gamehub-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  background: linear-gradient(135deg, #b447cd 0%, #cd4747 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gamehub-subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  margin: 0;
}

/* Game Hub Sections */
.gamehub-section {
  margin-bottom: 48px;
}

.gamehub-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gamehub-section-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gamehub-section-icon.games {
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.3), rgba(205, 71, 71, 0.2));
  color: #b447cd;
}

.gamehub-section-icon.servers {
  background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 150, 60, 0.15));
  color: #00c853;
}

.gamehub-section-icon.clips {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), rgba(200, 0, 0, 0.15));
  color: #ff4444;
}

.gamehub-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  flex: 1;
}

.gamehub-count {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.game-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.game-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.game-card.game-active {
  border-left: 3px solid #00c853;
}

.game-card.game-inactive {
  opacity: 0.7;
}

.game-card-image {
  position: relative;
  height: 160px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.game-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.game-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.1), rgba(205, 71, 71, 0.05));
  color: rgba(255, 255, 255, 0.3);
}

.game-card-overlay {
  position: absolute;
  top: 12px;
  right: 12px;
}

.game-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.game-status.status-active {
  background: rgba(0, 200, 83, 0.2);
  color: #00c853;
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.game-status.status-inactive {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.game-card-content {
  padding: 16px;
}

.game-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.game-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

.platform-badge svg {
  opacity: 0.8;
}

.game-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
}

/* Servers List */
.servers-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.server-card-modern {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.2s ease;
}

.server-card-modern:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(4px);
}

.server-card-modern.server-online {
  border-left: 3px solid #00c853;
}

.server-card-modern.server-offline {
  opacity: 0.7;
  border-left: 3px solid rgba(255, 255, 255, 0.3);
}

.server-status-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
}

.server-status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.server-status-dot.online {
  background: #00c853;
  box-shadow: 0 0 10px rgba(0, 200, 83, 0.5);
  animation: pulse 2s ease-in-out infinite;
}

.server-status-dot.offline {
  background: rgba(255, 255, 255, 0.3);
}

.server-card-content {
  flex: 1;
  min-width: 0;
}

.server-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.server-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.server-badge {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 12px;
}

.server-badge.badge-online {
  background: rgba(0, 200, 83, 0.2);
  color: #00c853;
  border: 1px solid rgba(0, 200, 83, 0.3);
}

.server-badge.badge-offline {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.server-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}

.server-game {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.server-game svg {
  opacity: 0.7;
}

.server-card-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  line-height: 1.5;
}

/* Clips Section */
.clips-scroll-container {
  position: relative;
  margin: 0 -20px;
  padding: 0 20px;
}

.clips-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 10px 0 20px 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(180, 71, 205, 0.5) rgba(255, 255, 255, 0.1);
}

.clips-scroll::-webkit-scrollbar {
  height: 8px;
}

.clips-scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

.clips-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.5), rgba(205, 71, 71, 0.5));
  border-radius: 4px;
}

.clips-scroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.7), rgba(205, 71, 71, 0.7));
}

.clip-card {
  flex: 0 0 auto;
  width: 320px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: all 0.3s ease;
}

.clip-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.clip-video {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 aspect ratio for shorts */
  background: #000;
}

.clip-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.clip-info {
  padding: 16px;
}

.clip-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clip-platform {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.clip-platform svg {
  color: #ff0000;
}

/* Game Hub Empty State */
.gamehub-empty {
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.1);
  border-radius: 16px;
}

.gamehub-empty svg {
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 16px;
}

.gamehub-empty h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px 0;
}

.gamehub-empty p {
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

/* Game Hub Responsive */
@media (max-width: 768px) {
  .gamehub-title {
    font-size: 2.2rem;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .clip-card {
    width: 280px;
  }
}

@media (max-width: 480px) {
  .gamehub-section-header {
    flex-wrap: wrap;
  }

  .gamehub-section-title {
    font-size: 1.1rem;
  }

  .server-card-modern {
    flex-direction: column;
    gap: 12px;
  }

  .server-status-indicator {
    justify-content: flex-start;
  }

  .clip-card {
    width: 260px;
  }

  .clip-video {
    padding-bottom: 120%; /* Slightly shorter on mobile */
  }
}

/* ==================== BLOG POST (Single) ==================== */
.post-full {
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.post-navigation {
  margin-bottom: 30px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.back-link:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(-3px);
}

.back-arrow {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.back-link:hover .back-arrow {
  transform: translateX(-3px);
}

.back-text {
  font-weight: 500;
}

.back-link.secondary {
  opacity: 0.8;
}

.back-link.secondary:hover {
  opacity: 1;
}

.post-header {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.post-date {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 15px;
}

.post-title {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.post-body {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.post-body p {
  margin-bottom: 1.5em;
}

.post-body p:last-child {
  margin-bottom: 0;
}

.post-footer {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==================== MODERN BLOG POST VIEW ==================== */
.post-full-modern {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.post-full-modern .post-navigation {
  margin-bottom: 30px;
}

.post-full-modern .back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.post-full-modern .back-link:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(180, 71, 205, 0.3);
  color: #fff;
  transform: translateX(-4px);
}

.post-header-modern {
  margin-bottom: 40px;
}

.post-header-modern.with-image {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 30px;
  align-items: start;
}

.post-header-content {
  flex: 1;
}

.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.post-date-badge,
.post-views-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.post-badge-tag {
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(135deg, #b447cd, #cd4747);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(180, 71, 205, 0.3);
}

.post-title-modern {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0;
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.post-header-image {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.post-header-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-content-modern {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
}

.post-content-modern p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.9;
  margin: 0 0 1.5em 0;
}

.post-content-modern p:last-child {
  margin-bottom: 0;
}

.post-footer-modern {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.back-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.2), rgba(205, 71, 71, 0.2));
  border: 1px solid rgba(180, 71, 205, 0.3);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.back-link-modern:hover {
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.3), rgba(205, 71, 71, 0.3));
  border-color: rgba(180, 71, 205, 0.5);
  transform: translateX(-4px);
  box-shadow: 0 8px 20px rgba(180, 71, 205, 0.2);
}

@media (max-width: 768px) {
  .post-header-modern.with-image {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .post-header-image {
    width: 100%;
    height: 200px;
    order: -1;
  }

  .post-title-modern {
    font-size: 2rem;
  }

  .post-content-modern {
    padding: 25px;
  }

  .post-content-modern p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .post-full-modern {
    padding: 20px 15px;
  }

  .post-title-modern {
    font-size: 1.75rem;
  }

  .post-meta-row {
    gap: 8px;
  }

  .post-date-badge,
  .post-views-badge {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .post-content-modern {
    padding: 20px;
    border-radius: 15px;
  }
}

/* ==================== CONTACT PAGE ==================== */
.contact-page {
  max-width: 900px;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-title {
  font-size: 48px;
  font-weight: 700;
  margin: 0 0 12px 0;
  background: linear-gradient(135deg, #b447cd, #cd4747);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-subtitle {
  font-size: 18px;
  opacity: 0.7;
  margin: 0;
}

.section-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 24px 0;
  text-align: center;
}

.section-subtitle {
  text-align: center;
  opacity: 0.7;
  margin: 0 0 32px 0;
}

/* FAQ Section */
.faq-section {
  margin-bottom: 80px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(180, 71, 205, 0.3);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-answer.open {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  margin: 0;
  opacity: 0.8;
  line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
  margin-bottom: 80px;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
}

.form-group input,
.form-group textarea {
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: #fff;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(180, 71, 205, 0.5);
  box-shadow: 0 0 0 3px rgba(180, 71, 205, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button[type="submit"] {
  width: 100%;
  margin-top: 8px;
}

/* Contact Socials Section */
.contact-socials-section {
  margin-bottom: 40px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.social-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(180, 71, 205, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.2), rgba(205, 71, 71, 0.2));
  border-radius: 10px;
  margin-bottom: 8px;
}

.social-icon svg {
  width: 24px;
  height: 24px;
}

.social-card strong {
  font-size: 18px;
  font-weight: 600;
}

.social-card span {
  font-size: 13px;
  opacity: 0.6;
}

/* ==================== SIDEBAR ==================== */
.sidebar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.sidebar:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.sidebar-btn:hover {
  background: linear-gradient(135deg, #cd4747 0%, #896bff 100%);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(180, 71, 205, 0.4);
}

.sidebar-btn svg {
  transition: transform 0.3s ease;
}

.sidebar-btn:hover svg {
  transform: scale(1.1);
}

.sidebar-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  margin: 4px 0;
}

.sidebar-socials {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-social-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-social-link:hover {
  background: linear-gradient(135deg, #cd4747 0%, #896bff 100%);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(180, 71, 205, 0.4);
}

.sidebar-social-link svg {
  transition: transform 0.3s ease;
}

.sidebar-social-link:hover svg {
  transform: rotate(5deg) scale(1.1);
}

/* ==================== FOOTER ==================== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 20px 30px 20px;
  position: relative;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(135deg, #b447cd, #cd4747);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 14px;
  opacity: 0.7;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.6;
  margin: 8px 0 16px 0;
  max-width: 500px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  transition: all 0.3s ease;
}

.footer-social-link:hover {
  background: rgba(180, 71, 205, 0.2);
  border-color: rgba(180, 71, 205, 0.4);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-links-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #fff;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
  width: fit-content;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.9);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copyright {
  font-size: 13px;
  opacity: 0.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-credit {
  font-size: 12px;
}

.footer-credit-link {
  color: inherit;
  text-decoration: wavy underline;
  transition: all 0.2s ease;
}

.footer-credit-link:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: dotted underline;
}

.footer-admin {
  display: flex;
  align-items: center;
}

.admin-icon {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 8px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.admin-icon:hover {
  background: rgba(180, 71, 205, 0.2);
  border-color: rgba(180, 71, 205, 0.4);
}

/* Legal Modal */
.legal-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.legal-modal {
  position: relative;
  background: rgba(11, 14, 18, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.legal-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

.legal-modal-close:hover {
  background: rgba(205, 71, 71, 0.3);
  border-color: rgba(205, 71, 71, 0.5);
}

.legal-modal-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 0 0 8px 0;
  background: linear-gradient(135deg, #b447cd, #cd4747);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-modal-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 24px 0 12px 0;
  color: #fff;
}

.legal-modal-content p {
  line-height: 1.7;
  opacity: 0.8;
  margin: 0 0 16px 0;
}

.legal-modal-content ul {
  margin: 12px 0;
  padding-left: 24px;
}

.legal-modal-content li {
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 8px;
}

.legal-modal-content strong {
  color: #fff;
  opacity: 1;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet Breakpoint */
@media (max-width: 1024px) {
  .gallery-grid.grid-large,
  .gallery-grid.grid-medium {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile Navigation */
@media (max-width: 800px) {
  .nav {
    position: absolute;
    top: 72px;
    right: 20px;
    background: rgba(11, 14, 18, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* Hide sidebar on mobile */
  .sidebar {
    display: none;
  }
}

/* Tablet & Mobile */
@media (max-width: 768px) {
  .page-glow {
    width: 400px;
    height: 400px;
  }

  .hero-content-wrapper {
    padding: 40px 30px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-tagline {
    font-size: 14px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-button {
    padding: 14px 28px;
    font-size: 14px;
  }

  .sidebar {
    right: 10px;
    padding: 12px 8px;
    gap: 8px;
  }

  .sidebar-btn,
  .sidebar-social-link {
    width: 40px;
    height: 40px;
  }

  .sidebar-btn svg,
  .sidebar-social-link svg {
    width: 18px;
    height: 18px;
  }

  /* About Page Responsive - Tablet */
  .about-page {
    padding: 60px 20px;
    overflow-x: hidden;
  }

  .about-header {
    margin-bottom: 50px;
  }

  .about-title {
    font-size: 2.5rem;
  }

  .about-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }

  .timeline {
    padding: 30px 0;
  }

  .timeline::before {
    left: 25px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 70px;
    padding-right: 15px;
    padding-bottom: 40px;
    box-sizing: border-box;
  }

  .timeline-content {
    padding: 24px 20px;
    border-radius: 16px;
    max-width: calc(100vw - 105px);
    box-sizing: border-box;
    word-wrap: break-word;
  }

  .timeline-left .timeline-icon,
  .timeline-right .timeline-icon {
    position: absolute;
    left: -70px !important;
    right: auto !important;
    width: 50px;
    height: 50px;
    top: 0;
    z-index: 2;
  }

  .timeline-icon svg {
    width: 20px;
    height: 20px;
  }

  .timeline-year {
    font-size: 0.85rem;
  }

  .timeline-title {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }

  .timeline-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .team-section {
    margin-top: 60px;
    padding-top: 60px;
  }

  .team-heading {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .team-grid {
    gap: 24px;
  }

  .team-card {
    flex: 0 1 180px;
    max-width: 200px;
  }

  .team-avatar {
    width: 70px;
    height: 70px;
  }

  .team-name {
    font-size: 1rem;
  }

  .team-role {
    font-size: 0.8rem;
  }

  /* Blog Page Responsive */
  .blog-title {
    font-size: 2.5rem;
  }

  .featured-post-link {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-post-image {
    min-height: 250px;
  }

  .featured-post-content {
    padding: 30px;
  }

  .featured-post-title {
    font-size: 1.5rem;
  }

  .blog-posts-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .blog-posts-grid {
    grid-template-columns: 1fr;
  }

  .gallery-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .gallery-header h1 {
    font-size: 2rem;
  }

  .gallery-grid.grid-large,
  .gallery-grid.grid-medium,
  .gallery-grid.grid-small {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid.grid-three {
    grid-template-columns: 1fr;
  }

  .gallery-grid.grid-three .gallery-card:first-child {
    grid-row: span 1;
  }

  .lightbox-content {
    padding: 20px;
  }

  .lightbox-close {
    width: 36px;
    height: 36px;
    font-size: 20px;
    top: 10px;
    right: 10px;
  }

  .contact-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 30px 24px;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .post-full {
    margin: 20px;
    padding: 30px 25px;
    border-radius: 15px;
  }

  .post-title {
    font-size: 2rem;
  }

  .post-body {
    font-size: 1rem;
  }

  .back-link {
    font-size: 0.9rem;
    padding: 8px 16px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .legal-modal {
    padding: 30px 20px;
    max-height: 85vh;
  }

  .legal-modal-content h2 {
    font-size: 24px;
  }

  .legal-modal-content h3 {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .page-glow {
    width: 300px;
    height: 300px;
    filter: blur(80px);
  }

  .hero-content-wrapper {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-tagline {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* About Page Responsive - Mobile */
  .about-page {
    padding: 40px 15px;
    overflow-x: hidden;
  }

  .about-header {
    margin-bottom: 40px;
  }

  .about-title {
    font-size: 1.75rem;
  }

  .about-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    padding: 0 5px;
  }

  .timeline {
    padding: 20px 0;
    margin-left: 0;
  }

  .timeline::before {
    left: 16px;
    width: 2px;
  }

  .timeline-item {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 50px;
    padding-right: 5px;
    padding-bottom: 24px;
    box-sizing: border-box;
  }

  .timeline-content {
    padding: 16px 14px;
    border-radius: 12px;
    width: 100%;
    max-width: calc(100vw - 75px);
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  .timeline-left .timeline-icon,
  .timeline-right .timeline-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    left: -50px !important;
    right: auto !important;
    top: 0;
    border-width: 2px;
    z-index: 2;
  }

  .timeline-icon svg {
    width: 14px;
    height: 14px;
  }

  .timeline-year {
    font-size: 0.7rem;
    margin-bottom: 6px;
  }

  .timeline-title {
    font-size: 1.05rem;
    margin-bottom: 8px;
    word-wrap: break-word;
  }

  .timeline-description {
    font-size: 0.85rem;
    line-height: 1.5;
    word-wrap: break-word;
  }

  .team-section {
    margin-top: 40px;
    padding-top: 40px;
  }

  .team-heading {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .team-grid {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .team-card {
    flex: 0 1 auto;
    width: 100%;
    max-width: 260px;
    padding: 20px 16px;
  }

  .team-avatar {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
  }

  .team-name {
    font-size: 0.95rem;
  }

  .team-role {
    font-size: 0.75rem;
  }

  .team-badge {
    font-size: 0.7rem;
    padding: 3px 10px;
  }

  .gallery-grid.grid-two,
  .gallery-grid.grid-large,
  .gallery-grid.grid-medium,
  .gallery-grid.grid-small {
    grid-template-columns: 1fr;
  }

  /* Gallery Modern Responsive */
  .gallery-featured-inner {
    height: 280px;
  }

  .gallery-featured-label {
    font-size: 1.1rem;
  }

  .gallery-grid-modern {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item-inner {
    height: 160px;
  }

  .lightbox-image {
    max-height: 80vh;
  }

  .lightbox-image-wrapper {
    max-width: 95vw;
  }

  .post-full {
    margin: 15px;
    padding: 25px 20px;
  }

  .post-title {
    font-size: 1.75rem;
  }

  .post-navigation,
  .post-footer {
    margin-bottom: 20px;
  }
}

/* Gallery Additional Responsive */
@media (max-width: 600px) {
  .gallery-page {
    padding: 20px 15px;
  }

  .gallery-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
  }

  .gallery-header h1 {
    font-size: 1.75rem;
  }

  .image-count {
    font-size: 0.85rem;
  }

  .gallery-featured-inner {
    height: 220px;
    border-radius: 14px;
  }

  .gallery-featured-overlay {
    padding: 20px;
  }

  .gallery-featured-label {
    font-size: 1rem;
  }

  .featured-type {
    font-size: 0.7rem;
  }

  .view-icon {
    width: 40px;
    height: 40px;
  }

  .gallery-grid-modern {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gallery-item-inner {
    height: 200px;
    border-radius: 12px;
  }

  .gallery-item-overlay {
    padding: 14px;
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==================== HOME PAGE SECTIONS ==================== */
.home-section {
  padding: 80px 20px;
  position: relative;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Section Headers */
.section-header-centered {
  text-align: center;
  margin-bottom: 48px;
}

.section-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #b447cd;
  margin-bottom: 12px;
}

.section-title-gradient {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.view-all-link:hover {
  color: #b447cd;
  gap: 10px;
}

/* ==================== HIGHLIGHTS SECTION ==================== */
.highlights-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.highlights-grid-centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.highlight-card-modern {
  flex: 0 1 320px;
  max-width: 360px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card-modern:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(180, 71, 205, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.highlight-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.2), rgba(205, 71, 71, 0.2));
  border-radius: 16px;
  color: #b447cd;
}

.highlight-card-modern h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px 0;
}

.highlight-card-modern p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ==================== ABOUT PREVIEW SECTION ==================== */
.about-preview-section {
  overflow: hidden;
}

.about-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-preview-content {
  max-width: 540px;
}

.about-preview-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px 0;
}

.about-preview-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #b447cd, #cd4747);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.preview-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b447cd;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.preview-link:hover {
  gap: 14px;
  color: #cd4747;
}

.about-preview-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.visual-card {
  position: relative;
  width: 280px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.3), rgba(205, 71, 71, 0.3));
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.7; }
}

.visual-content {
  position: relative;
  z-index: 1;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  color: #fff;
}

.visual-content span {
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==================== BLOG PREVIEW SECTION ==================== */
.blog-preview-section {
  background: rgba(255, 255, 255, 0.01);
}

.blog-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-preview-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-preview-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(180, 71, 205, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
}

.blog-preview-image {
  position: relative;
  height: 160px;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.15), rgba(205, 71, 71, 0.15));
  overflow: hidden;
}

.blog-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.blog-preview-card:hover .blog-preview-image img {
  transform: scale(1.08);
}

.blog-preview-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
}

.preview-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.9), rgba(205, 71, 71, 0.9));
  border-radius: 16px;
}

.blog-preview-info {
  padding: 20px;
}

.blog-preview-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
  display: block;
}

.blog-preview-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-preview-info p {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==================== EVENTS PREVIEW SECTION ==================== */
.events-preview-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-preview-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.event-preview-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(180, 71, 205, 0.3);
  transform: translateX(8px);
}

.event-preview-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 70px;
  padding: 16px;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.2), rgba(205, 71, 71, 0.2));
  border-radius: 12px;
}

.event-preview-date .event-day {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.event-preview-date .event-month {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  margin-top: 4px;
}

.event-preview-info {
  flex: 1;
}

.event-preview-info h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 6px 0;
}

.event-preview-info p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.event-preview-arrow {
  color: rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.event-preview-card:hover .event-preview-arrow {
  color: #b447cd;
  transform: translateX(4px);
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 100px 20px;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(180, 71, 205, 0.1), rgba(205, 71, 71, 0.1));
  border: 1px solid rgba(180, 71, 205, 0.2);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.cta-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 16px 0;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 32px 0;
  max-width: 500px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn.primary {
  background: linear-gradient(135deg, #b447cd, #cd4747);
  color: #fff;
  box-shadow: 0 8px 24px rgba(180, 71, 205, 0.3);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(180, 71, 205, 0.4);
}

.cta-btn.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cta-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-visual {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
}

.cta-rings {
  position: absolute;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(180, 71, 205, 0.2);
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.ring-2 {
  width: 70%;
  height: 70%;
  top: 15%;
  left: 15%;
  animation-delay: 0.5s;
  border-color: rgba(205, 71, 71, 0.3);
}

.ring-3 {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  animation-delay: 1s;
  border-color: rgba(180, 71, 205, 0.4);
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.05); opacity: 1; }
}

/* ==================== HOME PAGE RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-preview-visual {
    order: -1;
  }

  .visual-card {
    width: 200px;
    height: 200px;
  }

  .visual-content {
    width: 140px;
    height: 140px;
  }

  .blog-preview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .cta-content p {
    max-width: none;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-visual {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .home-section {
    padding: 60px 20px;
  }

  .section-title-gradient {
    font-size: 2rem;
  }

  .highlight-card-modern {
    flex: 0 1 280px;
    padding: 24px;
  }

  .about-preview-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

  .stat-value {
    font-size: 1.6rem;
  }

  .blog-preview-grid {
    grid-template-columns: 1fr;
  }

  .event-preview-card {
    padding: 20px;
    gap: 16px;
  }

  .cta-content h2 {
    font-size: 1.8rem;
  }

  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .home-section {
    padding: 50px 16px;
  }

  .section-title-gradient {
    font-size: 1.75rem;
  }

  .section-header-flex {
    flex-direction: column;
    align-items: flex-start;
  }

  .highlights-grid-centered {
    gap: 16px;
  }

  .highlight-card-modern {
    flex: 0 1 100%;
    padding: 20px;
  }

  .highlight-icon {
    width: 52px;
    height: 52px;
  }

  .about-preview-text {
    font-size: 1rem;
  }

  .about-preview-stats {
    gap: 20px;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .stat-desc {
    font-size: 0.75rem;
  }

  .blog-preview-info {
    padding: 16px;
  }

  .event-preview-date {
    min-width: 60px;
    padding: 12px;
  }

  .event-preview-date .event-day {
    font-size: 1.5rem;
  }

  .cta-card {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .cta-visual {
    display: none;
  }
}

/* ==================== NOTIFICATION SYSTEM ==================== */
.notification-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000000;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
  max-width: 400px;
  width: calc(100% - 40px);
}

.notification {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(20, 20, 25, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  animation: notificationSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.notification.hiding {
  animation: notificationSlideOut 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes notificationSlideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes notificationSlideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

.notification-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.notification.success .notification-icon {
  color: #4ade80;
}

.notification.error .notification-icon {
  color: #f87171;
}

.notification.warning .notification-icon {
  color: #fbbf24;
}

.notification.info .notification-icon {
  color: #60a5fa;
}

.notification-content {
  flex: 1;
  min-width: 0;
}

.notification-title {
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 4px;
}

.notification-message {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

.notification-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
  margin: -4px -8px -4px 0;
}

.notification-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.notification-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0 0 12px 12px;
  animation: notificationProgress linear forwards;
}

.notification.success .notification-progress {
  background: linear-gradient(90deg, #4ade80, #22c55e);
}

.notification.error .notification-progress {
  background: linear-gradient(90deg, #f87171, #ef4444);
}

.notification.warning .notification-progress {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
}

.notification.info .notification-progress {
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
}

@keyframes notificationProgress {
  from {
    width: 100%;
  }
  to {
    width: 0%;
  }
}

/* Notification left border accent */
.notification::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 12px 0 0 12px;
}

.notification.success::before {
  background: linear-gradient(180deg, #4ade80, #22c55e);
}

.notification.error::before {
  background: linear-gradient(180deg, #f87171, #ef4444);
}

.notification.warning::before {
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
}

.notification.info::before {
  background: linear-gradient(180deg, #60a5fa, #3b82f6);
}

/* Mobile notifications */
@media (max-width: 480px) {
  .notification-container {
    top: 10px;
    right: 10px;
    left: 10px;
    width: auto;
    max-width: none;
  }

  .notification {
    padding: 14px 16px;
  }

  .notification-title {
    font-size: 0.9rem;
  }

  .notification-message {
    font-size: 0.8rem;
  }
}

/* ==================== LIGHTBOX OVERLAY FIX ==================== */
/* Hide header, footer and sidebar when lightbox is active */
body.lightbox-open .site-header {
  z-index: 1;
}

body.lightbox-open .site-footer {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body.lightbox-open .sidebar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
