body {
    font-family: 'Unbounded';
    margin: 0;
    padding: 0;
    background-color: #f1f3f4;
    color: #151515;
    box-sizing: border-box;
    }
    img {
    max-width: 100%;
    display: block;
    }
   .main-nav a {
    text-decoration: none;
    color: white;
   }
    a {
    text-decoration: none;
    color: inherit;
    }
    .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    }


.banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 16px;
    flex-wrap: nowrap;
    overflow: hidden;
  }
  
  .crumb-item {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
    flex-shrink: 1;
    min-width: 0;
  }
  
  
  
  .crumb-item a:hover {
    color: #2563eb;
  }
  
  .crumb-item.active {
    max-width: 400px;
  }
  
  .crumb-icon {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    opacity: 0.6;
  }

.rating-page {
    padding: 20px 0;

}

.rating-container {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}



.rating-page-title {
    font-size: 32px;
    font-weight: 700;
    color: #151515;
    margin: 0 0 24px 0;
    line-height: 1.2;
}



.rating-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    
}

.rating-tab {
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #374151;
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Unbounded';
}

.rating-tab:hover {
    border-color: #2563eb;
    color: #2563eb;
}

.rating-tab.active {
    background-color: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
}


.rating-description {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e5e7eb;
}

.rating-description p {
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
    margin: 0;
}


.rating-tabs-content {
    position: relative;
}

.rating-tab-panel {
    display: none;
}

.rating-tab-panel.active {
    display: block;
}



.rating-table-wrapper {
    overflow-x: auto;
}

.rating-table-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #151515;
    margin: 0 0 24px 0;
}

.rating-icon {
    font-size: 24px;
}


.rating-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.rating-table thead {
    background-color: #f9fafb;
}

.rating-table thead tr th {
    padding: 16px 12px;
    text-align: left;
    font-weight: 600;
    color: #374151;
    border-bottom: 2px solid #e5e7eb;
    white-space: nowrap;
}

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

.rating-table tbody tr:hover {
    background-color: #f9fafb;
}

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

.rating-table tbody td {
    padding: 16px 12px;
    vertical-align: middle;
    color: #151515;
}


.rating-table .rank {
    font-weight: 600;
    color: #6b7280;
    width: 50px;
    text-align: center;
}

.rating-table tbody tr:nth-child(1) .rank {
    color: #f59e0b;
    font-size: 16px;
}

.rating-table tbody tr:nth-child(2) .rank {
    color: #9ca3af;
    font-size: 16px;
}

.rating-table tbody tr:nth-child(3) .rank {
    color: #b45309;
    font-size: 16px;
}


.rating-table .model {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.model-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.model-name {
    font-weight: 600;
    color: #151515;
    transition: color 0.2s ease;
}

.model-name:hover {
    color: #2563eb;
}


.rating-table .rating {

    min-width: 120px;
}

.rating-value {
    font-weight: 600;
    color: #151515;
    min-width: 32px;
}

.rating-stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 2px;
}


.rating-table .categories {
    min-width: 180px;
}

.rating-table .categories a {
    color: #2563eb;
    transition: color 0.2s ease;
}

.rating-table .categories a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}


.rating-table .type {
    min-width: 150px;
    color: #374151;
}


.rating-table .company {
    min-width: 150px;
    color: #374151;
}


.rating-table .country {
    min-width: 115px;
    color: #374151;
}


.rating-table .no-data {
    text-align: center;
    padding: 40px 20px;
    color: #6b7280;
    font-style: italic;
}



.rating-show-more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.show-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: #2563eb;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
    font-family: 'Unbounded';
}

.show-more-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

.show-more-btn:active {
    transform: translateY(0);
}

.show-more-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.show-more-btn:hover svg {
    transform: rotate(90deg);
}



