/* Модерни UI Настройки */
:root {
    --primary-color: #026873; /* #0f4c81 Класическо синьо - символ на институционалност и сигурност */
    --secondary-color: #f2cb05; /* #16a085 Модерно зелено за акценти */
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
    --text-color: #333;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

/* ХЕДЪР */
.global-header {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 10px 0;
}

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
}

.logo a span {
    color: var(--secondary-color);
}

.nav-menu ul {
    display: flex;
    list-style: none;
}

.nav-menu ul li {
    margin-left: 25px;
}

.nav-menu ul li a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-menu ul li a:hover, .nav-menu ul li a.active {
    color: #fff;
    background-color: var(--primary-color);
}

/* СЛАЙДЕР */
/*.slider-section {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    color: #fff;
    max-width: 800px;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 300;
}

*/

.slider-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Или каквато височина използвате за слайдера ви */
    overflow: hidden;
}

/* Контейнер за фоновете */
.slider-backgrounds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Индивидуален бекграунд слайд */
.bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Изключително плавна смяна на картините */
}

/* Активната картина става видима */
.bg-slide.active {
    opacity: 1;
}

/* Контейнер за постоянния текст */
.slider-overlay-content {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    z-index: 2; /* Задължително над фоновете */
    display: flex;
    align-items: center; /* Центрира съдържанието вертикално */
    pointer-events: none; /* Позволява кликане през празните зони, ако е нужно */
}

/* Вътрешно съдържание - връщаме активността на бутоните */
.slider-overlay-content .slide-content {
    pointer-events: auto; 
    color: #ffffff;
    /* Вашите съществуващи стилове за ширини, шрифтове на h1 и p */
}

/* Центриране на целия контейнер */
.slide-content-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    color: #ffffff;
    padding: 20px;
}

