/**
 * Main Stylesheet for Live Cam Multisite
 * Site: https://3cams.chatruletkaz.com
 * Version: 3.1 - Dark Theme
 */

/* ============================================
   RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #dddddd;
    background-color: #0a0a0a;
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   MAIN CONTENT
   ============================================ */
.main {
    background-color: #0a0a0a;
    min-height: 60vh;
}

/* ============================================
   TOP NAVIGATION
   ============================================ */
.top-nav {
    background: #0d0d0d;
    border-bottom: 1px solid #1a1a1a;
    width: 100%;
}

.top-nav .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-nav__content {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 10px 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #ffcc00;
}

.nav-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
}

/* ============================================
   PRIMARY NAVIGATION
   ============================================ */
.primary-nav {
    background: #0a0a0a;
    border-bottom: 1px solid #1a1a1a;
    padding: 15px 0;
}

.primary-nav .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
}

.logo span {
    color: #ffcc00;
}

.online-counter {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-left: 20px;
}

.online-number {
    font-size: 18px;
    font-weight: bold;
    color: #ffcc00;
}

.online-label {
    font-size: 14px;
    color: #888;
}

.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 30px;
}

.search-form {
    display: flex;
    background: #1a1a1a;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    margin-bottom: 5px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 14px;
}

.search-input::placeholder {
    color: #666;
}

.search-input:focus {
    outline: none;
}

.search-btn {
    padding: 0 20px;
    background: #ffcc00;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.search-btn:hover {
    background: #ffdb4d;
}

.trending {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.trending-label {
    color: #ffcc00;
    font-weight: bold;
    font-size: 12px;
}

.trending-tags {
    display: flex;
    gap: 15px;
}

.trending-tag {
    color: #888;
    text-decoration: none;
    font-size: 13px;
}

.trending-tag:hover {
    color: #ffcc00;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-signup {
    background: #ffcc00;
    color: #000;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
}

.btn-signup:hover {
    background: #ffdb4d;
}

.language-selector {
    position: relative;
}

.lang-current {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: #1a1a1a;
    border-radius: 20px;
    color: #888;
    cursor: pointer;
    font-size: 13px;
}

.lang-flag {
    width: 18px;
    height: 12px;
    border-radius: 2px;
    object-fit: cover;
}

/* ============================================
   MAIN NAVIGATION
   ============================================ */
.main-nav {
    background: #0d0d0d;
    border-bottom: 1px solid #1a1a1a;
}

.main-nav .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.nav-item {
    padding: 15px 0;
}

.nav-item a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.2s;
}

.nav-item a:hover {
    color: #ffcc00;
}

.nav-item.active a {
    color: #ffcc00;
}

.mobile-nav {
    display: none;
}

.mobile-nav select {
    background: #1a1a1a;
    color: #ffffff;
    border: 1px solid #2a2a2a;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    margin: 20px 0;
    font-size: 14px;
}

.breadcrumbs ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    color: #888;
}

.breadcrumbs a {
    color: #ffcc00;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .divider {
    margin: 0 8px;
    color: #3a3a3a;
}

/* ============================================
   STATS BAR
   ============================================ */
.stats {
    background: #0d0d0d;
    border-radius: 10px;
    padding: 15px 20px;
    margin: 20px 0;
    border: 1px solid #1a1a1a;
}

.stats__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats__label {
    color: #888;
    font-size: 14px;
}

.stats__value {
    color: #ffcc00;
    font-size: 20px;
    font-weight: bold;
}

/* ============================================
   MODELS GRID - 6 CARDS IN A ROW
   ============================================ */

/* Main grid container - 6 cards on large screens */
.grid,
.models-grid,
#models-grid,
#similar-models-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 20px 0;
}

