/* ===== CUSTOM STYLES ===== */

/* Объединенные стили для поиска, wiki и дополнительных функций */



/* ===== SEARCH STYLES ===== */



.wiki-search-container {

    margin-bottom: 2rem;

    display: flex;

    justify-content: center;

}



.wiki-search-wrapper {

    position: relative;

    width: 100%;

    max-width: 500px;

}



.wiki-search-input {

    width: 100%;

    padding: 0.75rem 1rem;

    font-size: 1rem;

    border: 2px solid #e0e0e0;

    border-radius: 8px;

    transition: all 0.3s ease;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

    font-family: inherit;

}



.wiki-search-input:focus {

    outline: none;

    border-color: #667eea;

    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);

    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));

}



.wiki-search-input::placeholder {

    color: #999;

}



.search-results-count {

    position: absolute;

    right: 1rem;

    top: 50%;

    transform: translateY(-50%);

    font-size: 0.85rem;

    color: #999;

    pointer-events: none;

}



/* Hidden articles when searching */

.wiki-article.hidden {

    display: none;

}



/* Hidden categories when all articles are hidden */

.wiki-category.hidden {

    display: none;

}



/* Highlight search results */

.wiki-article.search-highlight {

    animation: highlightPulse 0.3s ease;

}



@keyframes highlightPulse {

    0% {

        background-color: #fff;

    }

    50% {

        background-color: #fffacd;

    }

    100% {

        background-color: #fff;

    }

}



/* Responsive search */

@media (max-width: 768px) {

    .wiki-search-wrapper {

        max-width: 100%;

    }



    .wiki-search-input {

        padding: 0.65rem 0.85rem;

        font-size: 0.95rem;

    }



    .search-results-count {

        font-size: 0.8rem;

        right: 0.85rem;

    }

}



/* ===== WIKI STYLES ===== */



/* Принудительное отображение wiki-контента */

.wiki-content {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

}



.wiki-content section {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    transform: translateY(0) !important;

}



.wiki-content .wiki-main {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

}



.wiki-content .wiki-article {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

}



.wiki-content section h2 {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

    transform: translateY(0) !important;

}



.wiki-content section p {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

}



.wiki-content section ul,

.wiki-content section li {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

}



/* Wiki-блоки показываем, но они будут анимироваться отдельно */

.wiki-highlight, 

.wiki-warning, 

.wiki-info {

    display: block !important;

    visibility: visible !important;

}



/* Показываем контейнер */

.container {

    display: block !important;

    visibility: visible !important;

}



/* Показываем сайдбар */

.wiki-sidebar {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

}



/* Показываем навигацию */

.wiki-breadcrumb {

    display: block !important;

    visibility: visible !important;

    opacity: 1 !important;

}



/* ===== АНИМАЦИЯ WIKI-БЛОКОВ ===== */



/* Начальное состояние для анимации */

.wiki-block-animate {

    opacity: 0;

    transform: translateY(30px);

    transition: all 0.8s ease;

}



/* Финальное состояние после появления в viewport */

.wiki-block-visible {

    opacity: 1 !important;

    transform: translateY(0) !important;

}



/* ===== ДОПОЛНИТЕЛЬНЫЕ СТИЛИ ===== */



/* Улучшенные переходы для wiki-элементов */

.wiki-content section {

    transition: opacity 0.3s ease, transform 0.3s ease;

}



/* Hover эффекты для wiki-блоков */

.wiki-highlight:hover,

.wiki-warning:hover,

.wiki-info:hover {

    transform: translateY(-2px);

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

    transition: all 0.3s ease;

}



/* Плавные переходы для навигации */

.wiki-menu a {

    transition: color 0.2s ease, background-color 0.2s ease;

}



/* Анимация для breadcrumb */

.wiki-breadcrumb a {

    transition: color 0.2s ease;

}



.wiki-breadcrumb a:hover {

    opacity: 0.8;

}



/* ===== WIKI SECTION STYLES ===== */



.wiki-section {

    padding: 2rem 0;

    background: #f8f9fa;

    min-height: 70vh;

}



.wiki-content {

    display: block;

}



/* Category Styles */

.wiki-category {

    margin-bottom: 3rem;

}



.category-title {

    font-size: 1.8rem;

    color: #333;

    margin-bottom: 1.5rem;

    padding-bottom: 0.75rem;

    border-bottom: 3px solid #667eea;

    display: inline-block;

    font-weight: 700;

}



/* Articles Grid */

.articles-grid {

    display: grid;

    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));

    gap: 1.5rem;

    margin-bottom: 2rem;

}



/* Wiki Article Card */

