/* Базовое обнуление */
:root {
    --primary-pink: #ff1795;
    --bg-dark: #0c040f;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: #0c040f; /* Глубокий темный пурпур */
    color: #ffffff;
    overflow-x: hidden;
}

a {
    color: white;
    text-decoration: none;
}

.container {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.rau-flex {
    display: flex;
}

/* Хедер */
.rau-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height:107px;
    background: linear-gradient(to top, #3b0b21 0%, #130213 100%);
    transition: all 0.4s ease-in-out;
    z-index: 1000;
}

#header.scrolled {
    height: 60px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.rau-header .rau-flex {
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
    position: relative;
    z-index: 10;
}

.rau-logo {
    padding: 17px 0 0 0;
}

.rau-logo svg {
    width:207px;
    height:71px;
    transition: all 1.5s ease;
}

#header.scrolled .rau-logo {
    padding: 5px 0 0 0;
}

#header.scrolled .rau-logo svg {
    height: 50px;
}

.rau-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

.rau-nav a {
    text-decoration: none;
    color: #b5b0ba;
    font-size: 17px;
    transition: color 0.3s;
}

.rau-nav a:hover {
    color: #ff0066;
}

.rau-header-actions {
    display: flex;
    gap: 12px;
}

/* Внешняя светящаяся неоновая рамка */
.neon-btn {
    background: transparent;
    border: 2px solid #fffbfa; /* Яркий розовый цвет */
    border-radius: 20px;
    padding: 6px; /* Отступ между внешней и внутренней рамкой */
    cursor: pointer;
    position: relative;
    display: inline-block;
    transition: all 0.5s ease;
    outline: none;
    
    /* Множественные внешние и внутренние тени для эффекта мощного неона */
    box-shadow: 
        0 0 10px #ff007a, 
        0 0 25px rgba(255, 0, 122, 0.6),
        inset 0 0 10px #ff007a;
}

/* Внутреннее тело кнопки со стеклянным бликом */
.neon-btn-content {
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, 
        rgba(40, 10, 35, 0.9) 0%, 
        rgba(40, 10, 35, 0.9) 50%, 
        rgba(20, 5, 18, 0.95) 50%, 
        rgba(20, 5, 18, 0.95) 100%
    );
    border: 1px solid rgba(255, 0, 122, 0.4); /* Внутренняя тонкая рамка */
    border-radius: 14px;
    padding: 5px 30px;
    color: #ffffff;
    font-size: 17px;
    text-align: center;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    height:50px;
}

#header.scrolled .neon-btn-content {
    padding: 5px 30px;
    font-size: 15px;
    height:40px;
}

/* Эффект при наведении (Ховер) */
.neon-btn:hover {
    /* Усиливаем свечение */
    box-shadow: 
        0 0 15px #ff007a, 
        0 0 40px #ff007a,
        inset 0 0 15px #ff007a;
    transform: scale(1.02); /* Легкое увеличение */
}

.neon-btn:hover .neon-btn-content {
    background: linear-gradient(to bottom, 
        rgba(60, 15, 52, 0.9) 0%, 
        rgba(60, 15, 52, 0.9) 50%, 
        rgba(35, 8, 32, 0.95) 50%, 
        rgba(35, 8, 32, 0.95) 100%
    );
    text-shadow: 0 0 8px #ffffff;
}

/* Эффект при клике */
.neon-btn:active {
    transform: scale(0.98);
}

.burger {
    display: none;
    width: 60px;
    height: 40px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.burger::before {
    top: 0;
}

.burger span, .burger::before, .burger::after {
    content: "";
    position: absolute;
    height: 4px;
    width: 100%;
    background: #fff;
    left: 0;
    transition: 0.3s;
}

.burger span {
    top: 18px;
}

.burger::after {
    bottom: 0;
}

/* Главный контент */
.rau-hero-content {
    max-width: 1380px;
    width: 100%;
    margin: auto;
    padding: 40px 20px 60px 20px;
    margin-top: 107px;
    position: relative;
    z-index: 5;
    background:url('images/awards-star.jpg') no-repeat 100px center;
}

.rau-hero-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: space-between;
}