/* Главно заглавие */
.slider-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Подзаглавие */
.slider-subtitle {
    font-size: 2.25rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

/* Контейнер за бутоните */
.slider-action-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

/* Контурен бутон (вляво) */
.btn-outline-slider {
    padding: 14px 30px;
    border: 2px solid #ffffff;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-slider:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Плътен бутон (вдясно - тюркоаз) */
.btn-filled-slider {
    padding: 14px 30px;
    background-color: #52b7aa; /* Тюркоазен цвят като на снимката */
    border: 2px solid #52b7aa;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-filled-slider:hover {
    background-color: #3fa194;
    border-color: #3fa194;
}

/* КАРТИ ЗА ТАЙМЕРА (COUNTDOWN) */
.slider-countdown {
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown-box {
    background: rgba(0, 0, 0, 0.65); /* Тъмен полупрозрачен фон */
    border-radius: 6px;
    width: 120px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-num {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.5px;
}

.countdown-divider {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    animation: blink 1s infinite; /* Ефект на мигане за двете точки */
}

@keyframes blink {
    50% { opacity: 0.4; }
}

/* Адаптивност за мобилни телефони */
@media (max-width: 768px) {
    .slider-main-title { font-size: 2.2rem; }
    .slider-subtitle { font-size: 1rem; margin-bottom: 25px; }
    .slider-action-buttons { flex-direction: column; width: 100%; max-width: 300px; gap: 10px; margin-bottom: 40px; }
    .slider-countdown { gap: 5px; }
    .countdown-box { width: 75px; padding: 12px 5px; }
    .countdown-num { font-size: 1.6rem; }
    .countdown-label { font-size: 0.65rem; }
    .countdown-divider { font-size: 1.2rem; }
}

/* БУТОНИ */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-right: 15px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: #fff;
}

.btn-primary:hover {
    background-color: #117a65;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #fff;
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* СЕКЦИЯ ABOUT THE CONFERENCE */
.about-section {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #666;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* СЕКЦИЯ PUBLICATION OPTIONS */
.publications-promo {
    background: linear-gradient(135deg, var(--primary-color), #0b375e);
    color: #fff;
    padding: 0 0 60px 0;
    text-align: center;
}

.promo-content h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
}

.promo-content p {
    max-width: 70%;
    margin: 0 auto 25px auto;
    font-weight: 300;
}

.promo-content p a {
    color: #fff;
    
}

/* СЕКЦИЯ NUMBERS (БРОЯЧИ) */
.stats-section {
    padding: 80px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    background: var(--light-color);
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.stat-card .counter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.stat-card p {
    font-size: 1rem;
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
}

/* ФУТЪР */
.global-footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 30px 0;
    text-align: center;
    margin-top: 50px;
    font-size: 0.95rem;
}

/* Допълнителен пад за вътрешните страници */
.page-padding {
    padding: 50px 0;
}

/* АНИМАЦИИ */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* АДАПТИВНОСТ (RESPONSIVE DESIGN) */
@media (max-width: 768px) {
    .header-container { flex-direction: column; gap: 15px; }
    .about-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .slide-content h1 { font-size: 2rem; }
    .nav-menu ul li { margin: 0 10px; }
}

 .container {
            max-width: 80%;
            margin: 0 auto;
        }

        .intro-text {
            text-align: center;
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 50px;
            font-weight: 500;
        }

        /* Основен стил за картите */
        .card {
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            margin-bottom: 40px;
            overflow: hidden;
            display: table; /* Използва се table за съвместимост и структура */
            width: 100%;
        }

        .card-image, .card-content {
            display: table-cell;
            vertical-align: middle;
           /* width: 50%;*/
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            min-height: 350px;
        }

        .card-content {
            padding: 40px;
            box-sizing: border-box;
        }

        .card-content h2 {
            margin-top: 0;
            font-size: 1.4rem;
            color: #2c3e50;
        }

        .card-content p {
            color: #7f8c8d;
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .card-content ul {
            padding-left: 20px;
            margin: 0;
        }

        .card-content li {
            margin-bottom: 8px;
            font-size: 0.95rem;
        }

        /* ШАХМАТНО ПОДРЕЖДАНЕ */

        /* Карта 1 и 3 (Текст отдясно, подравнен вляво) */
        .card-left-img .card-content {
            text-align: left;
        }

        /* Карта 2 (Текст отляво, подравнен вдясно) */
        .card-right-img .card-image {
            /* Сменяме местата чрез размяна на посоката при изобразяване */
            direction: rtl;
        }
        .card-right-img .card-content {
            direction: ltr; /* Връщаме нормалната посока на четене на текста */
            text-align: left;
        }
        .card-right-img .card-content ul {
            list-style-position: inside;
            padding-right: 0;
        }

  /* КЛЮЧОВИ ПРОМЕНИ ЗА СТРУКТУРАТА И ШИРИНАТА */

#proceedings {
    width: 80%;            /* Секцията заема точно 80% от екрана */
    margin: 0 auto;        /* Центрира секцията на екрана */
    /*padding: 80px 0;       /* Изчистваме вътрешните странични отстъпи, за да ползваме пълните 80% */
}

.proceedings-grid {
    display: grid;
    /* Създава 3 колони с еднаква ширина (1fr). 
       Ако екранът се стесни под 300px, автоматично ще ги свали на долния ред */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px;             /* Разстояние между картите */
    width: 100%;
    align-items: start;
    margin-top: 30px;
}

/* ОСТАНАЛИ СТИЛОВЕ ЗА КРАСИВ ИЗГЛЕД НА КАРТИТЕ */

.proceedings-intro {
    margin-bottom: 40px;
    background: #f9fafb;
    padding: 20px;
    border-left: 4px solid #f2cb05;
    border-radius: 4px;
}

.proceedings-intro a {
    color: #1e3a8a;
    text-decoration: underline;
}

.proceedings-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
    /*height: 100%;  /*Прави картите еднакво високи, ако са на един ред */
    display: flex;
    flex-direction: column;
}

.proceedings-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
}

.cover-img {
    width: 100%;
    max-height: 380px;
    object-fit: contain;
    background-color: #f3f4f6;
    border-radius: 6px;
    margin-bottom: 15px;
}

.proceedings-card h4 {
    font-size: 1.1rem;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
}

.card-content {
    font-size: 0.9rem;
    border-top: 1px solid #f3f4f6;
    padding-top: 10px;
    margin-top: auto; /* Избутва съдържанието максимално надолу за подравняване */
}

.presentation-item {
    margin-top: 10px;
    padding-left: 8px;
    border-left: 2px solid #e5e7eb;
    color: #4b5563;
}

.presentation-item a {
    color: #046975;
    font-weight: 600;
    text-decoration: none;
}

.presentation-item a:hover, .download-btn-inline:hover {
    text-decoration: underline;
}

.download-link {
    display: inline-block;
    margin-top: auto; /* Подравнява линка за сваляне най-отдолу на картата */
    color: #046975;
    font-weight: bold;
    text-decoration: none;
}

.download-btn-inline {
    color: #046975;
    font-weight: bold;
    text-decoration: none;
}

.yt-icon {
    height: 18px;
    width: auto;
    vertical-align: middle;
    margin-left: 3px;
}

/* АДАПТИВНОСТ ЗА МОБИЛНИ УСТРОЙСТВА */
@media (max-width: 1024px) {
    #proceedings {
        width: 90%; /* На таблети и телефони заема 90% за по-добро четене */
    }
}

#editorial-board {
    width: 80%;
    margin: 0 auto;
    padding: 0 0 60px 0;
}

/* Стилизация специфично за картите на членовете за запазване на горния стил */
.board-card {
    border-top: 5px solid #f2cb05 !important; /* Запазваме оригиналната дебела зелена линия */
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.board-card h4 {
    font-weight: bold;
    color: #1f2937;
    font-size: 1.15rem;
}

.member-institution {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
}

.member-links {
    margin-top: auto; /* Подравнява иконата за уебсайт винаги най-отдолу */
    display: flex;
    gap: 10px;
}

.social-icon {
    height: 24px;
    width: auto;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    #editorial-board {
        width: 90%;
    }
}

#organizing-committee {
    width: 80%;
    margin: 0 auto;
    padding: 0 0 60px 0;
}

