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

body {
  font-family: system-ui, sans-serif;
  background: #fff;
  color: #111;
}
.logo{
    /* display:flex; */
    background-image: url(pic_kwa.png);
    height: 48px;
    width: 48px;    
    background-repeat: no-repeat;
    background-position: center;    
    background-size: cover;
}

.container {
  max-width: 1400px;
  margin: 40px auto;
  padding: 0 24px;
}

.page-title {
  font-size: medium;
  font-weight: 800;
  color: #e11900;
  margin-bottom: 30px;
}

.section {
  margin-bottom: 60px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
}

.divider {
  height: 4px;
  background: #e11900;
  margin: 10px 0 25px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.4s ease;
  filter: blur(12px);
}

/* Loaded state */
.grid img.loaded {
  filter: blur(0);
}

.grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* Video overlay */
.video-card {
  position: relative;
}

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 64px;
  color: white;
  background: rgba(0,0,0,0.35);
  border-radius: 22px;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.video-card:hover .play-btn {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 16px;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 48px;
  color: white;
  cursor: pointer;
}
