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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* легкое фоновое свечение */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle at 20% 30%, rgba(255, 59, 155, 0.1) 0%, transparent 60%),
                radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.1) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

/* все блоки со скругленными углами */
.hero, .card, .stat-item, .social-item-vertical, 
.price-card, .btn, .btn-small, .modal-content, 
.event-badge, .footer-note {
    border-radius: 30px !important;
}

.btn-small, .event-badge, .stat-item {
    border-radius: 50px !important;
}

/* анимации свечения */
@keyframes borderGlow {
    0% { border-color: #ff3b9b; box-shadow: 0 0 10px #ff3b9b, 0 0 20px #ff3b9b, inset 0 0 8px rgba(255, 59, 155, 0.3); }
    50% { border-color: #bf4dff; box-shadow: 0 0 20px #bf4dff, 0 0 35px #bf4dff, inset 0 0 12px rgba(191, 77, 255, 0.3); }
    100% { border-color: #ff3b9b; box-shadow: 0 0 10px #ff3b9b, 0 0 20px #ff3b9b, inset 0 0 8px rgba(255, 59, 155, 0.3); }
}

@keyframes cardHoverGlow {
    0% { border-color: #ff3b9b; box-shadow: 0 0 15px #ff3b9b, 0 0 30px #ff3b9b, 0 0 45px #bf4dff, inset 0 0 15px rgba(255, 59, 155, 0.4); }
    100% { border-color: #bf4dff; box-shadow: 0 0 25px #bf4dff, 0 0 45px #bf4dff, 0 0 70px #ff3b9b, inset 0 0 25px rgba(191, 77, 255, 0.4); }
}

/* HERO БЛОК - картинка справа на половину */
.hero {
    width: 100%;
    margin: 20px 0 30px;
    border: 3px solid #ff3b9b;
    box-shadow: 0 0 25px #ff3b9b, inset 0 0 15px rgba(138, 43, 226, 0.3);
    animation: borderGlow 4s infinite;
    overflow: hidden;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background: rgba(15, 10, 18, 0.9);
}

.hero-content {
    flex: 1;
    padding: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-image {
    flex: 0 0 50%;
    height: 100%;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    background: rgba(15, 10, 18, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    border: 3px solid #ff3b9b;
    box-shadow: 0 0 20px #ff3b9b, inset 0 0 12px rgba(138, 43, 226, 0.3);
}

.event-badge {
    display: inline-block;
    background: linear-gradient(145deg, #ff1a75, #b30086);
    color: white;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0 auto 15px auto;
    border: 2px solid rgba(255, 179, 230, 0.8);
    box-shadow: 0 0 20px #ff1a75;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    text-align: center;
}

h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 0 15px rgba(0,0,0,0.5), 0 0 10px rgba(255, 59, 155, 0.5);
    text-align: center;
}

h1 span {
    display: block;
    font-size: clamp(1rem, 3.5vw, 1.5rem);
    font-weight: 400;
    margin-top: 5px;
    opacity: 0.95;
}

.subhead {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
    color: #ffffff;
    border-left: 3px solid #ff3b9b;
    padding: 12px 16px;
    background: rgba(20, 10, 20, 0.6);
    backdrop-filter: blur(5px);
    box-shadow: -3px 0 15px #ff3b9b;
    line-height: 1.5;
    border-radius: 0 20px 20px 0;
    margin: 10px 0 0;
    text-align: left;
}

/* Статистика */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(20, 10, 20, 0.8);
    padding: 10px 18px;
    border: 2px solid #ff3b9b;
    box-shadow: 0 0 15px #ff3b9b;
    backdrop-filter: blur(8px);
    min-width: 160px;
    justify-content: center;
    transition: 0.3s;
}

.stat-item:hover {
    border-color: #bf4dff;
    box-shadow: 0 0 25px #bf4dff;
    transform: scale(1.02);
}

.stat-icon {
    background: rgba(30, 15, 30, 0.9);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border: 2px solid #ff3b9b;
    box-shadow: 0 0 12px #ff3b9b;
    color: #ffffff;
}

/* Карточки */
.card {
    width: 100%;
    background: rgba(15, 10, 18, 0.9);
    backdrop-filter: blur(20px);
    margin: 0 auto 30px;
    border: 3px solid #ff3b9b;
    box-shadow: 0 0 20px #ff3b9b, inset 0 0 12px rgba(138, 43, 226, 0.3);
    transition: 0.3s;
    overflow: hidden;
    padding: 0;
}

.card:hover {
    animation: cardHoverGlow 0.3s forwards;
    transform: scale(1.01) translateY(-3px);
}

.card-header {
    text-align: center;
    padding: 30px 30px 20px 30px;
    border-bottom: 2px solid rgba(255, 59, 155, 0.3);
    margin-bottom: 10px;
}

.card-header .section-title {
    margin-bottom: 20px;
}

.card-split {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px 30px 30px;
    gap: 20px;
}

.card-left {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

.card-right {
    flex: 0 0 45%;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    background: rgba(15, 10, 18, 0.9);
    border-radius: 30px;
    padding: 15px;
}

.section-title {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #ffffff;
    display: inline-block;
    border-bottom: 3px solid #ff3b9b;
    padding-bottom: 8px;
    text-shadow: 0 0 12px rgba(255, 59, 155, 0.5);
}

/* Вертикальный слайдер с автосменой */
.vertical-slider {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid #ff3b9b;
    box-shadow: 0 0 20px #ff3b9b;
    width: 100%;
}

.vertical-slider-container {
    height: 100%;
    position: relative;
}

.vertical-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.vertical-slide.active {
    opacity: 1;
}

.slider-arrow {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: rgba(30, 15, 30, 0.9);
    border: 2px solid #ff3b9b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
    color: #ff3b9b;
    font-size: 1.2rem;
    box-shadow: 0 0 20px #ff3b9b;
}

.slider-arrow:hover {
    background: #ff3b9b;
    color: #0a0a0a;
    border-color: #ffffff;
    transform: translateX(-50%) scale(1.1);
}

.slider-arrow-up {
    top: 10px;
}

.slider-arrow-down {
    bottom: 10px;
}

/* Индикаторы для вертикального слайдера */
.vertical-indicators {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vertical-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid #ff3b9b;
    cursor: pointer;
    transition: 0.3s;
}

.vertical-indicator.active {
    background: #ff3b9b;
    box-shadow: 0 0 15px #ff3b9b;
    transform: scale(1.3);
}

.vertical-indicator:hover {
    background: #ff3b9b;
}

/* Горизонтальный слайдер */
.horizontal-slider {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid #ff3b9b;
    box-shadow: 0 0 20px #ff3b9b;
    background: rgba(15, 10, 18, 0.9);
}

.horizontal-slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.horizontal-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.horizontal-slide.active {
    opacity: 1;
}

/* Условия МК */
.mk-conditions-text {
    background: rgba(25, 15, 25, 0.7);
    padding: 25px;
    border: 2px solid #ff3b9b;
    box-shadow: 0 0 15px #ff3b9b, inset 0 0 8px rgba(138, 43, 226, 0.3);
    border-radius: 20px;
    font-size: 1.1rem;
    line-height: 2;
    color: #ffffff;
    width: 100%;
}

.mk-conditions-text i {
    color: #ff3b9b;
    margin-right: 10px;
    width: 25px;
    text-align: center;
    filter: drop-shadow(0 0 5px #ff3b9b);
}

/* Соцсети - вертикально слева */
.social-section {
    width: 100%;
    margin-top: 20px;
}

.social-links-vertical {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.social-item-vertical {
    background: rgba(20, 10, 20, 0.9);
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #ff3b9b;
    box-shadow: 0 0 15px #ff3b9b, inset 0 0 8px rgba(138, 43, 226, 0.3);
    transition: 0.3s;
    backdrop-filter: blur(4px);
    border-radius: 50px;
    width: 100%;
}

.social-item-vertical:hover {
    border-color: #bf4dff;
    box-shadow: 0 0 25px #bf4dff, inset 0 0 12px rgba(191, 77, 255, 0.4);
    transform: scale(1.02);
}

.social-item-vertical a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1;
}

.social-item-vertical i {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 5px #ff3b9b);
    width: 30px;
    text-align: center;
}

/* Цены по центру */
.price-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    width: 100%;
}

.price-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    width: 100%;
}

.price-card {
    background: rgba(20, 12, 22, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 20px;
    flex: 1 1 200px;
    max-width: 250px;
    text-align: center;
    border: 3px solid #ff3b9b;
    box-shadow: 0 0 20px #ff3b9b, inset 0 0 12px rgba(138, 43, 226, 0.3);
    transition: 0.3s;
    border-radius: 30px;
}

.price-card:hover {
    border-color: #bf4dff;
    box-shadow: 0 0 30px #bf4dff, inset 0 0 20px rgba(191, 77, 255, 0.3);
    transform: scale(1.02);
}

.price-card.popular {
    border-color: #bf4dff;
    box-shadow: 0 0 25px #bf4dff, inset 0 0 15px rgba(191, 77, 255, 0.3);
}

.price-value {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    font-weight: 800;
    color: #ffffff;
    margin: 12px 0;
    text-shadow: 0 0 12px rgba(255, 59, 155, 0.5);
}

.price-value::before {
    content: '💰';
    font-size: 1.8rem;
    margin-right: 8px;
    color: #ff3b9b;
    display: inline-block;
    vertical-align: middle;
}

.btn, .btn-small {
    display: inline-block;
    background: rgba(30, 15, 30, 0.95);
    color: #ffffff;
    font-weight: 700;
    padding: 14px 30px;
    text-decoration: none;
    border: 2px solid #ff3b9b;
    box-shadow: 0 0 15px #ff3b9b, inset 0 0 8px rgba(138, 43, 226, 0.3);
    transition: 0.2s;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 50px;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn:hover, .btn-small:hover {
    border-color: #bf4dff;
    box-shadow: 0 0 25px #bf4dff, inset 0 0 15px rgba(191, 77, 255, 0.4);
    transform: scale(1.02);
}

/* Модалки */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.modal-content {
    background: rgba(20, 12, 22, 0.98);
    padding: 30px 20px;
    width: 100%;
    max-width: 380px;
    border: 3px solid #ff3b9b;
    box-shadow: 0 0 30px #ff3b9b, inset 0 0 15px rgba(138, 43, 226, 0.4);
    text-align: center;
    animation: modalPop 0.4s;
    margin: 0 auto;
    border-radius: 30px;
}

@keyframes modalPop {
    0% { transform: scale(0.7); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.close {
    color: #ffffff;
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 30px;
    cursor: pointer;
    opacity: 0.8;
    transition: 0.2s;
    text-shadow: 0 0 12px #ff3b9b;
}
.close:hover {
    opacity: 1;
    text-shadow: 0 0 20px #ff3b9b;
}

.contact-block {
    text-align: center;
    margin: 30px 0;
}

.footer-note {
    text-align: center;
    padding: 25px;
    color: #ffffff;
    opacity: 0.8;
    border-top: 2px solid #ff3b9b;
    box-shadow: 0 -10px 25px -15px #ff3b9b;
    width: 100%;
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-image {
        flex: 0 0 250px;
        width: 100%;
        min-height: 250px;
    }
    
    .card-split {
        flex-direction: column;
    }
    
    .vertical-slider {
        height: 300px;
    }
    
    .horizontal-slider {
        height: 250px;
    }
    
    .social-item-vertical {
        padding: 10px 12px;
    }
}

/* Стили для списка анонсов */
.announce-list {
    list-style: none;
    text-align: left;
    margin: 20px auto 0 auto;
    width: 80%;
    max-width: 800px;
}
.announce-item {
    margin-bottom: 15px;
    background: rgba(25, 15, 25, 0.7);
    border-radius: 30px;
    padding: 15px 20px;
    border: 2px solid #ff3b9b;
    box-shadow: 0 0 15px #ff3b9b;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 1rem;
    backdrop-filter: blur(4px);
    text-align: left;
}
.announce-number {
    background: #ff3b9b;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    font-size: 1.1rem;
}
.announce-item:last-child {
    border-color: #bf4dff;
    box-shadow: 0 0 15px #bf4dff;
}
.announce-item:last-child .announce-number {
    background: #bf4dff;
}