/* Специфични подобрения за картите на организационния комитет */
.committee-card {
    border-top: 5px solid #f2cb05 !important; /* Отличителен тюркоазено-зелен цвят */
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Специален акцент за Председателя на конференцията (Chair) */
.chair-card {
    border-top: 5px solid #f2cb05 !important; /* Малко по-тъмен нюанс за лидера */
    background-gradient: linear-gradient(to bottom, #ffffff, #fcfdfd);
}

.member-dept {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 15px;
    font-style: italic;
}

.member-role {
    display: inline-block;
    padding: 4px 12px;
    background-color: #f3f4f6;
    color: #374151;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-top: auto; /* Позиционира значката най-отдолу в картата */
    align-self: flex-start;
}

/* Отличаваща се значка за Chair */
.chair-badge {
    background-color: #e6f4f1;
    color: #026873;
}

/* Адаптивност за мобилни устройства */
@media (max-width: 1024px) {
    #organizing-committee {
        width: 90%;
    }
}

#paper-requirements {
    width: 80%;
    margin: 0 auto;
    padding: 0 0 60px 0;
}

/* Използваме flexbox за подредба картинка-вляво / текст-вдясно */
.requirements-layout-card {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 35px !important;
    border-top: 5px solid #f2cb05 !important; /* Горният зелен стил */
    background: #ffffff;
    align-items: stretch;
}

/* Контейнер за картинката */
.requirements-image-side {
    flex: 1; /* Отделя пропорционално място за картинката */
    min-width: 300px;
    display: flex;
    align-items: center;
}

.req-img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover; /* Запълва пространството красиво без да се разпъва */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* Контейнер за текстовете */
.requirements-text-side {
    flex: 1.5; /* Даваме малко повече ширина за текста спрямо картинката */
    display: flex;
    flex-direction: column;
}

.requirements-text-side h2 {
    color: #1f2937;
    margin-bottom: 20px;
    font-size: 2rem;
}

.req-paragraph {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Специална кутия за важното съобщение горе (тип акцент) */
.alert-box {
    margin-bottom: 25px;
    padding: 15px 20px;
    font-size: 1.05rem;
    color: #026873;
}

/* Списъкът с изисквания */
.req-list {
    margin-left: 20px;
    margin-bottom: 25px;
    color: #4b5563;
}

.req-list li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.font-muted {
    font-style: italic;
    color: #6b7280;
}

/* Зоната за сваляне най-отдолу */
.template-download-zone {
    margin-top: auto; /* Сваля бутона най-долу за симетрия */
    border-top: 1px solid #f3f4f6;
    padding-top: 20px;
}

.download-btn-styled {
    display: inline-block;
    background-color: #026873;
    color: white !important;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: bold;
    transition: background-color 0.2s;
    margin-bottom: 15px;
}

.download-btn-styled:hover {
    background-color: #04c4d9;
}

.warning-text {
    color: #b91c1c;
    font-size: 0.95rem;
}

/* АДАПТИВНОСТ: На телефони и таблети картинката отива най-отгоре, а текстът под нея */
@media (max-width: 1024px) {
    #paper-requirements {
        width: 90%;
    }
    
    .requirements-layout-card {
        flex-direction: column;
        gap: 25px;
    }
    
    .req-img {
        max-height: 300px;
    }
}

/* Общ контейнер за секциите - 80% ширина */
.conference-section-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
    font-family: inherit;
}

