

/* Start:/zooyarmarka/style.css?176822805016777*/
.eventshead {
    padding: 15px 0 40px;
}

:root {
    --cyber-purple-dark: #0a0014;
    --cyber-purple: #1a0033;
    --cyber-purple-light: #330066;
    --cyber-pink: #ff1493;
    --cyber-blue: #00ffff;
}

.event-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    box-sizing: border-box;
}

.event-item {
    width: 100%;
    box-sizing: border-box;
}

.event-title {
    font-size: 2em;
    text-transform: uppercase;
    margin: 0 0 10px 0;
    user-select: none;
    position: relative;
    color: white;
}

.event-banner{
    padding: 40px 20px;
    height: 100%;
    border-radius: 15px;
    position: relative;
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 40px;    
}

.buttons-container {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.event-button {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 500;
    font-size: 1em;
    position: relative;
    cursor: pointer;
    min-width: 200px;
    text-align: center;
    box-sizing: border-box;   
    transition: transform 0.3s ease;
}

.event-button:hover{
    transform: translateY(-3px);
}

.event-label {
    position: absolute;
    top: 0px;
    right: 0px;
    padding: 0 5px;
    border-radius: 0 0px 0px 6px;
    font-size: 9px;
    color: #1a1a1a;
    background: rgba(255, 215, 0, 0.9);
    z-index: 10;
    pointer-events: none;
}


.banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* =======================================================================
   КИБЕР-ЯРМАРКА
   ======================================================================= */
.kiber-banner {
    background: linear-gradient(135deg, #0a0014 0%, #1a0033 25%, #330066 50%, #1a0033 75%, #0a0014 100%);
    border: 2px solid transparent;
    background-clip: padding-box;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Анимированная граница */
.kiber-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff1493, #00ffff, #ff1493, #00ffff);
    background-size: 400% 400%;
    animation: border-glow 4s ease infinite;
    border-radius: 15px;
    z-index: -2;
}

.kiber-banner::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, #0a0014 0%, #1a0033 25%, #330066 50%, #1a0033 75%, #0a0014 100%);
    border-radius: 13px;
    z-index: -1;
}

@keyframes border-glow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Матричный фон */
.matrix-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Контент баннера */


/* Главный заголовок */
.kiber-title {
    margin-top: 15px !important;
    font-family: 'Orbitron', monospace;
    font-weight: 700;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* Стилизация слова K1BERЯРМАРКА */
.kiber-word {
    font-size: 40px;
    background: linear-gradient(45deg, #ff1493, #8a2be2, #ff69b4, #9370db, #ff1493);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: gradient-shift 3s ease infinite;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.kiber-word::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    right: -10px;
    bottom: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 20, 147, 0.2) 25%, 
        rgba(0, 255, 255, 0.2) 50%, 
        rgba(255, 20, 147, 0.2) 75%, 
        transparent 100%
    );
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.kiber-word::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00ffff, #ff1493, #00ffff);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease;
    box-shadow: 0 0 10px #00ffff;
}

/* Остальная часть заголовка */
.title-rest {
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}


/* Стили кнопок */
.cyber-button {
    background: linear-gradient(45deg, #1a0033, #330066, #1a0033);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Orbitron', monospace;
    text-transform: uppercase;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cyber-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff1493, #00ffff, #ff1493, #00ffff);
    background-size: 400% 400%;
    animation: border-glow 4s ease infinite;
    border-radius: 10px;
    z-index: -2;
}

.cyber-button::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(45deg, #1a0033, #330066, #1a0033);
    border-radius: 8px;
    z-index: -1;
}

/* Кнопка "Как это было" */
.cyber-button.history {
    background: linear-gradient(45deg, #1a0033, #330066, #1a0033);
}

.cyber-button.history::after {
    background: linear-gradient(45deg, #1a0033, #330066, #1a0033);
}

.cyber-button.history:hover {
    box-shadow: 0 10px 30px rgba(255, 20, 147, 0.4);
    color: #ff1493;
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.8);
}

/* Кнопка "Победители и призы" */
.cyber-button.winners {
    background: linear-gradient(45deg, #0a0033, #001a33, #0a0033);
}

.cyber-button.winners::after {
    background: linear-gradient(45deg, #0a0033, #001a33, #0a0033);
}

.cyber-button.winners:hover {
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

/* Общие эффекты при наведении на баннер */
.kiber-banner:hover .kiber-word {
    font-weight: 900;
    transform: scale(1.05) perspective(1000px) rotateX(5deg);
    text-shadow: 
        0 0 20px #ff1493,
        0 0 40px #ff1493,
        0 0 60px #ff1493,
        0 0 80px #ff1493,
        0 0 100px rgba(255, 20, 147, 0.8),
        0 0 120px rgba(255, 20, 147, 0.6),
        2px 2px 0px #00ffff,
        4px 4px 0px rgba(0, 255, 255, 0.5);
    filter: 
        drop-shadow(0 0 30px rgba(255, 20, 147, 1))
        drop-shadow(0 0 50px rgba(255, 20, 147, 0.8))
        drop-shadow(0 0 70px rgba(255, 20, 147, 0.6));
    animation: glitch 0.3s ease-in-out, intense-glow 1.5s ease-in-out infinite alternate;
}

.kiber-banner:hover .kiber-word::before {
    opacity: 1;
    animation: neon-pulse-intense 1s ease-in-out infinite alternate;
}

.kiber-banner:hover .kiber-word::after {
    width: calc(100% + 20px);
}

.kiber-banner:hover .title-rest {
    text-shadow: 
        0 0 15px #00ffff,
        0 0 25px #00ffff,
        0 0 35px rgba(0, 255, 255, 0.5);
}

/* Анимации */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes glitch {
    0%, 100% { transform: scale(1.05) perspective(1000px) rotateX(5deg); }
    20% { transform: scale(1.05) perspective(1000px) rotateX(5deg) translateX(-2px); }
    40% { transform: scale(1.05) perspective(1000px) rotateX(5deg) translateX(2px); }
    60% { transform: scale(1.05) perspective(1000px) rotateX(5deg) translateX(-1px); }
    80% { transform: scale(1.05) perspective(1000px) rotateX(5deg) translateX(1px); }
}

@keyframes intense-glow {
    0% { 
        text-shadow: 
            0 0 20px #ff1493,
            0 0 40px #ff1493,
            0 0 60px #ff1493,
            0 0 80px #ff1493,
            0 0 100px rgba(255, 20, 147, 0.8),
            0 0 120px rgba(255, 20, 147, 0.6),
            2px 2px 0px #00ffff,
            4px 4px 0px rgba(0, 255, 255, 0.5);
    }
    100% { 
        text-shadow: 
            0 0 30px #ff1493,
            0 0 60px #ff1493,
            0 0 90px #ff1493,
            0 0 120px #ff1493,
            0 0 150px rgba(255, 20, 147, 1),
            0 0 180px rgba(255, 20, 147, 0.8),
            2px 2px 0px #00ffff,
            4px 4px 0px rgba(0, 255, 255, 0.7);
    }
}

@keyframes neon-pulse-intense {
    0% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 20, 147, 0.4) 25%, 
            rgba(0, 255, 255, 0.4) 50%, 
            rgba(255, 20, 147, 0.4) 75%, 
            transparent 100%
        );
        box-shadow: 0 0 20px rgba(255, 20, 147, 0.6);
    }
    100% { 
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255, 20, 147, 0.8) 25%, 
            rgba(0, 255, 255, 0.8) 50%, 
            rgba(255, 20, 147, 0.8) 75%, 
            transparent 100%
        );
        box-shadow: 0 0 40px rgba(255, 20, 147, 1);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
        opacity: 0.3; 
    }
    50% { 
        transform: translateY(-20px) rotate(180deg); 
        opacity: 0.8; 
    }
}

/* =======================================================================
   Зооярмарка 2024
   ======================================================================= */

.zoo2024-banner {
    background: linear-gradient(135deg, #2B2A28 0%, #3A3120 100%);
    overflow: hidden;
}


.zoo2024-banner::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 193px;
    left: -40px;
    top: -40px;

    background: url('/zooyarmarka/files/sun.png') no-repeat center / contain;
    filter: brightness(0) saturate(100%) invert(78%) sepia(95%) saturate(900%) hue-rotate(360deg);
    opacity: 0.25;
    pointer-events: none;
    z-index: 1;
    transform: scale(1);
    transition: transform 1.2s ease, opacity 0.6s ease;
    transform-origin: 60% 60%;
}

.zoo2024-banner:hover::before {
    transform: scale(0.85);
    opacity: 0.3;
    animation: sun-sway 5s ease-in-out infinite;
}

.zoo2024-banner::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 189px;
    right: -30px;
    bottom: -30px;
    background: url('/zooyarmarka/files/palm.png') no-repeat center / contain;

    filter: brightness(0) saturate(100%) invert(78%) sepia(95%) saturate(900%) hue-rotate(360deg);
    opacity: 0.3;

    pointer-events: none;
    z-index: 1;

}