.ai-assistant-btn {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.ai-assistant-btn:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

.ai-assistant-btn:active {
    transform: translateY(-1px);
}

.ai-assistant-btn img {
    width: 30px !important;
    height: 30px !important;
}



.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #2563eb;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}



@media (max-width: 1024px) {
    .rating-container {
        padding: 24px;
    }
    
    .rating-page-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .rating-container {
        padding: 20px;
        border-radius: 12px;
    }
    
    .rating-page-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .breadcrumbs {
        padding: 16px 0;
        font-size: 13px;
        flex-wrap: wrap;
    }
    
    .rating-tabs {
        gap: 8px;
    }
    
    .rating-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .rating-description {
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .rating-description p {
        font-size: 14px;
    }
    
    .rating-table-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .rating-icon {
        font-size: 20px;
    }
    
    .rating-table {
        font-size: 14px;
    }
    
    .rating-table thead tr th {
        padding: 12px 8px;
        font-size: 13px;
    }
    
    .rating-table tbody td {
        padding: 12px 8px;
    }
    
    .model-icon {
        width: 28px;
        height: 28px;
    }
    
    .rating-stars {
        font-size: 14px;
    }
    
    .show-more-btn {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .ai-assistant-btn {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .ai-assistant-btn img {
        width: 24px !important;
        height: 24px !important;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .rating-container {
        padding: 16px;
    }
    
    .rating-page-title {
        font-size: 22px;
    }
    
    .rating-tab {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .rating-table-wrapper {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .rating-table {
        min-width: 460px;
    }
}


.rating-table-wrapper::-webkit-scrollbar {
    height: 8px;
}

.rating-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.rating-table-wrapper::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

.rating-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}


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

.rating-tab-panel.active {
    animation: fadeIn 0.3s ease;
}

.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.hidden {
    display: none;
}


.rating-table .categories a.rating-cat-link {
    color: #2563eb; 
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap; 
}

.rating-table .categories a.rating-cat-link:hover {
    color: #1d4ed8; 
    text-decoration: underline;
}



.rating-stars {
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    font-size: 0; 
}

.star-rating-wrapper {
    position: relative;
    display: inline-block;
    width: 85px; 
    height: 17px;
    vertical-align: middle;
}

.star-rating-bg,
.star-rating-fill {
    position: absolute;
    top: -1px;
    left: 5px;
    width: 100%;
    height: 100%;
    background-repeat: repeat-x;
    background-size: 17px 17px; 
}


.star-rating-bg {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23e5e7eb' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}


.star-rating-fill {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fbbf24' d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
    overflow: hidden; 
}


@media (max-width: 480px) {
    .no-padding {
      padding: 0;
      border-radius: 0;
    }
    
    .no-border {
      border-radius: 0 !important;
    }
}


.sidebar-column {
    width: 276px;
    flex-shrink: 0;
    position: sticky;
    top: 90px; 
    align-self: flex-start; 
  }
  
  .sidebar-ad img {
    border-radius: 10px;
    width: 100%;
    height: auto;
  
  }
  
  
  @media (max-width: 430px) {
    .sidebar-ad img {
      width: 50%;
    }
  } 


.seo-text-layout {
    display: flex;
    gap: 20px; 
    margin-top: 20px;
    align-items: flex-start;
}

.seo-text-content {
    flex: 1; 
    background-color: #ffffff; 
    border-radius: 16px; 
    padding: 30px 40px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

.seo-sidebar-column {
    width: 276px;
    flex-shrink: 0;
    position: sticky;
    top: 90px;
    align-self: flex-start;

}

/* Стилизация контента внутри текста */
.seo-text-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #151515;
    margin-top: 32px;
    margin-bottom: 16px;
    font-family: 'Unbounded', sans-serif;
}

.seo-text-content h2:first-child {
    margin-top: 0;
}

.seo-text-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #151515;
    margin-top: 24px;
    margin-bottom: 12px;
    font-family: 'Unbounded', sans-serif;
}

.seo-text-content p {
    margin-bottom: 16px;
}

.seo-text-content ul, .seo-text-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.seo-text-content li {
    margin-bottom: 8px;
    list-style-position: outside;
}

.seo-text-content a {
    color: #2563eb;
    text-decoration: underline;
    text-decoration-color: transparent;
    transition: all 0.2s ease;
}

.seo-text-content a:hover {
    text-decoration-color: #2563eb;
    color: #1d4ed8;
}

/* Адаптив для мобильных */
@media (max-width: 1024px) {
    .seo-text-content {
        padding: 24px;
    }
}
@media (max-width: 480px) {
    .seo-sidebar-column {
        padding: 0 20px 20px 20px;
    }
    .visualr img {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .seo-text-layout {
        flex-direction: column;
    }
    
    .seo-sidebar-column {

        display: flex;
        justify-content: center;
    }

    .seo-text-content {
        padding: 20px;
    }
    
    .seo-text-content h2 {
        font-size: 22px;
    }
}


#header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 18px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}



.model-icon-placeholder {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #d1d5db;
    flex-shrink: 0;
 
}

.rating-table .visits {
    font-weight: 600;
    color: #151515;
    white-space: nowrap;
}



.rating-table thead tr th:first-child {
    text-align: center;
}