/* ==========================================
   1. СТИЛОВЕ ЗА DEADLINES (Краен срок)
   ========================================== */
.deadlines-layout-card {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 40px !important;
    border-top: 5px solid #f2c405 !important;
    background: #ffffff;
}

.deadlines-left-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deadlines-left-side h2 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 25px;
}

.send-paper-btn {
    display: inline-block;
    background-color: #f29f05;
    color: white !important;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none !important;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: background-color 0.2s;
    text-align: center;
    box-shadow: 0 4px 6px rgba(13, 148, 136, 0.15);
}

.send-paper-btn:hover {
    background-color: #f29f05;
}

.deadlines-right-side {
    flex: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.deadline-item {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    border-left: 3px solid #f2c405;
}

.deadline-icon-box {
    font-size: 1.3rem;
}

.deadline-info {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

/* ==========================================
   2. СТИЛОВЕ ЗА PARTICIPATION FEES (Такси)
   ========================================== */
.section-header-zone {
    margin-bottom: 30px;
}

.sub-title {
    color: #0d9488;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: bold;
}

.section-header-zone h2 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section-intro-text {
    color: #6b7280;
    font-style: italic;
}

/* Специфична решетка за цените */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    border-top: 4px solid #f2c405 !important;
    padding: 25px !important;
    text-align: left;
    transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.pricing-card h4 {
    color: #026873;
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.pricing-card p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Специален акцент за безплатната опция */
.free-card {
    border-top: 4px solid #f2c405 !important;
    background: #e6f4f1;
}

/* ==========================================
   3. СТИЛОВЕ ЗА PAYMENT (Плащане)
   ========================================== */
.payment-layout-card {
    padding: 40px !important;
    border-top: 5px solid #f2c405 !important;
    background: #ffffff;
}

.payment-layout-card h2 {
    color: #1f2937;
    font-size: 2rem;
    margin-bottom: 15px;
}

.payment-notice {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    border-top: 1px solid #f3f4f6;
    padding-top: 30px;
}

.payment-col h5 {
    color: #026873;
    font-size: 1.1rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.bank-details-box {
    background: #f9fafb;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
}

.monospaced-text {
    font-family: 'Courier New', Courier, monospace;
    font-weight: bold;
    color: #111827;
}

.payment-reason-text {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* ==========================================
   4. МОБИЛНА АДАПТИВНОСТ (Responsive)
   ========================================== */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 карти на таблет */
    }
}

@media (max-width: 900px) {
    .conference-section-wrapper {
        width: 90%; /* По-широко за малки екрани */
    }
    
    .deadlines-layout-card, .payment-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .deadlines-right-side {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr; /* 1 карта на телефон */
    }
}

/* Основен контейнер на тага в слайдера */
.slider-conference-tag {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.92); /* Бял фон с лека прозрачност */
    backdrop-filter: blur(8px); /* Модерен стъклен ефект */
    -webkit-backdrop-filter: blur(8px);
    padding: 16px 28px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); /* Дълбока сянка за обем */
    border: 1px solid rgba(255, 255, 255, 0.5);
    gap: 24px;
    margin-bottom: 25px; /* Разстояние до главното заглавие */
    animation: fadeInUp 0.8s ease-out; /* Плавна анимация при поява */
}

/* Календарно балонче (ляво) */
.tag-calendar-badge {
    background: #026873; /* Тъмносин/Тюркоазен корпоративен цвят */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(2, 104, 115, 0.3);
}

.badge-month {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    line-height: 1;
    margin-bottom: 2px;
}

.badge-day {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

/* Текстова секция (дясно) */
.tag-text-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tag-uppercase-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #0d9488; /* Светъл тюркоаз */
    letter-spacing: 1.5px;
    font-weight: 700;
    margin-bottom: 2px;
}

.tag-main-date {
    font-size: 1.4rem;
    color: #1f2937; /* Тъмно сиво, почти черно */
    font-weight: 800;
    margin: 0 0 4px 0 !important; /* Премахва дефолтните марджини на h3 */
    line-height: 1.2;
}

.tag-location {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

/* Анимация за вход (по избор) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Адаптивност за мобилни устройства */
@media (max-width: 480px) {
    .slider-conference-tag {
        padding: 12px 18px;
        gap: 15px;
        width: 100%; /* Заема целия екран на телефон */
        box-sizing: border-box;
    }
    
    .tag-calendar-badge {
        width: 55px;
        height: 55px;
    }
    
    .badge-day {
        font-size: 1.3rem;
    }
    
    .tag-main-date {
        font-size: 1.15rem;
    }
}