@keyframes sun-float {
    0%, 100% { transform: scale(1) translateY(0) rotate(0deg); }
    50%      { transform: scale(1) translateY(10px) rotate(3deg); }
}

@keyframes sun-sway {
    0%, 100% { rotate: -6deg; }
    50%      { rotate:  6deg; }
}

.zoo2024-logo {
    max-width: 150px;
}
.zoo2024-button {
    background: #e25636;
    text-transform: uppercase;
    color: white;
}

.zoo2024-button:hover {
    font-weight: 700;
    color: white;    
}

/* =======================================================================
   Зимний марафон 25
   ======================================================================= */

.winter25-banner {
    background: #860507;
    overflow: visible;
}

.winter25-title {
    font-family: "Pacifico", cursive !important;
    font-weight: 400;
    padding-top: 10px;
    line-height: 40px;    
    background: linear-gradient(
        180deg,
        #fff4cf 0%,
        #fec06d 45%,
        #c98a12 100%
    );
    text-transform: none;
    font-size: 50px;
    height: inherit;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;  
}

.winter25-button {
    background: #ffe9cf;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .10);
    color: #2b1b14;
    text-transform: uppercase;
}

.winter25-button:hover {
    font-weight: 700;   
}

.winter25-label {
    border-radius: 9px;
}

