/* ============================================
   BTL WORSHIP LANDING PAGE
   Дизайн: Фиолетовая тема с силуэтами
   ============================================ */

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text-primary);
    overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000; /* Поверх всего, включая фиксированное фото */
    transition: all 0.3s ease;
}

.header__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-primary);
}

.header__logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: var(--color-primary);
    border-radius: 50%;
}

.header__logo-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
}

.header__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.header__nav {
    display: flex;
    gap: 2.5rem;
}

.header__nav-link {
    color: var(--color-text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.header__nav-link:hover,
.header__nav-link--active {
    color: var(--color-primary);
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
    width: 100%;
}

/* Language Switcher */
.header__language {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.language-btn {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.language-btn--active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: white;
}

.header__mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.header__mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all 0.3s ease;
}

.header__mobile-menu {
    display: none;
}

@media (max-width: 768px) {
    .header__nav,
    .header__language {
        display: none;
    }

    .header__mobile-toggle {
        display: flex;
    }
    
    .header__mobile-language {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--color-border);
    }

    .header__mobile-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: white;
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
    }

    .header__mobile-menu--open {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }

    .header__mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .header__mobile-link {
        color: var(--color-text-primary);
        text-decoration: none;
        font-weight: 500;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--color-border);
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    margin-top: 60px;
    overflow: hidden;
    /* Gradient fallback пока грузится фото */
    background: linear-gradient(135deg, #6B46C1 0%, #553C9A 50%, #4A2885 100%);
}

/* TINY BLUR - Загружается первым (5-10KB) */
.hero::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/images/hero-bg-tiny.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: blur(20px);
    transform: scale(1.1);
    opacity: 0;
    animation: fadeIn 0.2s ease-out forwards;
    z-index: 0;
}

/* MEDIUM WEBP - Основное изображение (50-100KB) */
.hero::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(135deg, rgba(107, 70, 193, 0.5) 0%, rgba(85, 60, 154, 0.5) 50%, rgba(74, 40, 133, 0.5) 100%),
        url('/images/hero-bg-medium.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.3s forwards;
    z-index: 1;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

/* Декоративные круги - отключены */
.hero__circle {
    display: none; /* Убрали круги */
}

.hero__circle--1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero__circle--2 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 10%;
    animation-delay: 1s;
}

.hero__circle--3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.hero__circle--4 {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: 5%;
    animation-delay: 3s;
}

.hero__circle--5 {
    width: 120px;
    height: 120px;
    top: 50%;
    right: 20%;
    animation-delay: 4s;
}

/* Силуэты людей - отключены */
.hero__silhouettes {
    display: none; /* Убрали силуэты */
}

.hero__container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 10;
}

.hero__content {
    max-width: 900px;
    margin: 0 auto;
}

.hero__subtitle {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: none;
    animation: fadeInUp 1s ease-out;
}