.wiki-article {

    background: white;

    border-radius: 12px;

    padding: 1.5rem;

    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    border-left: 4px solid #667eea;

    display: flex;

    flex-direction: column;

    height: 100%;

}



.wiki-article:hover {

    transform: translateY(-8px);

    box-shadow: 0 12px 24px rgba(102, 126, 234, 0.2);

    border-left-color: #764ba2;

}



.article-icon {

    font-size: 2.5rem;

    margin-bottom: 0.75rem;

    display: inline-block;

}



.wiki-article h3 {

    font-size: 1.1rem;

    color: #333;

    margin-bottom: 0.75rem;

    line-height: 1.4;

    flex-grow: 1;

}



.wiki-article h3 a {

    color: inherit;

    text-decoration: none;

    transition: color 0.2s ease;

}



.wiki-article h3 a:hover {

    color: #667eea;

}



.wiki-article p {

    color: #666;

    font-size: 0.95rem;

    line-height: 1.5;

    margin-bottom: 1rem;

    flex-grow: 1;

}



.read-more {

    display: inline-block;

    color: #667eea;

    text-decoration: none;

    font-weight: 600;

    transition: all 0.2s ease;

    margin-top: auto;

}



.read-more:hover {

    color: #764ba2;

    transform: translateX(4px);

}



/* Responsive Grid */

@media (max-width: 1024px) {

    .articles-grid {

        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));

    }

}



@media (max-width: 768px) {

    .articles-grid {

        grid-template-columns: 1fr;

    }



    .category-title {

        font-size: 1.4rem;

    }



    .wiki-article {

        padding: 1.25rem;

    }

}



/* Page Header Enhancement */

.page-header {

    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

    color: white;

    padding: 3rem 0;

    text-align: center;

    margin-bottom: 2rem;

}



.page-header h1 {

    font-size: 2.5rem;

    margin-bottom: 0.5rem;

    font-weight: 700;

}



.page-header p {

    font-size: 1.1rem;

    opacity: 0.95;

}
/* ===== ARTICLE PAGE STYLES ===== */

/* Wiki блоки - основные разделы статьи */
.wiki-block {
    padding: 2.5rem 0;
    margin-bottom: 3rem;
}

/* Заголовки в статье */
.wiki-block h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #667eea;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wiki-block h3 {
    font-size: 1.5rem;
    color: #444;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.wiki-block h4 {
    font-size: 1.2rem;
    color: #555;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

/* Параграфы */
.wiki-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* Списки */
.wiki-block ul,
.wiki-block ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.wiki-block li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.8rem;
    position: relative;
}

.wiki-block ul li::marker {
    color: #667eea;
    font-size: 1.2em;
}

.wiki-block ul li {
    padding-left: 0.5rem;
}

/* Вложенные списки */
.wiki-block ul ul,
.wiki-block ul ol,
.wiki-block ol ul,
.wiki-block ol ol {
    margin: 0.8rem 0 0.8rem 1.5rem;
}

/* Код блоки */
.code-block,
pre.code-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    overflow-x: auto;
    margin: 1.5rem 0;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Изображения */
.wiki-block img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
    display: block;
    transition: all 0.3s ease;
}

.wiki-block img:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

/* Strong/Bold текст */
.wiki-block strong {
    color: #333;
    font-weight: 700;
}

/* Специальные блоки с классом glassmorphism */
.glassmorphism {
    /* Стили убраны для чистого вида */
}

/* Отступы между секциями */
.wiki-content > div:not(:last-child) {
    margin-bottom: 3rem;
}

/* Улучшенная читаемость для длинного текста */
.wiki-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Адаптивность */
@media (max-width: 768px) {
    .wiki-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .wiki-block h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }
    
    .wiki-block h3 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
    }
    
    .wiki-block h4 {
        font-size: 1.1rem;
    }
    
    .wiki-block p,
    .wiki-block li {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .code-block,
    pre.code-block {
        padding: 1rem;
        font-size: 0.85rem;
    }
}

/* Плавное появление блоков */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

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

/* ===== ECO HOSTING PAGE STYLES ===== */

/* Tariffs Section */
.tariffs {
    padding: 4rem 0;
    background: #fff;
}

.tariffs h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 700;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.tariff-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.tariff-card.popular {
    border-color: #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

.tariff-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.tariff-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
}

.tariff-header h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tariff-specs {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.tariff-specs ul {
    list-style: none;
    padding: 0;
}

.tariff-specs li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    font-size: 1rem;
}

.tariff-specs li:last-child {
    border-bottom: none;
}

.tariff-specs li strong {
    color: #333;
    font-weight: 600;
}