.evroyear-hero__decor{
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5; 
}

.evroyear-hero__decor > span{
    position: absolute;
    top: -15px; 
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.18));
}

.evroyear-hero__decor--left{
    left: -30px;
    width: 200px;
    height: 188px;
    background-image: url("/zooyarmarka/evroyear/steps/left.png");
}

.evroyear-hero__decor--center{
    left: 50%;
    top: -8px !important;
    transform: translateX(-50%);
    width: 240px;
    height: 50px;
    background-image: url("/zooyarmarka/evroyear/steps/center.png");
}

.evroyear-hero__decor--right{
    right: -30px;
    width: 200px;
    height: 188px;
    background-image: url("/zooyarmarka/evroyear/steps/right.png");
}

.evroyear-snow{
  position:absolute;
  inset:0;
  pointer-events:none;
  overflow:hidden;
  z-index: 3;
}

/* общий слой */
.evroyear-snow::before,
.evroyear-snow::after{
  content:"";
  position:absolute;
  inset:-200px 0 0 0; 
  background-repeat: repeat;
  will-change: background-position;
  background-position: 0 0;
}


.evroyear-snow::before{
  background-image:
    radial-gradient(2px 2px at 10% 10%, rgba(255,255,255,.95) 55%, transparent 60%),
    radial-gradient(2.4px 2.4px at 25% 30%, rgba(255,255,255,.85) 55%, transparent 60%),
    radial-gradient(1.8px 1.8px at 40% 15%, rgba(255,255,255,.90) 55%, transparent 60%),
    radial-gradient(2.2px 2.2px at 55% 25%, rgba(255,255,255,.88) 55%, transparent 60%),
    radial-gradient(2.6px 2.6px at 70% 12%, rgba(255,255,255,.80) 55%, transparent 60%),
    radial-gradient(2px 2px at 85% 28%, rgba(255,255,255,.92) 55%, transparent 60%);

  background-size: 180px 180px;   /* было 320 — стало чаще */
  animation: snowBig 14s linear infinite; /* чуть быстрее, но не дергается */
  opacity: .85;
}

.evroyear-snow::after{
  background-image:
    radial-gradient(1.2px 1.2px at 12% 20%, rgba(255,255,255,.70) 55%, transparent 60%),
    radial-gradient(1px 1px at 28% 45%, rgba(255,255,255,.65) 55%, transparent 60%),
    radial-gradient(1.3px 1.3px at 48% 30%, rgba(255,255,255,.72) 55%, transparent 60%),
    radial-gradient(1.1px 1.1px at 65% 50%, rgba(255,255,255,.68) 55%, transparent 60%),
    radial-gradient(1.2px 1.2px at 82% 35%, rgba(255,255,255,.70) 55%, transparent 60%);

  background-size: 130px 130px;  /* было 220 — стало плотнее */
  animation: snowMid 20s linear infinite;
  opacity: .65;
}


@keyframes snowBig{
  from { background-position: 0 0; }
  to   { background-position: 120px 700px; } 
}

@keyframes snowMid{
  from { background-position: 0 0; }
  to   { background-position: -60px 800px; }
}



/* =======================================================================
   Адаптивы
   ======================================================================= */

@media (max-width: 768px) {
    .event-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .event-title {
        font-size: 2em;
    }
    
    .buttons-container {
        flex-direction: column;
        align-items: center;
    }
    
    .event-button {
        min-width: 180px;
    }
    
    .event-banner {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .event-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }    
    .event-title {
        font-size: 2em;
    }
    
    .event-button {
        min-width: 160px;
        font-size: 0.9em;
    }
    
    .event-banner {
        padding: 25px 10px;
    }
    .winter25-title {
        margin-bottom: -10px;
        padding-top: 30px;
    } 
}

/* End */


