.article-section {
    padding-top: 200vh;
}

body {
    margin: 0;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #0f0f0f, #1a1a1a);
    color: #fff;
}

.image-link {
    position: relative;
    display: inline-block;
}

.blurred-image {
    display: block;
    width: 100%;
    height: auto;
    filter: blur(15px);
    /* optional, if you want image blurred */
}

/* .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 12px 30px;
  pointer-events: none;
} */

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 45px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 19px 30px;
    border-radius: 50%;
    pointer-events: none;
}

.gallery-item {
    position: relative;
    display: inline-block;
    margin: 10px;
}

.countdown-msg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 10px;
    border-radius: 6px;
    pointer-events: none;
}

.glow-text {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #ffeb3b;
    font-weight: bold;
    text-align: center;
    text-shadow: 0 0 5px #ffeb3b, 0 0 10px #ffdd00, 0 0 20px #ffcc00;
    margin-bottom: 20px;
}

.info-section {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 30px;
    color: #ccc;
}

.info-section strong {
    display: block;
    font-size: 1.3rem;
    color: #ffcc00;
    margin-top: 10px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 40px;
}

.gallery-item {
    background-color: #111;
    border-radius: 16px;
    padding: 15px;
    flex: 1 1 100%;
    max-width: 100%;
    box-sizing: border-box;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.5);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 10px;
    display: block;
}

.gallery-item a {
    text-decoration: none;
    color: #ffcc00;
}

.name {
    font-size: 1.1rem;
    margin: 5px 0;
}

.description {
    font-size: 0.9rem;
    color: #ccc;
}

.article-section {
    max-width: 800px;
    margin: 40px auto;
    background-color: #111;

    border-radius: 10px;
    color: #ddd;
}

.article-section h2 {
    color: #ffcc00;
    margin-bottom: 15px;
}

.footer {
    margin-top: 50px;
    padding: 20px;
    background-color: #111;
    text-align: center;
    font-size: 0.9rem;
    border-top: 1px solid #444;
}

.footer a {
    color: #aaa;
    margin: 0 10px;
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
    text-decoration: underline;
}

@media (min-width: 600px) {
    .gallery-item {
        flex: 1 1 calc(48% - 16px);
        max-width: calc(48% - 16px);
    }
}

@media (min-width: 900px) {
    .gallery-item {
        flex: 1 1 calc(30% - 16px);
        max-width: calc(30% - 16px);
    }
}