/* Левая часть текста */
.rau-badge {
    display: inline-block;
    color: var(--primary-pink);
    font-size: 46px;
    font-weight: 600;
    margin-bottom: 16px;
}

.rau-main-title {
    font-size: 27px;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Таймер обратного отсчета */
#timer-wrapper {
    position: relative;
    margin-top: 75px;
}

.countdown {
    display: flex;
    gap: 0px;
    justify-content: center;
    width:350px;
	height:90px;
	border:1px var(--primary-pink) solid;
	/* Вирізаємо частину верхньої рамки посередині */
  clip-path: polygon(
    0% 0%,       /* Початок: верхній лівий */
    20% 0%,      /* Йдемо до початку вирізу */
    20% 10%,     /* Заходимо глибше (щоб зрізати товщину рамки) */
    80% 10%,     /* Проходимо вздовж вирізу */
    80% 0%,      /* Повертаємось до верхньої лінії */
    100% 0%,     /* Йдемо в правий верхній */
    100% 100%,   /* Правий нижній */
    0% 100%      /* Лівий нижній */
  );
	margin-top:0px;
	align-items:center;
}

#remaining-time {
	position:absolute;
	top:-10px;
    left:85px;
	z-index:777;
    font-size:16px;
}

.time-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.time-item span {
    font-size: 41px;
    color: var(--primary-pink); /* акцентный оранжевый */
    line-height: 1;
}

.time-item label {
    font-size: 13px;
    color: white;
    margin-top: 0px;
}

.divider {
    font-size: 41px;
    color: var(--primary-pink);
    margin-top: -15px; /* Смещение вниз, чтобы двоеточие было по центру цифр */
    text-shadow: 0 0 10px rgba(243, 111, 33, 0.5);
}

/* На мобильных устройствах уменьшаем размер вместе с цифрами */
@media (max-width: 480px) {
    .hero .container {
	    justify-content:center;
    }
    .divider {
        font-size: 32px;
    }

    .time-item {
        min-width: 30px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 480px) {
    .time-item span { font-size: 32px; }
    .countdown { gap: 10px; }
}

.event-details {
    font-size: 22px;
    margin-top: 27px;
}

.event-details strong {
    display: block;
    font-size: 26px;
    color: var(--primary-pink);
    font-weight: 600;
}

.event-disclaimer {
    font-size: 17px;
    margin-top: 30px;
}

/* Правая сторона (Графика и Статистика) */
.rau-hero-right {
    max-width: 320px;
    margin-top: 65px;
}

/* Сетка статистики */
.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    width: 100%;
    max-width: 320px;
    flex-wrap: wrap;
}

.stat-card {
    text-align: center;
    flex:1;
}

.stat-icon {
    height:79px;
}

.stat-num {
    font-size: 44px;
    font-weight: 800;
}

.stat-text {
    font-size: 17px;
    text-transform: uppercase;
}

/* Блок таймлайна внизу */
/* Общие настройки для темного фона премии */
#timeline-section {
    margin-top: 100px;
}

#timeline-section h2 {
    text-align: center;
    font-size: 30px;
    margin-bottom: 45px;
    text-transform: uppercase;
    font-weight: 400;
}

/* Контейнер таймлайна */
.timeline-wrapper {
    display: grid;
    grid-template-columns: repeat(5, minmax(200px, 1fr));
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    position: relative;
}

/* Розовая сквозная стрелка */
.timeline-axis-arrow {
    position: absolute;
    top: 130px; /* Точное позиционирование по центру плашек с датами */
    left: 0;
    right: 15px; /* Зазор перед наконечником стрелки */
    height: 36px;
    background-color: #b61d7e; /* Приглушенный темно-розовый */
    z-index: 1;
}

/* Наконечник стрелки слева */
.timeline-axis-arrow::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 18px solid #b61d7e;
    border-bottom: 18px solid #b61d7e;
    border-left: 15px solid #0c040f;
}

/* Наконечник стрелки справа */
.timeline-axis-arrow::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 15px solid #b61d7e;
}

/* Единый узел/вертикаль таймлайна */
.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
}