.tariff-card .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: auto;
}

/* Advantages Section */
.advantages {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.advantages h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 700;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.advantage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.advantage-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.advantage-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

/* Limitations Section */
.limitations {
    padding: 4rem 0;
    background: #fff;
}

.limitations h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.limitations-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.limitations-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.limitations-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.limitations-table thead th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.limitations-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s ease;
}

.limitations-table tbody tr:last-child {
    border-bottom: none;
}

.limitations-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.limitations-table tbody td {
    padding: 1.2rem 1.5rem;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    vertical-align: middle;
}

.limitations-table tbody td:first-child {
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    min-width: 250px;
}

.limitation-icon {
    font-size: 1.3rem;
    margin-right: 0.5rem;
    display: inline-block;
    vertical-align: middle;
}

.upgrade-notice {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.3);
}

.upgrade-notice h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.upgrade-notice p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.upgrade-notice .btn {
    background: white;
    color: #667eea;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
}

.upgrade-notice .btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* FAQ Section - Enhanced */
.faq {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .tariffs-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .tariff-card.popular {
        transform: scale(1);
    }

    .tariff-card.popular:hover {
        transform: translateY(-10px);
    }

    .tariff-header h3 {
        font-size: 1.5rem;
    }

    .price .amount {
        font-size: 2rem;
    }

    .advantages h2,
    .limitations h2,
    .tariffs h2,
    .faq h2 {
        font-size: 1.8rem;
    }

    .upgrade-notice {
        padding: 2rem 1.5rem;
    }

    .upgrade-notice h3 {
        font-size: 1.5rem;
    }

    .upgrade-notice p {
        font-size: 1rem;
    }

    /* Адаптивная таблица ограничений */
    .limitations-table-wrapper {
        margin: 0 -15px 3rem -15px;
        border-radius: 0;
    }

    .limitations-table thead th {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .limitations-table tbody td {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .limitations-table tbody td:first-child {
        min-width: 180px;
        font-size: 0.95rem;
    }
}

/* Мобильные устройства (до 576px) */
@media (max-width: 576px) {
    /* Таблица ограничений для мобильных */
    .limitations h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .limitations-table-wrapper {
        margin: 0 0 2rem 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow-x: visible !important;
    }

    /* Скрываем заголовок таблицы */
    .limitations-table thead {
        display: none !important;
    }

    .limitations-table {
        width: 100% !important;
        display: block !important;
        border-radius: 0 !important;
    }

    .limitations-table tbody {
        display: block !important;
        width: 100% !important;
    }

    .limitations-table tbody tr {
        display: block !important;
        margin-bottom: 1rem !important;
        border: none !important;
        background: white !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08) !important;
        overflow: hidden !important;
        border-left: 4px solid #667eea !important;
    }

    .limitations-table tbody tr:hover {
        background: white !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15) !important;
    }

    .limitations-table tbody td {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        border: none !important;
        text-align: left !important;
        vertical-align: top !important;
    }

    .limitations-table tbody td:first-child {
        min-width: auto !important;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: white !important;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        padding: 0.9rem 1rem !important;
        white-space: normal !important;
        box-shadow: none !important;
    }

    .limitations-table tbody td:last-child {
        padding: 1rem !important;
        color: #555 !important;
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }

    .limitation-icon {
        font-size: 1.2rem !important;
        margin-right: 0.5rem !important;
    }

    .upgrade-notice {
        padding: 1.5rem 1rem !important;
        margin: 0 !important;
        border-radius: 12px !important;
    }

    .upgrade-notice h3 {
        font-size: 1.2rem !important;
        margin-bottom: 0.8rem !important;
    }

    .upgrade-notice p {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }

    .upgrade-notice .btn {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.2rem !important;
        display: inline-block !important;
        width: auto !important;
    }
}

/* ===== STYLES FROM HTML FILES ===== */

/* Country selection and scroll-to-top */
.country-item.selected {
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
}

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.dropdown.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Breadcrumbs Styles */
.breadcrumbs {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 0 20px;
    color: white;
}

.breadcrumbs .page-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumbs .page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.breadcrumbs nav {
    padding: 15px 0;
}

.breadcrumbs nav ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.breadcrumbs nav ol li {
    display: flex;
    align-items: center;
}

.breadcrumbs nav ol li:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs nav ol li a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumbs nav ol li a:hover {
    opacity: 0.8;
}

/* Single Page Styles */
.single-page {
    padding: 80px 0;
    background: #f8f9fa;
}

