/* Videos section styles */
.videos-section {
    padding: 2rem 0;
    margin-bottom: var(--section-spacing);
}

.featured-video {
    background: var(--card-bg);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .featured-video {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

.featured-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.featured-video-thumbnail {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding-top: 40%;
    cursor: pointer;
}

.featured-video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.featured-video-thumbnail::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: url('../assets/images/play-icon.svg') no-repeat center center;
    background-size: contain;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.featured-video-thumbnail:hover::before {
    opacity: 1;
}

.featured-video-thumbnail:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.featured-video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-video-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-video-title {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

@media (min-width: 768px) {
    .featured-video-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.featured-video-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.video-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.video-tag {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.video-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.video-button {
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-align: center;
    min-width: 80px;
    justify-content: center;
}

.video-button.pornhub {
    background-color: var(--pornhub-color);
    color: black;
}

.video-button.xhamster {
    background-color: var(--xhamster-color);
    color: white;
}

.video-button.onlyfans {
    background-color: var(--onlyfans-color);
    color: white;
}

.video-button::after {
    content: attr(data-platform);
    font-size: 0.85rem;
}

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

.video-card {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-card-thumbnail {
    position: relative;
    padding-top: 56.25%;
    width: 100%;
    height: 0;
    overflow: hidden;
    cursor: pointer;
}

.video-card-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.video-card-thumbnail::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: url('../assets/images/play-icon.svg') no-repeat center center;
    background-size: contain;
    z-index: 2;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-card-thumbnail:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-thumbnail:hover::before {
    opacity: 1;
}

.video-card-thumbnail:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-card-content {
    padding: 1.5rem;
}

.video-card-title {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.video-card-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    line-height: 1.5;
}


/* Video details page specific styles */
.video-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    padding: 2rem 0;
}

.video-hero .hero-background {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.1);
}

.video-hero .hero-content {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8))
}

.video-hero .hero-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-details {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.video-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.video-metadata {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-date, .video-duration {
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-duration::before {
    content: '⏱';
    font-size: 1.2rem;
}

.video-date::before {
    content: '📅';
    font-size: 1.2rem;
}

.video-metadata-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.metadata-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(var(--primary-color-rgb), 0.2);
}

.metadata-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.metadata-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.metadata-content {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.video-description {
    grid-column: 1 / -1;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.video-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.video-tags {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-tag {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.video-tag:hover::before {
    left: 100%;
}

.video-platforms {
    grid-column: 1 / -1;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.video-platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.platform-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.platform-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.platform-button:hover::before {
    left: 100%;
}

.platform-button .platform-icon {
    margin-right: 1rem;
    font-size: 1.4rem;
}

.platform-button.pornhub {
    background: linear-gradient(135deg, #ff9000, #fc0);
    color: black;
    box-shadow: 0 4px 15px rgba(255, 144, 0, 0.3);
}

.platform-button.xvideos {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.video-gallery {
    margin: 2rem 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video-hero {
        height: 300px;
    }

    .video-hero .hero-title {
        font-size: 2rem;
    }

    .video-details {
        padding: 1.5rem;
    }

    .video-platforms {
        flex-direction: column;
    }

    .platform-button {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .featured-video {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .featured-video-thumbnail {
        padding-top: 56.25%;
        margin-bottom: 1rem;
    }

    .featured-video-content {
        padding: 0;
    }
    
    .video-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}
/* Video details page specific styles */
.video-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    overflow: hidden;
    padding: 2rem 0;
}

.video-hero .hero-background {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.1);
}

.video-hero .hero-content {
    position: absolute;
    z-index: 1;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8))
}

.video-hero .hero-title {
    color: white;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 600;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-details {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.video-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.video-metadata {
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-date, .video-duration {
    font-size: 1.1rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.video-duration::before {
    content: '⏱';
    font-size: 1.2rem;
}

.video-date::before {
    content: '📅';
    font-size: 1.2rem;
}

.video-metadata-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.metadata-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(var(--primary-color-rgb), 0.2);
}

.metadata-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.metadata-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.metadata-content {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.video-description {
    grid-column: 1 / -1;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
}

.video-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.video-tags {
    grid-column: 1 / -1;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-tag {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.video-tag:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.video-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.video-tag:hover::before {
    left: 100%;
}

.video-platforms {
    grid-column: 1 / -1;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.video-platforms::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.platform-button {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.platform-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.platform-button:hover::before {
    left: 100%;
}

.platform-button .platform-icon {
    margin-right: 1rem;
    font-size: 1.4rem;
}

.platform-button.pornhub {
    background: linear-gradient(135deg, #ff9000, #fc0);
    color: black;
    box-shadow: 0 4px 15px rgba(255, 144, 0, 0.3);
}

.platform-button.xvideos {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.video-gallery {
    margin: 2rem 0;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: auto;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .video-hero {
        height: 300px;
    }

    .video-hero .hero-title {
        font-size: 2rem;
    }

    .video-details {
        padding: 1.5rem;
    }

    .video-platforms {
        flex-direction: column;
    }

    .platform-button {
        width: 100%;
        justify-content: center;
    }
}



/* =========================
   VIDEO SINGLE SCOPED FIXES
   ========================= */

.video-single .video-tags {
    gap: 1rem;
    padding: 2rem;
}

.video-single .video-tag {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-size: 1rem;
}

.video-single .platform-button {
    font-size: 1rem;
    padding: 0.9rem 1.6rem;
}

.video-single .platform-button.pornhub {
    background: linear-gradient(135deg, #ff9000, #fc0);
    color: #000;
}

.video-single .platform-button.xvideos {
    background: linear-gradient(135deg, #ff0000, #cc0000);
    color: #fff;
}

.video-card-btn{
  display:inline-block;
  margin-top:0.75rem;
  padding:0.55rem 1rem;
  border-radius:999px;
  background:linear-gradient(135deg, #ff4fa3, #ff8bd1);
  color:#000;
  font-weight:700;
  text-decoration:none;
  font-size:0.9rem;
}

.video-card-btn:hover{
  opacity:.9;
}

.video-card-title a,
.featured-video-title a{
  color: var(--accent, #ff4fa3);
  text-decoration: none;
}

.video-card-title a:hover,
.featured-video-title a:hover{
  opacity: 0.9;
}

/* FORCE pink titles in video hub */
.video-card-title,
.video-card-title a,
.featured-video-title,
.featured-video-title a{
  color: var(--accent, #ff4fa3) !important;
  text-decoration: none;
}

/* ===== TITLES (no links anymore) ===== */
.featured-video-title,
.video-card-title{
  color: var(--accent, #ff4fa3);
}

/* ===== CTA BUTTON ===== */
.video-card-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  margin-top:0.9rem;
  padding:0.75rem 1.2rem;

  border-radius:999px;
  font-weight:800;
  font-size:0.95rem;
  text-decoration:none;

  color:#0a0a0a;
  background:linear-gradient(135deg, var(--accent, #ff4fa3), #ff8bd1);
  box-shadow:0 12px 28px rgba(255,79,163,.25);

  transition:transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.video-card-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 18px 36px rgba(255,79,163,.32);
  opacity:.98;
}

.video-card-btn:active{
  transform:translateY(0);
  box-shadow:0 10px 22px rgba(255,79,163,.22);
}

/* ===== IMAGE HOVER ===== */
.video-card-thumbnail img,
.featured-video-thumbnail img{
  transition:transform .25s ease, opacity .25s ease;
}

.video-card:hover .video-card-thumbnail img,
.featured-video:hover .featured-video-thumbnail img{
  transform:scale(1.02);
  opacity:.98;
}