/* Верхний полукруг с цифрой */
.node-number {
    width: 108px;
    height: 54px; /* Высота в два раза меньше ширины */
    background: linear-gradient(to top, #bd1471, #e61c8c);
    border-top-left-radius: 70px;
    border-top-right-radius: 70px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 4px;
    box-shadow: 0 -5px 15px rgba(230, 28, 140, 0.3);
}

.node-number span {
    color: #ffffff;
    font-size: 36px;
}

.node-block {
    width: 195px;
    height:220px;
    border-left:1px #ff53bc solid;
    border-top:1px #ff53bc solid;
    border-radius: 35px;
    background: #240521;
    position: relative;
    z-index: 1;
}

/* Иконка и неоновое свечение за ней */
.node-icon {
    width: 108px;
    height: 54px;
    background: linear-gradient(to bottom, #bd1471, #e61c8c);
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    position: relative;
    margin:auto;
    padding-top:10px;
    /* box-shadow: 0 10px 10px 10px rgba(189, 20, 113, 1); */
    text-align: center;
    z-index: 1;
}

.node-icon::before {
    content: '';
    position: absolute;
    top: 0px; /* Сдвигаем тень немного вниз */
    left: -5px;
    width: 118px;
    height: 64px;
    background: linear-gradient(to bottom, #bd1471, #e61c8c);
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    filter: blur(5px); 
    opacity: 1;
    z-index: -1; /* Уводим под основной блок */
    pointer-events: none; /* Чтобы тень не перехватывала клики */
}

.node-axis-arrow {
    position: absolute;
    top: 75px; /* Точное позиционирование по центру плашек с датами */
    left: 0;
    right: 0px; /* Зазор перед наконечником стрелки */
    height: 36px;
    background-color: #b61d7e; /* Приглушенный темно-розовый */
    z-index: 2;
}

/* Розовая плашка с датой (пересекающая стрелку) */
.node-date {
    width: 100%;
    color: #ffffff;
    font-size: 17px;
    text-align: center;
    position: relative;
    z-index: 5;
    top:30px;
}

.timeline-node:nth-child(4) .node-date {
    font-size: 15px;
}

/* Разделительные тонкие вертикальные линии между датами */
/* .timeline-node:not(:last-child) .node-date::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0px;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
} */

/* Нижняя темная карточка с контентом */
.node-content {
    text-align: center;
    font-size: 15px;
    position: relative;
    top:50px;
}

/* Специфический контент 3-го этапа */
.node-text-accent {
    text-transform: uppercase;
}

.node-sub-date {
    color: #ff71cb;
    font-size: 13px;
    font-wk-top: 8px;
}

.node-content-small {
    font-size: 12px;
}

.section-divider {
    width: 100%;
    height: 17px;
    background: url('images/divider.jpg') no-repeat center;
    margin: 65px 0;
}

#awards-stages {
    margin-top: 70px;
}

.awards-stage {
    background-color: #240521;
    background-image: url('images/stages-draw.jpg');
    background-repeat: no-repeat;
    background-position: left top;
    margin-bottom: 10px;
    border-radius: 35px;
    padding: 10px 20px;
    /* display: flex;
    flex-wrap: nowrap;
    justify-content: space-between; */
    position: relative;
}

.awards-stage-text {
    font-size: 17px;
    z-index: 2;
    position: relative;
}

.awards-stage-text p {
    margin-bottom: 15px;
}

.awards-stage-text li {
    margin-bottom: 15px;
    list-style-position: inside;
}

.awards-stage-text span.awards-stage-date {
    color: #e31485;
}

.awards-stage-text h3 {
    font-size: 17px;
    margin-bottom: 10px;
    color: #ff1795;
    text-transform: none;
}

.awards-stage-icon {
    /* align-self: flex-end;
    padding-left: 40px; */
    position: absolute;
    right: 40px;
    z-index: 1;
    opacity: 0.5;
    top: 20%;
}

#awards-video {
    height: 200vh;
    position: relative;
}

#awards-video #video-sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

#awards-video #video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

#experts {
    position: relative;
    z-index: 10;
    background: #fff;
    margin-top: -100vh;
}

#experts h3 {
    font-size: 45px;
    color: #cd178b;
    margin-bottom: 40px;
    text-transform: uppercase;
}