/* Start:/bitrix/templates/aspro_max/components/bitrix/news.list/content-list-blocks/style.min.css?17486647023980*/
.content-list-blocks-view .item__column{margin-bottom:28px}@media screen and (min-width:568px) and (max-width:767px){.content-list-blocks-view .item__column.col-xs-12{width:50%}}@media screen and (min-width:768px){.content-list-blocks-view .item__column{margin-bottom:32px}}@media screen and (min-width:568px){.content-list-blocks-view .item_wrap{height:100%}}@media screen and (min-width:768px){.content-list-blocks-view .item__column:hover{z-index:1}.content-list-blocks-view .item_wrap:hover .order_service_in_list--abs,.content-list-blocks-view .item_wrap:hover .services_buy_block--abs{opacity:1;pointer-events:all;border-color:#fff}}@media screen and (min-width:992px){.content-list-blocks-view .item_wrap:hover .order_service_in_list--abs,.content-list-blocks-view .item_wrap:hover .services_buy_block--abs{box-shadow:0 10px 20px 0 rgb(0 0 0 / 10%)}}@media screen and (max-width:991px){.content-list-blocks-view .item_wrap:hover{border-color:var(--stroke_black);background-color:initial}}.content-list-blocks-view .item{display:flex;flex-direction:column}.content-list-blocks-view .item .body-info{display:flex;flex-direction:column;flex-grow:1;justify-content:space-between;padding:23px 28px}.content-list-blocks-view .item .title{margin-bottom:14px}.content-list-blocks-view .item .previewtext.item__preview-text{margin-bottom:16px;margin-top:0}.content-list-blocks-view .properties{margin-bottom:17px}.content-list-blocks-view .properties .inner-wrapper{position:relative;padding:0 10px}.content-list-blocks-view .properties .inner-wrapper::before{background-color:#333;background-color:var(--fill_dark_light_hover);border-radius:50%;content:"";display:block;height:3px;left:0;position:absolute;top:12px;width:3px}.content-list-blocks-view .prices{display:flex}.content-list-blocks-view .prices .price_old{margin-left:10px;text-decoration:line-through}.content-list-blocks-view .sale_block{margin:9px 0 2px}.services_buy_block--abs .counter_wrapp{display:flex;padding-top:0;margin-bottom:0}.services_buy_block--abs .counter_block_inner{margin-bottom:0;width:50%;min-width:unset}.services_buy_block--abs .button_block{margin-bottom:0;width:50%}.order_service_in_list--abs .btn,.services_buy_block--abs .btn,.services_buy_block--abs .counter_wrapp .button_block.wide .btn.in-cart{width:100%}.content-sections1~.content-list-blocks-view{margin-top:32px}.bx-touch .services_buy_block--abs{margin-top:15px}.bx-touch .order_service_in_list--abs .btn-exlg,.bx-touch .services_buy_block--abs .btn-exlg{padding:12px 21px 11px}.bx-touch .services_buy_block--abs .counter_block.big,.bx-touch .services_buy_block--abs .counter_block.big input[type=text]{height:100%}.property .darken{word-break:break-word}@media screen and (max-width:991px){.bx-no-touch .services_buy_block--abs{margin-top:15px}.bx-no-touch .order_service_in_list--abs .btn-exlg,.bx-no-touch .services_buy_block--abs .btn-exlg{padding:12px 21px 11px}.bx-no-touch .services_buy_block--abs .counter_block.big,.bx-no-touch .services_buy_block--abs .counter_block.big input[type=text]{height:100%}}@media screen and (min-width:992px){.bx-no-touch .order_service_in_list--abs,.bx-no-touch .services_buy_block--abs{border-radius:0 0 4px 4px;left:-1px;opacity:0;overflow:hidden;pointer-events:none;position:absolute;right:-1px;top:100%;z-index:1}.bx-no-touch .services_buy_block--abs .counter_block_inner{border-radius:0 0 0 4px;margin-bottom:0;margin-right:0;width:50%}.bx-no-touch .services_buy_block--abs .counter_block{border-bottom:unset;border-left:unset;border-radius:0 0 0 4px;border-right:unset;height:100%}.bx-no-touch .services_buy_block--abs .button_block{border-radius:0 0 4px 4px;border-radius:0;margin-bottom:0;width:100%}.bx-no-touch .services_buy_block--abs .button_block .btn,.order_service_in_list--abs .btn{border-radius:inherit;height:100%}.bx-no-touch .services_buy_block--abs .counter_block_inner+.button_block:not(.wide){border-radius:0 0 4px 0;width:50%}.order_service_in_list--abs{margin-top:0}}
/* End */
/* /zooyarmarka/style.css?176822805016777 */
/* /bitrix/templates/aspro_max/components/bitrix/news.list/content-list-blocks/style.min.css?17486647023980 */