.hero__title {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero__divider {
    width: 120px;
    height: 3px;
    background: white;
    margin: 2rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero__tagline {
    font-size: clamp(1.125rem, 2.5vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    letter-spacing: 0.02em;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero__button {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero__button--primary {
    background: white;
    color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero__button--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hero__button--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero__button--secondary:hover {
    background: white;
    color: var(--color-primary);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 4rem 1.5rem 3rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero__button {
        width: 100%;
        text-align: center;
    }
}

/* ============================================
   EVENT DETAILS SECTION
   ============================================ */
.event-details {
    position: relative;
    padding: 6rem 2rem;
    background: white;
    z-index: 10; /* Поверх фиксированного фото */
}

.event-details__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.event-details__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.event-details__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 4rem;
}
.event-details__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.event-details__grid--two-columns {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto;
}

.event-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.event-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-card__icon--purple {
    background: linear-gradient(135deg, #8B5CF6 0%, #6B46C1 100%);
}

.event-card__icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
    color: white;
}

.event-card__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.event-card__text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.event-card__text strong {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-card__address-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.25rem 0;
    border-bottom: 1px solid transparent;
}

.event-card__address-link:hover {
    color: var(--color-primary-dark);
    border-bottom-color: var(--color-primary);
}

.event-card__address-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.event-card__address-link:hover .event-card__address-icon {
    opacity: 1;
    transform: translateX(2px) translateY(-2px);
}

@media (max-width: 768px) {
    .event-details {
        padding: 4rem 1.5rem;
    }

    .event-details__grid,
    .event-details__grid--two-columns {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ============================================
   REGISTRATION SECTION
   ============================================ */
.registration-section {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #E9D8FD 0%, #D6BCFA 100%);
    z-index: 10; /* Поверх фиксированного фото */
}

.registration-section__container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.registration-section__title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.registration-section__subtitle {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.registration-form-card {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.registration-form__row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.registration-form__group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.registration-form__label {
    display: block;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.registration-form__input,
.registration-form__select,
.registration-form__textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.registration-form__input:focus,
.registration-form__select:focus,
.registration-form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.registration-form__select {
    cursor: pointer;
    background: white;
}

.registration-form__textarea {
    resize: vertical;
    min-height: 100px;
}

.registration-form__submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #8B5CF6 0%, #6B46C1 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.registration-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(107, 70, 193, 0.3);
}

.registration-form__submit:active {
    transform: translateY(0);
}

.registration-form__message {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.registration-form__message svg {
    width: 24px;
    height: 24px;
    stroke-width: 2;
    flex-shrink: 0;
}

.registration-form__message--success {
    background: #D1FAE5;
    color: #065F46;
    border: 1px solid #10B981;
}

.registration-form__message--error {
    background: #FEE2E2;
    color: #991B1B;
    border: 1px solid #EF4444;
}

@media (max-width: 768px) {
    .registration-section {
        padding: 4rem 1.5rem;
    }

    .registration-form-card {
        padding: 2rem 1.5rem;
    }

    .registration-form__row {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   TICKET MODAL
   ============================================ */
.ticket-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ticket-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease-out;
}

.ticket-modal__content {
    position: relative;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.4s ease-out;
}

.ticket-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ticket-modal__close:hover {
    background: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

.ticket-modal__close svg {
    width: 20px;
    height: 20px;
}

/* New Ticket Styles - Two Column Design */
.ticket-new {
    display: flex;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 100%;
}

.ticket__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    border-radius: 50%;
    color: white;
}

.ticket__icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 3;
}

.ticket__title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.ticket__number {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.ticket__number strong {
    font-size: 2rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.ticket__details {
    border-top: 2px dashed var(--color-border);
    padding-top: 2rem;
}

.ticket__event-name {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.ticket__info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ticket__info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ticket__info-item svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.ticket__info-item strong {
    display: block;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.ticket__info-item span {
    color: var(--color-text-secondary);
}

.ticket__map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ticket__map-link:hover {
    color: var(--color-primary-dark);
    transform: translateX(4px);
}

.ticket__download {
    width: 100%;
    padding: 1rem 2rem;
    margin-top: 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.ticket__download:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.ticket__download svg {
    width: 24px;
    height: 24px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .ticket {
        padding: 2rem 1.5rem;
    }

    .ticket__title {
        font-size: 1.5rem;
    }

    .ticket__number {
        font-size: 1rem;
    }

    .ticket__number strong {
        font-size: 1.5rem;
    }

    .ticket__event-name {
        font-size: 1.25rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    background: linear-gradient(135deg, #2D1B69 0%, #1F134A 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 2rem 2rem;
    z-index: 10; /* Поверх фиксированного фото Hero */
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__logo-image {
    width: 70px;
    height: 70px;
    object-fit: contain;
    border-radius: 50%;
}

.footer__logo-icon {
    width: 32px;
    height: 32px;
    color: white;
}

.footer__logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
}

.footer__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer__text {
    line-height: 1.8;
    font-size: 0.9375rem;
}

.footer__contact {
    list-style: none;
}

.footer__contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer__contact svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
    flex-shrink: 0;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__contact a:hover {
    color: white;
}

.footer__social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.footer__social-link:hover {
    background: var(--color-primary-light);
    transform: translateY(-3px);
}

.footer__social-link svg {
    width: 20px;
    height: 20px;
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer__copyright {
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

    .footer__content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ============================================
   MOBILE BACKGROUND FIX (iOS & Android)
   ============================================ */
@media (max-width: 768px) {
    /* Исправление для мобильных устройств */
    .hero::before,
    .hero::after {
        position: absolute; /* Вместо fixed */
        background-attachment: scroll; /* Вместо fixed для iOS */
        background-position: center 40%; /* Сдвигаем вниз чтобы показать руку */
    }

    .hero__content {
        padding: 0 1rem;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero__title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero__divider {
        width: 80px;
        height: 2px;
        margin: 1.5rem auto;
    }

    .hero__tagline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero__actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero__button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Специально для iOS Safari */
@supports (-webkit-touch-callout: none) {
    .hero::before,
    .hero::after {
        background-attachment: scroll;
        background-position: center 35%;
    }
}

/* ============================================
   REGISTRATION CLOSED
   ============================================ */
.registration-closed {
    position: relative;
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #FFF5E6 0%, #FFF9ED 100%);
    z-index: 10; /* Поверх фиксированного фото Hero */
}

.registration-closed__container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: white;
    padding: 1.75rem 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #FFA500;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.15);
}

.registration-closed__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: #FFF3CD;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.registration-closed__icon svg {
    width: 30px;
    height: 30px;
    color: #FF8C00;
}

.registration-closed__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF8C00;
    margin-bottom: 0.625rem;
}

.registration-closed__message {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #666;
}

@media (max-width: 768px) {
    .registration-closed {
        padding: 2rem 1.5rem;
    }

    .registration-closed__container {
        padding: 1.5rem 1.25rem;
    }

    .registration-closed__icon {
        width: 50px;
        height: 50px;
        margin-bottom: 1rem;
    }

    .registration-closed__icon svg {
        width: 26px;
        height: 26px;
    }

    .registration-closed__title {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }

    .registration-closed__message {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