#experts-text {
    font-size: 17px;
    color: #000;
    padding-bottom: 40px;
}

#awards-nominations {
    position: relative;
    z-index: 10;
    background: #0e0013;
    padding-top: 70px;
}

#aboutus {
    position: relative;
    z-index: 10;
    background: #0e0013;
    padding-top: 90px;
}

#aboutus .container {
    background: url('images/aboutus.jpg') no-repeat right top;
}

#aboutus #aboutus-text {
    max-width:935px;
}

#aboutus {
    position: relative;
    z-index: 10;
    background: #0e0013;
    padding-top: 90px;
}

#aboutus h2 {
    color:#cd178b;
    text-transform: uppercase;
    font-size: 45px;
    padding-bottom: 40px;
}

#aboutus p {
    color:#fff;
    font-size: 22px;
    padding-bottom: 35px;
}

#aboutus p#about-underheader {
    font-size: 27px;
}

#aboutus p#about-header {
    font-size: 35px;
    text-transform: uppercase;
}

#aboutus p#about-violet {
    color:#cd178b;
}

#aboutus div#about-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

#contacts {
    padding-top: 70px;
    position: relative;
    z-index: 10;
    background: #0e0013;
}

#contacts .container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    gap:40px;
}

.contact {
    /* flex: 0 0 33.33%; */
    flex: 1;
}

.contact-three {
    /* flex: 0 0 33.33%; */
    width: 30%;
}

#contacts h2 {
    text-transform: uppercase;
    color: white;
    font-size: 20px;
    display: block;
    height: 35px;
}

.contact-desc {
    /* border-top: 2px white solid; */
    display: flex;
    padding-top: 40px;
    padding-bottom: 50px;
}

.contact-desc-name {
    font-size: 20px;
    text-transform: uppercase;
    color: var(--primary-orange);
    width: 150px;
    padding-right:20px;
}

.contact-desc-desc {
    width: 300px;
}

.contact-desc-desc-phone a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

.contact-desc-desc-mail a {
    text-decoration: none;
    color: white;
}

footer {
    position: relative;
    z-index: 10;
    background: #0e0013;
}

footer .container {
    display: flex;
    padding: 40px 0;
    gap: 42px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-logo img {
    
}

footer a {
    display: inline-block;
}

.footer-menu-archives-archives {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
    align-items: center;
}

.menu__link {
    padding: 0.83vw;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    text-decoration: none;
}

.menu__link {
    color: #fff;
}

.footer-socials {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.footer-socials img {
    margin: 0 15px 30px 15px;
    width: auto;
    display: block;
}

footer p:not(:last-of-type) {
    margin: 0 0 30px;
}

footer p a, footer p {
    text-align: left;
    color: #fff;
    font-weight: bold;
}

/* Внешний светящийся контур (теперь это ссылка) */
.neon-link {
    display: inline-block;
    text-decoration: none; /* Убираем дефолтное подчеркивание ссылки */
    background: transparent;
    border: 2px solid #ff007a;
    border-radius: 20px;
    position: relative;
    top:20px;
    transition: all 0.3s ease;
    
    /* Неоновое свечение */
    box-shadow: 
        0 0 10px #ff007a, 
        0 0 25px rgba(255, 0, 122, 0.6),
        inset 0 0 10px #ff007a;
}

/* Внутреннее тело кнопки со стеклянным бликом */
.neon-link-content {
    display: block;
    background: linear-gradient(to bottom, 
        rgba(40, 10, 35, 0.9) 0%, 
        rgba(40, 10, 35, 0.9) 50%, 
        rgba(20, 5, 18, 0.95) 50%, 
        rgba(20, 5, 18, 0.95) 100%
    );
    border: 1px solid rgba(255, 0, 122, 0.4);
    border-radius: 14px;
    padding: 14px 40px;
    
    /* Оформление текста */
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.4;
    text-align: center;
    text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

/* Эффект при наведении (Hover) */
.neon-link:hover {
    transform: translateY(-2px); /* Легкое приподнятие, характерное для ссылок */
    box-shadow: 
        0 5px 15px #ff007a, 
        0 5px 40px rgba(255, 0, 122, 0.8),
        inset 0 0 15px #ff007a;
}

.neon-link:hover .neon-link-content {
    background: linear-gradient(to bottom, 
        rgba(60, 15, 52, 0.9) 0%, 
        rgba(60, 15, 52, 0.9) 50%, 
        rgba(35, 8, 32, 0.95) 50%, 
        rgba(35, 8, 32, 0.95) 100%
    );
    text-shadow: 0 0 8px #ffffff;
}

/* Эффект при клике (Active) */
.neon-link:active {
    transform: translateY(1px);
    box-shadow: 
        0 2px 8px #ff007a, 
        0 2px 20px rgba(255, 0, 122, 0.6),
        inset 0 0 10px #ff007a;
}

/* Адаптивность под планшеты и мобильные */
@media (max-width: 1300px) {
    .burger {
        display: block;
        z-index: 100;
    }

    .burger.active::before {
        transform: rotate(45deg);
        top: 18px;
    }

    .burger.active span {
        opacity: 0;
    }

    .burger.active::after {
        transform: rotate(-45deg);
        bottom: 18px;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--bg-dark);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: 0.5s;
        z-index: 90;
    }

    .nav.open {
        right: 0;
    }

    #nav a {
        font-size: 5vw;
        margin: 30px 0;
    }

    .rau-hero-content {
        background:url('images/awards-star.jpg') no-repeat 0px center;
    }
}

@media (max-width: 1200px) {
    .rau-hero-content {
        background:url('images/awards-star.jpg') no-repeat -150px center;
    }

    #aboutus .container {
        background: none;
        position: relative;
    }

    #aboutus .container::before {
        background:url('images/aboutus.jpg') no-repeat right top;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.3;
        z-index: -1;
    }
}