/* For screens between 1400px and 1599px - 5 cards */
@media (min-width: 1400px) and (max-width: 1599px) {
    .grid,
    .models-grid,
    #models-grid,
    #similar-models-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* For screens between 1200px and 1399px - 5 cards */
@media (min-width: 1200px) and (max-width: 1399px) {
    .grid,
    .models-grid,
    #models-grid,
    #similar-models-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* For screens between 992px and 1199px - 4 cards */
@media (min-width: 992px) and (max-width: 1199px) {
    .grid,
    .models-grid,
    #models-grid,
    #similar-models-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

/* For screens between 768px and 991px - 3 cards */
@media (min-width: 768px) and (max-width: 991px) {
    .grid,
    .models-grid,
    #models-grid,
    #similar-models-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

/* For mobile - 2 cards */
@media (max-width: 767px) {
    .grid,
    .models-grid,
    #models-grid,
    #similar-models-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
}

/* For very small screens - 2 cards with smaller gap */
@media (max-width: 480px) {
    .grid,
    .models-grid,
    #models-grid,
    #similar-models-grid {
        gap: 8px;
    }
}

/* Universal card - used everywhere */
.card,
.model-card {
    background: #0d0d0d;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 1px solid #1a1a1a;
}

.card:hover,
.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border-color: #ffcc00;
}

/* Image container */
.card .image-container,
.model-card .image-container {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #050505;
}

.card .image-container img,
.model-card .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.card:hover .image-container img,
.model-card:hover .image-container img {
    transform: scale(1.05);
}

/* Overlay with viewer count */
.card .overlay,
.model-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Info section */
.card .info,
.model-card .info {
    padding: 12px;
    background: #0d0d0d;
}

.card .name,
.model-card .name {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Tags section */
.card .tags,
.model-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.card .tag,
.model-card .tag {
    padding: 2px 8px;
    background: #1a1a1a;
    border-radius: 15px;
    color: #888;
    font-size: 10px;
    text-decoration: none;
    transition: all 0.2s;
}

.card .tag:hover,
.model-card .tag:hover {
    background: #ffcc00;
    color: #000;
}

/* Meta info (country, languages) */
.card .meta,
.model-card .meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #777;
}

.card .meta span,
.model-card .meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ============================================
   LOAD MORE BUTTON
   ============================================ */
.load-more {
    text-align: center;
    margin: 40px 0;
}

.load-more-btn {
    padding: 15px 40px;
    background: #ffcc00;
    color: #000;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.load-more-btn:hover {
    background: #ffdb4d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.3);
}

.load-more-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   SIMILAR MODELS SECTION
   ============================================ */
.similar-models {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #1a1a1a;
}

.similar-models__title {
    font-size: 24px;
    margin-bottom: 25px;
    color: #ffcc00;
}

/* ============================================
   MODEL PROFILE PAGE STYLES
   ============================================ */
.model-profile {
    background: #0d0d0d;
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
    border: 1px solid #1a1a1a;
}

.model-profile__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.model-profile__title {
    font-size: 28px;
    margin: 0;
    color: #ffffff;
}

.model-profile__source {
    font-size: 16px;
    color: #777;
    font-weight: normal;
    margin-left: 10px;
}

.model-profile__status {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
}

.status--online {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.status--offline {
    background: rgba(136, 136, 136, 0.1);
    color: #888;
    border: 1px solid rgba(136, 136, 136, 0.3);
}

.status__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status--online .status__dot {
    background: #2ecc71;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

.status--offline .status__dot {
    background: #888;
}

.model-profile__content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 25px;
}

/* Player container */
.player-container {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    border: 1px solid #1a1a1a;
}

.player-container--offline {
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player__preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.player-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
}

.player__offline-message {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffcc00;
}

.player__browse-btn {
    padding: 12px 25px;
    background: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.player__browse-btn:hover {
    background: #ffdb4d;
    transform: translateY(-2px);
}

/* Info section on model page */
.info-section {
    background: #0a0a0a;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #1a1a1a;
}

.info-section__title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffcc00;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 10px;
}

.model-topic {
    background: #0d0d0d;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 1px solid #1a1a1a;
}

.model-topic__label {
    font-size: 12px;
    color: #888;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.model-topic__text {
    margin: 0;
    color: #cccccc;
    line-height: 1.5;
    font-size: 14px;
}

.model-tags {
    margin-bottom: 20px;
}

.model-tags__label {
    font-size: 15px;
    color: #ffcc00;
    margin: 0 0 10px 0;
}

.model-tags__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.model-details {
    margin-bottom: 20px;
}

.model-details__title {
    font-size: 15px;
    color: #ffcc00;
    margin: 0 0 15px 0;
}

.model-details__table {
    width: 100%;
    border-collapse: collapse;
}

.model-details__table th {
    text-align: left;
    padding: 8px 10px 8px 0;
    color: #888;
    font-weight: 500;
    width: 100px;
    font-size: 13px;
}

.model-details__table td {
    padding: 8px 0;
    color: #cccccc;
    font-size: 13px;
}

.model-details__table tr {
    border-bottom: 1px solid #1a1a1a;
}

.model-details__table tr:last-child {
    border-bottom: none;
}

.model-details__table a {
    color: #ffcc00;
    text-decoration: none;
}

.model-details__table a:hover {
    text-decoration: underline;
}

.model-cta {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1a1a1a;
}

.model-cta__btn {
    display: inline-block;
    padding: 12px 30px;
    background: #ffcc00;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.model-cta__btn:hover {
    background: #ffdb4d;
    transform: translateY(-2px);
}

/* Error message */
.error-message {
    background: #0d0d0d;
    border: 1px solid #dc3545;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
}

.error-message h3 {
    color: #dc3545;
    margin-bottom: 10px;
}

.error-message p {
    color: #888;
    margin-bottom: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0d0d0d;
    border-top: 1px solid #1a1a1a;
    padding: 30px 0;
    margin-top: 40px;
    color: #777;
    text-align: center;
    font-size: 14px;
}

.footer a {
    color: #ffcc00;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* ============================================
   LOADING STATE
   ============================================ */
.loading {
    text-align: center;
    padding: 3rem;
    color: #777;
}

.loading::after {
    content: '';
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    border: 3px solid #1a1a1a;
    border-top-color: #ffcc00;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 0.5rem;
    vertical-align: middle;
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 992px) {
    .primary-nav .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .header-search {
        margin: 10px 0;
        max-width: 100%;
    }
    
    .trending {
        margin-top: 10px;
    }
    
    .model-profile__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-nav {
        display: block;
        padding: 10px 0;
    }
    
    .top-nav__content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-buttons {
        margin-top: 10px;
    }
    
    .card .name,
    .model-card .name {
        font-size: 12px;
        margin-bottom: 4px;
    }
    
    .card .overlay,
    .model-card .overlay {
        font-size: 10px;
        padding: 6px;
    }
    
    .card .info,
    .model-card .info {
        padding: 8px;
    }
    
    .card .tags,
    .model-card .tags {
        display: none;
    }
    
    .card .meta span:not(:first-child),
    .model-card .meta span:not(:first-child) {
        display: none;
    }
    
    .card .meta,
    .model-card .meta {
        font-size: 10px;
    }
    
    .similar-models .card .tags {
        display: none;
    }
    
    .similar-models .card .meta span:not(:first-child) {
        display: none;
    }
}

@media (max-width: 480px) {
    .card .name,
    .model-card .name {
        font-size: 11px;
    }
    
    .card .overlay,
    .model-card .overlay {
        font-size: 9px;
        padding: 4px;
    }
    
    .model-profile {
        padding: 15px;
    }
    
    .model-profile__title {
        font-size: 22px;
    }
    
    .model-cta__btn {
        width: 100%;
        padding: 12px 20px;
    }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .top-nav,
    .primary-nav,
    .main-nav,
    .search,
    .load-more,
    .footer {
        display: none;
    }
    
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .card .overlay {
        display: none;
    }
}

/* ============================================
   FORCE SIMILAR MODELS BUTTON SAME AS MAIN
   ============================================ */
.similar-models .load-more-btn,
#load-more-similar-container .load-more-btn {
    background: #ffcc00 !important;
    color: #000 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 15px 40px !important;
    font-size: 16px !important;
    font-weight: bold !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
}

.similar-models .load-more-btn:hover,
#load-more-similar-container .load-more-btn:hover {
    background: #ffdb4d !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 20px rgba(255, 204, 0, 0.3) !important;
}

.similar-models .load-more-btn:disabled,
#load-more-similar-container .load-more-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

/* Card link - makes whole card clickable */
.card-link {
    text-decoration: none;
    display: block;
    color: inherit;
}

.card-link:hover {
    text-decoration: none;
}

.card-link .card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-link:hover .card {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    border-color: #ffcc00;
}

/* ============================================
   SEO TEXT BLOCK STYLES
   ============================================ */
.seo-block {
    margin: 60px 0 40px;
}

.seo-block__content {
    background: linear-gradient(135deg, #0a0a0a 0%, #111111 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 204, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.seo-block__content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffcc00, #ff8c00, #ffcc00);
}

.seo-block__content h2 {
    color: #ffcc00;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 204, 0, 0.15);
    position: relative;
    letter-spacing: -0.3px;
}

.seo-block__content h2::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 80px;
    height: 2px;
    background: #ffcc00;
}

.seo-block__content p {
    color: #bbbbbb;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

.seo-block__content p:last-child {
    margin-bottom: 0;
}

.seo-block__content p:first-of-type {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
}

.seo-block__content ul,
.seo-block__content ol {
    margin: 20px 0 20px 30px;
    color: #bbbbbb;
    line-height: 1.8;
}

.seo-block__content li {
    margin-bottom: 10px;
}

.seo-block__content li::marker {
    color: #ffcc00;
}

.seo-block__content a {
    color: #ffcc00;
    text-decoration: none;
    border-bottom: 1px dotted rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
}

.seo-block__content a:hover {
    color: #ffdb4d;
    border-bottom-color: #ffdb4d;
}

.seo-block__content strong,
.seo-block__content b {
    color: #ffcc00;
    font-weight: 600;
}

.seo-block__content .highlight {
    background: linear-gradient(120deg, rgba(255, 204, 0, 0.1), rgba(255, 204, 0, 0.05));
    padding: 2px 8px;
    border-radius: 8px;
    font-weight: 500;
}

/* Tablet responsive for SEO block */
@media (max-width: 768px) {
    .seo-block {
        margin: 40px 0 30px;
    }
    
    .seo-block__content {
        padding: 25px 20px;
    }
    
    .seo-block__content h2 {
        font-size: 22px;
        margin-bottom: 18px;
        padding-bottom: 10px;
    }
    
    .seo-block__content p {
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }
    
    .seo-block__content p:first-of-type {
        font-size: 16px;
    }
}

/* Mobile responsive for SEO block */
@media (max-width: 480px) {
    .seo-block__content {
        padding: 20px 15px;
        border-radius: 16px;
    }
    
    .seo-block__content h2 {
        font-size: 20px;
    }
    
    .seo-block__content p {
        font-size: 13px;
    }
    
    .seo-block__content p:first-of-type {
        font-size: 15px;
    }
}

/* Mobile navigation buttons */
.mobile-nav-buttons {
    display: none;
    gap: 8px;
    padding: 10px 0;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mobile-nav-buttons::-webkit-scrollbar {
    display: none;
}

.mobile-nav-btn {
    display: inline-block;
    padding: 10px 16px;
    background: #1a1a1a;
    color: #888;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
    white-space: nowrap;
}

.mobile-nav-btn:hover,
.mobile-nav-btn:active {
    background: #ffcc00;
    color: #000;
}

/* Hide desktop menu on mobile, show buttons */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-nav-buttons {
        display: flex;
    }
}

@media (max-width: 480px) {
    .mobile-nav-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
}

/* ============================================
   MODEL DESCRIPTION H2 STYLES
   ============================================ */
.model-description {
    color: #bbbbbb;
}

.model-description h2 {
    color: #ffcc00;
    font-size: 24px;
    font-weight: 700;
    margin: 25px 0 15px 0;
    border-bottom: 1px solid rgba(255, 204, 0, 0.2);
    padding-bottom: 10px;
}

.model-description h2:first-of-type {
    margin-top: 0;
}

.model-description p {
    color: #bbbbbb;
    line-height: 1.7;
    margin-bottom: 15px;
}

.model-description a {
    color: #ffcc00;
    text-decoration: none;
}

.model-description a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-menu { display: none; }
    .mobile-nav-buttons { display: flex !important; }
}

.seo-block h1,
.seo-block h2,
.seo-block h3,
.seo-block h4,
.seo-block h5 {
    color: #ffcc00 !important;
}

.seo-block {
    color: #bbbbbb;
}

/* ============================================
   NEW BADGE POSITIONING - LIVE & HD
   ============================================ */

.image-container {
    position: relative;
}

.image-container .badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.badge-source {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.85);
    color: #ffcc00;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 5;
    pointer-events: none;
    backdrop-filter: blur(2px);
}

.badge-live {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #2ecc71;
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
    z-index: 5;
    pointer-events: none;
}

.badge-hd-new {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #ffcc00;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 204, 0, 0.3);
    z-index: 5;
    pointer-events: none;
}

.card .badge-hd,
.model-card .badge-hd,
.card .badge-new,
.model-card .badge-new {
    display: none;
}

.card .badges,
.model-card .badges {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    pointer-events: none;
}

@media (max-width: 768px) {
    .badge-source,
    .badge-live,
    .badge-hd-new {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .badge-source {
        top: 6px;
        left: 6px;
    }
    
    .badge-live {
        top: 6px;
        right: 6px;
    }
    
    .badge-hd-new {
        bottom: 6px;
        right: 6px;
    }
}

@media (max-width: 480px) {
    .badge-source,
    .badge-live,
    .badge-hd-new {
        font-size: 8px;
        padding: 2px 4px;
    }
}