.single-page .container {
    max-width: 900px;
    background: white;
    padding: 60px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.single-page h3 {
    color: #667eea;
    font-size: 2rem;
    margin-bottom: 30px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 15px;
}

.single-page h4 {
    color: #764ba2;
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.single-page p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.single-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.single-page ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.single-page a {
    color: #667eea;
    text-decoration: none;
}

.single-page a:hover {
    text-decoration: underline;
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.bg-light {
    background-color: #f8f9fa !important;
}

main {
    background: #fff;
}

/* Card Styles */
.card {
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

/* Button Primary Styles */
.btn-primary {
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Button Success Styles */
.btn-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: all 0.3s;
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

/* Table Styles */
.table {
    border-radius: 10px;
    overflow: hidden;
}

/* Alert Styles */
.alert {
    border-radius: 10px;
    border: none;
}

/* Responsive Adjustments for Breadcrumbs and Single Page */
@media (max-width: 768px) {
    .breadcrumbs .page-header h2 {
        font-size: 1.8rem;
    }
    
    .section {
        padding: 40px 0;
    }

    .single-page .container {
        padding: 30px 20px;
    }
}

/* ===== DOCUMENTS PAGE STYLES ===== */
.documents-simple {
    padding: 4rem 0;
    background: #fff;
    min-height: 40vh;
}

.documents-simple .container {
    max-width: 800px;
}

.documents-simple p {
    font-size: 1.1rem;
    line-height: 2;
    color: #333;
    margin-bottom: 1rem;
}

.documents-simple p:first-child {
    margin-bottom: 2rem;
}

.documents-simple a {
    color: #667eea;
    text-decoration: none;
    transition: color 0.2s ease;
}

.documents-simple a:hover {
    color: #764ba2;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .documents-simple {
        padding: 2rem 0;
    }

    .documents-simple p {
        font-size: 1rem;
    }
}

/* ===== DOMAIN REGISTRATION PAGE STYLES ===== */
.search-form {
    text-align: center;
    padding: 2rem 0;
}

.search-form h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-full-width {
    max-width: 500px;
    margin: 0 auto;
}

.search-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.domain-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.domain-input:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.search-btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

.search-hint {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.domain-zones {
    padding: 4rem 0;
    background: #fff;
}

.domain-zones h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 3rem;
    font-weight: 700;
}

.zones-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.zones-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.zones-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.zones-table thead th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    color: white;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zones-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background 0.2s ease;
}

.zones-table tbody tr:last-child {
    border-bottom: none;
}

.zones-table tbody tr:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.zones-table tbody td {
    padding: 1.2rem 1.5rem;
    color: #555;
    font-size: 1rem;
}

.zones-table tbody td:first-child {
    font-weight: 600;
    color: #333;
}

@media (max-width: 768px) {
    .logo h1 {
        font-size: 1.3rem;
    }

    .search-form h2 {
        font-size: 1.6rem;
    }

    .form-full-width {
        max-width: 90%;
        padding: 0 1rem;
    }

    .search-input-group {
        flex-direction: column;
        gap: 0.8rem;
    }

    .domain-input {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }

    .search-btn {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        max-width: 200px;
        margin: 0 auto;
    }

    .domain-zones {
        padding: 2rem 0;
    }

    .domain-zones h2 {
        font-size: 1.8rem;
    }

    .zones-table {
        margin: 0 0.5rem;
        border-radius: 8px;
    }

    .zones-table thead th,
    .zones-table tbody td {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.1rem;
    }

    .search-form h2 {
        font-size: 1.4rem;
    }

    .form-full-width {
        max-width: 85%;
        padding: 0 0.5rem;
    }

    .search-btn {
        max-width: 180px;
        padding: 0.8rem 1.5rem;
    }

    .domain-zones h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .zones-table {
        overflow-x: visible;
        margin: 0 0.5rem;
    }

    .zones-table table {
        width: 100%;
        table-layout: fixed;
    }

    .zones-table thead th {
        padding: 0.7rem 0.4rem;
        font-size: 0.7rem;
        letter-spacing: 0.2px;
        word-wrap: break-word;
    }

    .zones-table tbody td {
        padding: 0.7rem 0.4rem;
        font-size: 0.8rem;
        word-wrap: break-word;
    }

    .zones-table tbody td:first-child {
        font-size: 0.85rem;
    }
}

@media (max-width: 460px) {
    .zones-table {
        margin: 0 0.5rem;
    }

    .zones-table thead th {
        padding: 0.6rem 0.3rem;
        font-size: 0.65rem;
        letter-spacing: 0;
    }

    .zones-table tbody td {
        padding: 0.6rem 0.3rem;
        font-size: 0.75rem;
    }

    .zones-table tbody td:first-child {
        font-size: 0.8rem;
    }
}