@media (max-width: 1024px) {
    .rau-hero-content {
        background:url('images/awards-star.jpg') no-repeat -200px center;
    }

    .timeline-wrapper {
        display:flex;
        flex-wrap:wrap;
        gap: 20px;
        padding-top: 0;
        justify-content: center;
    }
    
    .timeline-axis-arrow {
        display: none; /* Отключаем горизонтальную стрелку */
    }

    .node-block {
        width: 195px;
        height: 220px;
        border-left: 1px #ff53bc solid;
        border-top: 1px #ff53bc solid;
        border-radius: 35px;
        background: #240521;
        position: relative;
        z-index: 1;
    }

    .node-date {
    }
    
    .node-date::after {
        display: none !important;
    }
    
    .node-content {
        border-radius: 24px;
        margin-top: 0px;
        width: 100%;
        min-height: auto;
    }

    /* .rau-header .rau-nav { display: none; } */
    .rau-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .rau-hero-right { align-items: center; }
    .timeline-container { grid-template-columns: 1fr; gap: 24px; }
    .timeline-container::before { display: none; }
}

@media (max-width: 1000px) {
    .contact-three {
        width: 100%;
    }

    .contact-three-two h2 {
        height: 0px!important;
    }

    .contact-three-three h2 {
        height: 0px!important;
    }

    .contact-three .contact-desc {
        padding-top: 0px;
        padding-bottom: 20px;
    }
}

@media (max-width: 955px) {
    .rau-hero-content {
        background:none;
        position: relative;
    }
    .rau-hero-content::before {
        background:url('images/awards-star.jpg') no-repeat right center;
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.3;
        z-index: -1;
    }
    
    /* .contact-desc {
        padding-top: 10px;
        padding-bottom: 50px;
    }

    .contact:nth-child(2) .contact-desc {
        padding-bottom: 0px;
    }

    .contact:nth-child(3) .contact-desc {
        border-top: none;
        padding-bottom: 0px;
    }

    .contact:nth-child(4) .contact-desc {
        border-top: none;
    } */
}

@media (max-width: 815px) {
    #aboutus #about-buttons {
        justify-content: center;
    }
}

@media (max-width: 730px) {
    .contact-three {
        width: auto;
    }
}

@media (max-width: 485px) {
    .rau-badge {
        font-size: 35px;
    }

    .rau-main-title {
        font-size: 21px;
    }
}