/* Зеленая рамка градиент */
.border-green {padding: 5px;border-radius: 10px;}
.border-green::before {content: '';position: absolute;top: 0;left: 0;right: 0;bottom: 0;width: 226px!important;background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);background-size: 1100% 400%;animation: gradient-animation 10s ease infinite;border-radius: 18px;z-index: -1;}
.border-green img {filter: saturate(25%);display: block;border-radius: 15px;}
.border-green {margin: 10px 5px;z-index: 1;-webkit-box-shadow: 0px 27px 10px -20px #595959;box-shadow: 0px 27px 10px -20px #595959;}
.border-green img:hover {filter: saturate(120%);}
/* Зеленая рамка градиент */

/* Красная рамка градиент */
.border-red {padding: 5px;border-radius: 10px;}
.border-red::before {content: '';position: absolute;top: 0;left: 0;right: 0;bottom: 0;width: 226px!important;background: linear-gradient(45deg, #0035ff, #6200ff, #00ffe7, #ffa700, #ff0000, #00ff2b, #7a00ff, #ff00c8, #ff0000);background-size: 1100% 400%;animation: gradient-animation 10s ease infinite;border-radius: 18px;z-index: -1;}
.border-red img {filter: saturate(25%);display: block;border-radius: 15px;}
.border-red {margin: 10px 5px;z-index: 1;-webkit-box-shadow: 0px 27px 10px -20px #595959;box-shadow: 0px 27px 10px -20px #595959;}
.border-red img:hover {filter: saturate(120%);}
/* Красная рамка градиент */

/* Черная рамка градиент */
.border-gray {padding: 5px;border-radius: 10px;}
.border-gray::before {content: '';position: absolute;top: 0;left: 0;right: 0;bottom: 0;width: 226px!important;background: linear-gradient(45deg, #000, #000, #000, #fff, #000, #000, #000, #000, #000);background-size: 1100% 400%;animation: gradient-animation 10s ease infinite;border-radius: 18px;z-index: -1;}
.border-gray img {filter: saturate(25%);display: block;border-radius: 15px;}
.border-gray {margin: 10px 5px;z-index: 1;-webkit-box-shadow: 0px 27px 10px -20px #595959;box-shadow: 0px 27px 10px -20px #595959;}
.border-gray img:hover {filter: saturate(120%);}

/* Анимация для градиента */
@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.blposters h1 {
            text-align: center;
            color: #444;
        }
        .blposters form {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 20px;
            flex-wrap: wrap;
			width: 100%;
			align-items: center;
        }
        .blposters select, button {
            padding: 8px 12px;
            border: 1px solid #ccc;
            border-radius: 6px;
            background: #fff;
            cursor: pointer;
			height: 35px;
        }
        .blposters button {
            background: #4cafef;
            color: #fff;
            border: none;
            transition: background 0.3s;
        }
        .blposters button:hover {
            background: #3b8fdc;
        }
        .blposters ul {
            list-style: none;
            padding: 0;
            margin: 0 auto;
        }
        .blposters li {
            background: #fff;
            margin: 10px 0;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 2px 6px rgba(0,0,0,0.08);
        }
        .blposters a {
            color: #4cafef;
            text-decoration: none;
            font-weight: bold;
        }
        .blposters a:hover {
            text-decoration: underline;
        }
		
		
		
.master-card {
    position: relative;
    width: 216px;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}
.master-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}
.master-card .info {
    padding: 12px;
    background: #ffffffd1;
    border-radius: 15px;
    margin: 5px 0 0 0;
}
.master-card h3 {
    margin: 0 0 5px;
}
.master-card p {
    margin: 3px 0;
    color: #444;
}
.master-card a {
    display: inline-block;
    margin-top: 6px;
    padding: 6px 10px;
    background: #4cafef;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}
.master-card a:hover {
    background: #3b8fdc;
}

/* VIP бейдж */
.vip-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: crimson;
    color: #fff;
    font-size: 12px;
    padding: 4px 6px;
    border-radius: 4px;
    font-weight: bold;
}


@media (max-width: 480px) {
.border-green img {width: 330px;height: 550px;filter: saturate(100%);}
.border-red img {width: 330px;height: 550px;filter: saturate(100%);}
.border-gray img {width: 330px;height: 550px;filter: saturate(100%);}
.master-card {
    position: relative;
    width: 330px;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
}
.border-green::before {width: 340px!important;}
.border-red::before {width: 340px!important;}
.border-gray::before {width: 340px!important;}
}