:root {
  --bg: #0b0f19;
  --bg-soft: #121829;
  --card: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f7fb;
  --muted: #aab4c5;
  --accent: #5b8cff;
  --accent-2: #7a5cff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(91, 140, 255, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(122, 92, 255, 0.16), transparent 25%),
    linear-gradient(180deg, #080c14 0%, #0b0f19 45%, #0d1220 100%);
  color: var(--text);
}

.custom-navbar {
  background: rgba(10, 14, 24, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar-brand {
  font-weight: 800;
  letter-spacing: 0.03em;
}

.nav-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.hero-section {
  padding: 140px 0 90px;
}

.hero-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  font-weight: 700;
  color: #dbe6ff;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 0.98;
  margin-top: 18px;
  margin-bottom: 18px;
}

.hero-text {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 700px;
}

.hero-card,
.info-card,
.content-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 50px rgba(0,0,0,0.22);
}

.hero-card {
  padding: 28px;
}

.hero-card h2 {
  font-size: 1.8rem;
  font-weight: 700;
}

.small-label {
  color: #9eb6ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.8rem;
}

.section-space {
  padding: 70px 0;
}

.info-card {
  padding: 26px;
}

.info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-card p,
.text-soft {
  color: var(--muted);
}

.content-box {
  padding: 32px;
}

.site-footer {
  padding: 28px 0 38px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 18px;
}

.site-footer a:hover,
.nav-link:hover {
  color: #ffffff;
}

.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border: none;
  box-shadow: 0 10px 30px rgba(91,140,255,0.22);
}

.btn-primary:hover {
  opacity: 0.95;
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.18);
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 120px 0 70px;
  }

  .site-footer a {
    margin-left: 0;
    margin-right: 18px;
  }
}

.hero-section-sm {
  padding: 140px 0 70px;
}

.hero-title-inner {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-list {
  padding-left: 1.2rem;
  color: var(--muted);
}

.about-list li {
  margin-bottom: 10px;
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  margin-bottom: 16px;
  font-size: 1.3rem;
  background: linear-gradient(135deg, rgba(91,140,255,0.22), rgba(122,92,255,0.18));
  border: 1px solid rgba(255,255,255,0.1);
}

.contact-card {
  padding: 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 50px rgba(0,0,0,0.22);
}

.contact-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.contact-link:hover {
  color: #dbe6ff;
}

.event-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 50px rgba(0,0,0,0.22);
}

.event-image {
  height: 200px;
  background: linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.35)
    ),
    url("https://images.unsplash.com/photo-1514525253161-7a46d19cd819?q=80&w=1200&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
}

.event1-image {
  height: 200px;
  background: linear-gradient(
      rgba(0,0,0,0.35),
      rgba(0,0,0,0.35)
    ),
    url("../img/events/event-1.jpg");
  background-size: cover;
  background-position: center;
}

.event-body {
  padding: 24px;
}

.event-date {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #9eb6ff;
}

.event-location {
  color: var(--muted);
  margin-bottom: 12px;
}

.cookie-banner {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: min(92%, 560px);
  padding: 20px;
  border-radius: 20px;
  background: rgba(11, 15, 25, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  z-index: 9999;
}

.cookie-banner p {
  margin: 0 0 12px 0;
  color: var(--text);
}

.cookie-banner a {
  color: #9eb6ff;
  text-decoration: none;
}

.cookie-banner a:hover {
  color: #ffffff;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 576px) {
  .cookie-banner {
    left: 16px;
    right: 16px;
    bottom: 16px;
    transform: none;
    width: auto;
  }
}