  /* Full-screen animated gradient background */
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(-45deg, #00c6ff, #f9d423, #009fff, #ffeb3b);
  background-size: 400% 400%;
  animation: gradientFlow 15s ease infinite;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* Gradient animation */
@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating circles */
.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.25;
  animation: float 20s linear infinite;
  z-index: 0;
}
.floating-circle.blue {
  background: #00c6ff;
}
.floating-circle.yellow {
  background: #ffeb3b;
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(0.5);
    opacity: 0.1;
  }
  50% {
    transform: translateY(50vh) scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: translateY(-20vh) scale(0.4);
    opacity: 0.1;
  }
}

    header {
        padding: 30px 20px 10px;
        text-align: center;
        background: #fff;
    }

    header h1 {
        margin: 0;
        font-size: 2em;
        color: #2c3e50;
    }

    header p {
        color: #555;
        font-size: 1.1em;
    }

    main {
        max-width: 1200px;
        margin: auto;
        padding: 20px;
    }

 
    .promo-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;


    }

    .promo-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 340px; /* Responsive base width */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px; /* You can adjust this for mobile or overall height */
}


@keyframes pulseIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.promo-btn {
    background: linear-gradient(45deg, #28a745, #218838);
    color: #fff;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 8px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.promo-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    transform: skewX(-20deg);
    transition: left 0.6s;
}

.promo-btn:hover::after {
    left: 100%;
}

.promo-btn:hover {
    box-shadow: 0 0 15px #1e7e34;
}

    .promo-item:hover {
        transform: translateY(-6px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    }

    .promo-item h2 {
        font-size: 1.4em;
        color: #34495e;
        margin-bottom: 15px;
    }

    .promo-img img {
        width: 100%;
        max-width: 468px;
        height: auto;
        aspect-ratio: 468 / 60;
        object-fit: contain;
        border-radius: 6px;
        background: #eee;
        padding: 4px;
        margin-bottom: 10px;
    }

    .promo-item p {
        font-size: 0.95em;
        color: #555;
        margin: 10px 0 15px;
        display: -webkit-box;
  -webkit-line-clamp: 4; /* Show max 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
    }

    

    
    .pagination {
        text-align: center;
        margin: 40px 0;
    }

    .pagination a {
        padding: 10px 16px;
        margin: 0 4px;
        background: #ddd;
        color: #333;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 500;
        transition: all 0.2s ease;
    }

    .pagination a.active,
    .pagination a:hover {
        background: #007bff;
        color: white;
    }

    footer {
        background: #222;
        color: #ccc;
        text-align: center;
        padding: 30px 20px;
        font-size: 0.9em;
        margin-top: 50px;
    }

    footer a {
        color: #ccc;
        text-decoration: underline;
    }

    footer a:hover {
        color: white;
    }
    @media screen and (max-width: 480px) {
  .promo-item h2 {
    font-size: 1.2em;
  }

  .promo-btn {
    padding: 10px 14px;
    font-size: 0.95em;
  }
}
.floating-emoji {
  position: absolute;
  font-size: 72px;
  opacity: 0.3;
  animation: flameFloat 18s linear infinite;
  z-index: 0;
  top: 100vh;
  transform: translateY(-120vh) scale(0.8) rotate(10deg);

}

@keyframes flameFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.1;
  }
  30% {
    opacity: 0.4;
  }
  60% {
    transform: translateY(-50vh) scale(1.2);
    opacity: 0.25;
  }
  100% {
    transform: translateY(-120vh) scale(0.8);
    opacity: 0;
  }
}
.gravatar-inline {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 10px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}
