    body {
        margin: 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
        background: #1a1525;
        color: #fff;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }

    .container {
        width: 100%;
        max-width: 2000px;
        margin: 0 auto;
        padding: 0 20px;
        box-sizing: border-box;
    }

    /* Шапка */
    header {
        background: linear-gradient(180deg, #211c2b, #1a1525);
        padding: 10px 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    header .logo {
        font-size: 22px;
        font-weight: bold;
    }

    /* Пошук */
    .search-wrapper {
        display: flex;
        align-items: center;
        position: relative;
    }

    .search-wrapper input {
        width: 0;
        opacity: 0;
        transition: width 0.4s ease, opacity 0.3s ease;
        padding: 8px 10px;
        border-radius: 6px;
        border: none;
        outline: none;
        background: #2e2740;
        color: #fff;
        font-size: 14px;
        margin-right: 10px;
    }

    .search-btn {
        background: #7f39fb;
        border: none;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 8px 10px;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s;
    }

    .search-btn:hover {
        background: #9f60ff;
    }

    .search-btn svg {
        stroke: #fff;
        transition: transform 0.3s;
    }

    .search-wrapper.active input {
        width: 200px;
        opacity: 1;
    }

    /* 📱 Мобільна версія */
    @media (max-width: 768px) {
        header .container {
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        header .logo {
            margin-bottom: 10px;
            text-align: center;
        }

        .search-wrapper {
            width: 100%;
        }

        .search-wrapper input {
            width: 100% !important;
            opacity: 1 !important;
            margin: 0;
        }

        .search-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
        }
    }

    .search-btn svg {
        stroke: #fff;
        transition: transform 0.3s ease;
    }

    .search-btn svg.rotated {
        transform: rotate(45deg);
    }



    /* Контент */
    main {
        flex: 1;
        padding: 20px 0;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .video-card {
        background: #211c2b;
        border-radius: 16px;
        overflow: hidden;
    }

    .video-card img {
        width: 100%;
        height: 300px;
        object-fit: cover;
        display: block;
    }

    .video-card .info {
        padding: 15px;
    }

    .video-card h3 {
        margin: 0 0 8px;
        font-size: 18px;
    }

    .video-card p {
        margin: 0 0 6px;
        color: #bbb;
        font-size: 14px;
    }

    .video-card a {
        color: #7f39fb;
        text-decoration: none;
    }

    .video-card a:hover {
        text-decoration: underline;
    }

    /* Пагінація */
    .pagination {
        display: flex;
        justify-content: center;
        margin: 30px 0;
        gap: 10px;
    }
.page.active {
  background-color: #7335e1;
}
    .pagination a, span {
        padding: 8px 14px;
        background: #211c2b;
        border-radius: 8px;
        text-decoration: none;
        color: #fff;
        transition: background 0.3s;
    }

    .pagination a:hover {
        background: #2e2740;
    }

    /* Футер */
    footer {
        background: #211c2b;
        text-align: center;
        padding: 20px;
    }

    footer .site-name {
        font-weight: bold;
        font-size: 18px;
    }

    footer .links {
        margin-top: 10px;
    }

    footer .links a {
        color: #7f39fb;
        margin: 0 10px;
        text-decoration: none;
    }

    footer .links a:hover {
        text-decoration: underline;
    }

    /* Адаптив */
    @media (max-width: 900px) {
        .grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .video-card img {
            height: 250px;

        }
    }

    @media (max-width: 600px) {
        .grid {
            grid-template-columns: 1fr;
        }

        .video-card img {
            height: 200px;

        }
    }


    /* ----- SINGLE POST ------ */
.single-post {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #e2e2e2;
}

/* Відео */
.embed {
  margin: 20px auto 30px;
  background: #0d0d0f;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.6);
  position: relative;
}

.embed iframe {
  width: 100% !important;
  height: 100% !important;
  max-width: 100%;
  display: block;
  border: none;
  box-sizing: border-box;
}
/* Заголовок */
.post-title {
  font-size: 2rem;
  font-weight: 600;
  margin: 1rem 0 1.5rem;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}

/* Метаданні */
.post-meta {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.post-meta a {
  color: #7f39fb !important;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.post-meta a:hover {
  color: #a56eff !important;
}

/* Блок підзаголовка */
.h2 {
  text-align: left;
  font-size: 1.2rem;
  font-weight: 600;
  color: #7f39fb;
  margin: 30px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(127,57,251,0.3);
}

/* Сітка related posts */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(220px,1fr));
  gap: 20px;
}

.post.small {
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post.small:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.post.small .thumb {
  position: relative;
  overflow: hidden;
}

.post.small img {
  width: 100%;
  display: block;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.4s ease;
}

.post.small:hover img {
  transform: scale(1.05);
}

.post.small .title {
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 14px 4px;
  color: #fff;
}

.post.small .meta {
  font-size: 0.8rem;
  color: #aaa;
  padding: 0 14px 12px;
  display: flex;
  justify-content: space-between;
}

/* Пагінація */
.pagination.single {
  margin: 40px 0;
  text-align: center;
}

.pagination.single a {
  display: inline-block;
  margin: 0 6px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: #e2e2e2;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.pagination.single a:hover {
  background: #7f39fb;
  color: #fff;
}

/* Featured webcam rooms */
.models_room ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.models_room ul li {
  background: rgba(127,57,251,0.2);
  border-radius: 20px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.models_room ul li a {
  display: block;
  padding: 8px 16px;
  color: #7f39fb;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
}

.models_room ul li:hover {
  background: rgba(127,57,251,0.35);
  transform: translateY(-3px);
}

/* Mobile tweaks */
@media (max-width: 768px) {
  .post-title {
    font-size: 1.4rem;
  }
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .post-grid {
    grid-template-columns: repeat(auto-fill,minmax(160px,1fr));
    gap: 15px;
  }
}


.single-post.text a
{
  color:#7f38fb
}
#age-check-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-check-modal {
  max-width: 90%;

  border-radius: 8px;
  padding: 30px;
  text-align: center;

}

.age-18-icon {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

#confirm-button {
  background-color: #422279;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#confirm-button.active {
  background-color: #7f38fb;
}

label {
  display: flex;
  font-size: 16px;
  text-align: left;
  width: max-content;
  margin: 20px auto;
}

input[type="checkbox"] {
  margin-right: 10px;
  transform: scale(1.2);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

#confirm-button {
  background: #422279;
  color: white;
}

#cancel-button {
  background: #333;
  color: white;
}

body.age-check-lock {
  overflow: hidden;
}