/* Variables y reset */
:root {
    --primary-color: #ff3366;
    --secondary-color: #9933cc;
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-text: #f8f8f8;
    --card-bg: rgba(30, 30, 30, 0.7);
    --card-hover: rgba(40, 40, 40, 0.9);
    --twitter-color: #1DA1F2;
    --reddit-color: #FF4500;
    --redgifs-color: #FF758C;
    --pornhub-color: #FFA31A;
    --xhamster-color: #F45B5B;
    --onlyfans-color: #00AFF0;
    --cam4-color: #D9534F;
    --stripchat-color: #F9629F;
    --section-spacing: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    background-image: linear-gradient(to bottom right, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.7)), 
                      url('../assets/images/background.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

/* Main content */
.content-wrapper {
    padding: 1rem;
    display: block;
    opacity: 1;
    transition: opacity 0.5s ease;
    width: 100%;
    min-width: 0; /* Previene desbordamiento en grid */
    margin: 0 auto;
    background-color: var(--dark-bg);
}

header {
    text-align: center;
    margin-bottom: 3rem;
}

.profile-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 3px solid var(--primary-color);
    background-image: url('../assets/images/profile.svg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 20px rgba(255, 51, 102, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 51, 102, 0.7);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tagline {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

/* Section styling */
.section-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    margin: 0.5rem auto;
}

.links-section {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(153, 51, 204, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Links styling */
.links-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.three-columns {
    grid-template-columns: repeat(3, 1fr);
}

.link-item {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.link-item a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.8rem;
    text-decoration: none;
    color: var(--light-text);
    background-color: var(--card-bg);
    transition: all 0.3s ease;
}

.link-item a:hover {
    background-color: var(--card-hover);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.platform-icon {
    font-size: 1.6rem;
    margin-right: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.platform-name {
    font-weight: 600;
    font-size: 1.1rem;
    flex: 1;
}

.platform-description {
    opacity: 0.8;
    font-size: 0.9rem;
    width: 100%;
    margin-top: 0.4rem;
    margin-left: 2.4rem;
    text-align: left;
}

/* Platform specific styles */
.twitter a {
    border-left: 5px solid var(--twitter-color);
}

.reddit a {
    border-left: 5px solid var(--reddit-color);
}

.redgifs a {
    border-left: 5px solid var(--redgifs-color);
}

.pornhub a {
    border-left: 5px solid var(--pornhub-color);
}

.xhamster a {
    border-left: 5px solid var(--xhamster-color);
}

.onlyfans a {
    border-left: 5px solid var(--onlyfans-color);
}

.cam4 a {
    border-left: 5px solid var(--cam4-color);
}

.stripchat a {
    border-left: 5px solid var(--stripchat-color);
}

/* Premium content highlight */
.premium a {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.7) 0%, rgba(60, 30, 60, 0.8) 100%);
}

.premium a:hover {
    background: linear-gradient(135deg, rgba(40, 40, 40, 0.8) 0%, rgba(80, 40, 80, 0.9) 100%);
}

/* Social feed section */
.social-feed-section {
    margin-bottom: var(--section-spacing);
    background: linear-gradient(135deg, rgba(153, 51, 204, 0.1), rgba(255, 51, 102, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.social-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tab-button {
    background: var(--card-bg);
    border: none;
    color: var(--light-text);
    padding: 0.8rem 1.5rem;
    margin: 0 0.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tab-button:hover {
    background: var(--card-hover);
}

.tab-button.active {
    background: var(--primary-color);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Twitter feed styling */
.tweet-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tweet {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.tweet-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.tweet-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.8rem;
}

.tweet-user {
    display: flex;
    flex-direction: column;
}

.tweet-name {
    font-weight: 600;
}

.tweet-handle {
    font-size: 0.9rem;
    opacity: 0.7;
}

.tweet-content {
    margin-bottom: 1rem;
    line-height: 1.5;
}

.tweet-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.tweet-image img {
    width: 100%;
    height: auto;
    display: block;
}

.tweet-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.7;
}

.tweet-link {
    color: var(--twitter-color);
    text-decoration: none;
}

.tweet-link:hover {
    text-decoration: underline;
}

/* Reddit feed styling */
.reddit-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reddit-post {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.reddit-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.reddit-subreddit {
    color: var(--reddit-color);
    font-weight: 600;
}

.reddit-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.reddit-content {
    margin-bottom: 1rem;
}

.reddit-image {
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.reddit-image img {
    width: 100%;
    height: auto;
    display: block;
}

.reddit-footer {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.7;
}

.reddit-link {
    color: var(--reddit-color);
    text-decoration: none;
}

.reddit-link:hover {
    text-decoration: underline;
}

/* Videos section */
.videos-section {
    margin-bottom: var(--section-spacing);
    background: linear-gradient(135deg, rgba(153, 51, 204, 0.1), rgba(255, 51, 102, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.video-item {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
}

.video-info {
    padding: 1rem;
}

.video-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0.8rem;
}

.video-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.video-link:hover {
    background: #ff1a4f;
}

/* Gallery section */
.gallery-section {
    margin-bottom: var(--section-spacing);
    background: linear-gradient(135deg, rgba(255, 51, 102, 0.1), rgba(153, 51, 204, 0.1));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gallery-container {
    display: flex;
    gap: 1rem;
}

.gallery-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gallery-item {
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-image {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-more {
    text-align: center;
    margin-top: 2rem;
}

.gallery-more-link {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
}

.gallery-more-link:hover {
    background: #ff1a4f;
    transform: translateY(-2px);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    height: 50vh;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1rem;
    overflow: hidden;
    margin-bottom: 1rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/images/collage-bg.svg');
    background-size: cover;
    background-position: center;
    filter: blur(5px);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 3rem);
    margin-bottom: 0.75rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 8px rgba(255, 51, 102, 0.3);
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-bottom: 1rem;
        padding: 0 1rem;
        text-shadow: 0 0 10px rgba(255, 51, 102, 0.3);
    }
}

.hero-slogan {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bio {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    padding: 0 0.5rem;
    width: 100%;
}

@media (min-width: 768px) {
    .hero-buttons {
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
        width: auto;
    }
}

.hero-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-button-twitter {
    background: linear-gradient(135deg, #1DA1F2, #19608F);
    border: 2px solid rgba(29, 161, 242, 0.3);
}

.hero-button-twitter:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(29, 161, 242, 0.3);
    background: linear-gradient(135deg, #19608F, #1DA1F2);
}

.hero-button-twitter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #19608F, #1DA1F2);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero-button-twitter:hover::before {
    opacity: 1;
}

.hero-button-reddit {
    background: linear-gradient(135deg, #FF4500, #FF8717);
    border: 2px solid rgba(255, 69, 0, 0.3);
}

.hero-button-reddit:hover {
    transform: translateY(-3px) scale(1.02);
    background: linear-gradient(135deg, #FF8717, #FF4500);
    box-shadow: 0 10px 25px rgba(255, 69, 0, 0.3);
}

.hero-button-reddit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF8717, #FF4500);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.hero-button-reddit:hover::before {
    opacity: 1;
}

.hero-button-icon {
    margin-right: 0.8rem;
    font-size: 1.3rem;
}

/* Featured Video Section */
.featured-video {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.featured-video img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.featured-video-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: white;
}

.featured-video-description {
    margin-bottom: 1rem;
    opacity: 0.9;
    max-width: 80%;
}

.featured-video-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.video-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
}

.featured-video-buttons {
    display: flex;
    gap: 1rem;
}

.featured-video-button {
    padding: 0.6rem 1.2rem;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.featured-video-button-primary {
    background-color: var(--primary-color);
    color: white;
}

.featured-video-button-primary:hover {
    background-color: #ff1a4f;
}

.featured-video-button-secondary {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.featured-video-button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Video Grid Improvements */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.video-tags {
    display: flex;
    gap: 0.3rem;
    flex-wrap: wrap;
    margin-bottom: 0.8rem;
}

.video-description {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-slogan {
        font-size: 1.3rem;
    }
    
    .featured-video-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-slogan {
        font-size: 1.1rem;
    }
    
    .hero-bio {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .featured-video-description {
        max-width: 100%;
    }
    
    .featured-video-buttons {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        min-height: 500px;
    }
    
    .featured-video-overlay {
        padding: 1.5rem 1rem 1rem;
    }
    
    .featured-video-title {
        font-size: 1.3rem;
    }
}

/* Responsive styles */
@media (max-width: 1200px) {
    .content-wrapper {
        padding: 1.5rem;
    }
    
    .gallery-container {
        flex-direction: column;
    }
    
    .gallery-column {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .gallery-item {
        flex: 1 0 calc(50% - 0.5rem);
    }
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .three-columns {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .redgifs {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .two-columns, 
    .three-columns {
        grid-template-columns: 1fr;
    }
    
    .redgifs {
        grid-column: auto;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .social-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-button {
        width: 100%;
        margin: 0;
    }
    
    .premium {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .platform-description {
        font-size: 0.8rem;
    }
    
    .link-item a {
        padding: 0.7rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .tweet, 
    .reddit-post {
        padding: 1rem;
    }
    
    .video-info {
        padding: 0.8rem;
    }
    
    .video-title {
        font-size: 1rem;
    }
    
    .gallery-item {
        flex: 1 0 100%;
    }
}

/* Animation for content loading */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title,
.social-tabs,
.tweet,
.reddit-post,
.video-item,
.gallery-item {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.tweet:nth-child(2),
.reddit-post:nth-child(2),
.video-item:nth-child(2),
.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.tweet:nth-child(3),
.reddit-post:nth-child(3),
.video-item:nth-child(3),
.gallery-item:nth-child(3) {
    animation-delay: 0.4s;
}

/* Grid column modifiers for .links-container (optional) */
.links-container.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.links-container.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .links-container.grid-cols-2,
  .links-container.grid-cols-3 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   DirtyDog Video Single (isolated)
   Prefix: dv-
   ========================= */

.dv-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem;
  color: var(--light-text);
}

/* HERO */
.dv-hero {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  padding: 2rem 1.25rem;
  margin: 0.5rem 0 1.25rem;
}

@media (min-width: 768px) {
  .dv-hero { min-height: 440px; padding: 3rem 2rem; }
}

.dv-hero__bg {
  position: absolute;
  inset: -8%;
  background-image: var(--dv-hero-bg);
  background-size: cover;
  background-position: center;
  filter: blur(6px);
  transform: scale(1.1);
}

.dv-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,51,102,0.22), transparent 45%),
              radial-gradient(circle at 70% 30%, rgba(153,51,204,0.22), transparent 50%),
              linear-gradient(to top, rgba(0,0,0,0.88), rgba(0,0,0,0.25));
}

.dv-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.dv-hero__title {
  margin: 0;
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: #fff;
  text-shadow: 0 10px 25px rgba(0,0,0,0.55);
}

.dv-hero__subtitle {
  margin-top: 0.75rem;
  opacity: 0.92;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* MAIN */
.dv-main {
  display: grid;
  gap: 1.25rem;
}

/* CARD */
.dv-card {
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 768px) {
  .dv-card { padding: 1.75rem; }
}

/* TAGS */
.dv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.dv-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  opacity: 0.95;
}

/* META */
.dv-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 1rem 0 1.25rem;
}

@media (min-width: 640px) {
  .dv-meta { grid-template-columns: repeat(2, 1fr); }
}

.dv-meta__item {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dv-meta__label {
  font-size: 0.85rem;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.dv-meta__value {
  font-size: 1.05rem;
  font-weight: 700;
}

/* DESCRIPTION */
.dv-description {
  font-size: 1.05rem;
  line-height: 1.75;
  opacity: 0.96;
}

.dv-description p + p { margin-top: 0.9rem; }

/* PLATFORMS */
.dv-platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .dv-platforms { grid-template-columns: repeat(2, 1fr); }
}

.dv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.95rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  will-change: transform;
}

.dv-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.35);
  filter: brightness(1.02);
}

.dv-btn__icon { font-size: 1.25rem; }

.dv-btn--ph {
  background: linear-gradient(135deg, #ff9000, #ffcc00);
  color: #000;
}

.dv-btn--xv {
  background: linear-gradient(135deg, #f45b5b, #c93c3c);
  color: #fff;
}

/* HEADINGS */
.dv-heading {
  text-align: center;
  font-size: 1.6rem;
  margin: 0 0 1rem;
  color: var(--primary-color);
}

/* GALLERY GRID */
.dv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

@media (min-width: 640px) {
  .dv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .dv-grid { grid-template-columns: repeat(3, 1fr); }
}

.dv-shot {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.dv-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,0.30);
}

.dv-shot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ADS */
.dv-ad {
  border-radius: 14px;
  background: rgba(0,0,0,0.20);
  border: 1px dashed rgba(255,255,255,0.18);
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  margin: 0.25rem 0;
}

.dv-ad--below-hero { min-height: 120px; }
.dv-ad--after-details { min-height: 120px; }
.dv-ad--after-gallery { min-height: 120px; }

.dv-context {
  margin-top: 1.25rem;
}

.dv-context-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: 1.05rem;
}

.dv-context-text p + p {
  margin-top: 0.9rem;
}

.dv-context-link {
  text-align: center;
  margin: 1.2rem 0;
}

.dv-context-link a {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

.dv-context-link a:hover {
  text-decoration: underline;
}

.dv-shorts {
  margin-top: 1.25rem;
}

.dv-shorts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .dv-shorts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.dv-short {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Para que embeds responsive no rompan layout */
.dv-short iframe,
.dv-short video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
}
/* GRID DE SHORTS */
.dv-shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  justify-content: center;
}

/* En móvil: uno por fila */
@media (max-width: 767px) {
  .dv-shorts-grid {
    grid-template-columns: 1fr;
  }
}

/* CADA SHORT */
.dv-short {
  max-width: 260px; /* 👈 CLAVE: evita que se hagan gigantes */
  margin: 0 auto;
}

/* CONTENEDOR 9:16 */
.dv-short-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
}

/* IFRAME */
.dv-short-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Contenedor superior del vídeo */
.video-card-media {
  width: 100%;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  background: #000;
}

/* Ratio 16:9 FORZADO */
.video-card-ratio {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

/* El iframe se adapta y RECORTA el vertical */
.video-card-ratio iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 177.78%; /* altura real del 9:16 */
  transform: translate(-50%, -50%);
  border: 0;
}

/* =========================
   DV SHORTS ARCHIVE (9:16) – FINAL OVERRIDES
   Pegar al FINAL de estilos.css
   ========================= */

/* Grid responsive consistente */
.dv-shorts-grid{
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  justify-items: center;
}

@media (min-width: 640px){
  .dv-shorts-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px){
  .dv-shorts-grid{ grid-template-columns: repeat(3, 1fr); }
}

/* Card completa del short + texto debajo */
.dv-short{
  width: 100%;
  max-width: 320px; /* antes tenías 260px, aquí un poco más cómodo */
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* Ratio 9:16 (el único que manda) */
.dv-short-ratio{
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
  overflow: hidden;
}

/* Iframe dentro del ratio */
.dv-short-ratio iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Meta debajo */
.dv-short-meta{
  padding: 1rem 1rem 1.15rem;
}

.dv-short-title{
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary-color);
}

.dv-short-desc{
  margin: 0 0 0.85rem;
  opacity: 0.85;
  font-size: 0.95rem;
  line-height: 1.45;
}

.dv-short-btn{
  display: inline-block;
  text-decoration: none;
  font-weight: 800;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}
/* =========================================
   Dirtydog Blog (Archive + Article readability)
   Paste at the END of estilos.css
   ========================================= */

/* ARCHIVE PAGE SCOPE */
.dd-blog header { text-align: left; } /* cancela el header {text-align:center} global */
.dd-blog .dd-archive-header{
  max-width: 980px;
  margin: 0 auto 1.75rem;
  padding: 0 0.75rem;
}

.dd-blog .dd-archive-title{
  font-size: 2.1rem;
  line-height: 1.1;
  margin: 0 0 0.75rem;
  color: var(--light-text);
}

.dd-blog .dd-archive-subtitle{
  max-width: 78ch;
  opacity: 0.88;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}

.dd-blog .dd-cta-row{
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* POSTS LIST */
/* ===== Blog cards grid (2–3 columns) ===== */

.dd-posts{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0.75rem 2rem;

  display: grid;
  gap: 1rem;

  /* 2–3 columnas automáticas según ancho */
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: stretch;
}

/* Card vertical: estructura column + botón abajo */
.dd-post-card{
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;

  padding: 1.15rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);

  display: flex;
  flex-direction: column;
  min-height: 260px;
}

/* Título más compacto para grid */
.dd-post-title{
  margin: 0 0 0.6rem;
  line-height: 1.2;
  font-size: 1.2rem;
}

/* Excerpt: limita líneas para que todas las cards “cuadren” */
.dd-post-excerpt{
  margin: 0 0 1rem;
  opacity: 0.9;
  line-height: 1.65;

  display: -webkit-box;
  -webkit-line-clamp: 4; /* ajusta a 3–5 si quieres */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Empuja el botón al final */
.dd-post-actions{
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
}

/* Meta un poco más “tight” */
.dd-post-meta{
  font-size: 0.82rem;
  margin-bottom: 0.55rem;
  opacity: 0.9;
}

/* Tags menos “chillones” para que parezca más web editorial */
.dd-post-tag{
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
}

/* Si quieres que el tag tenga un pill suave */
.dd-post-tag{
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}

/* Botón más “site-like” (menos gradiente cantoso) */
.dd-btn-primary{
  background: rgba(255,255,255,0.06);
  color: var(--light-text);
  border-color: rgba(255,255,255,0.14);
}

.dd-btn-primary:hover{
  background: rgba(255,255,255,0.10);
}


/* BUTTONS */
.dd-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.dd-btn:hover{ transform: translateY(-1px); }

.dd-btn-primary{
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  color: #0b0b0b;
  border-color: rgba(255,255,255,0.06);
}

.dd-btn-ghost{
  background: rgba(255,255,255,0.06);
  color: var(--light-text);
}

/* ARCHIVE FOOTER NOTE */
.dd-archive-footer{
  max-width: 980px;
  margin: 0 auto 2rem;
  padding: 0 0.75rem;
}
.dd-note{
  padding: 1rem 1.1rem;
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  opacity: 0.92;
}

/* =========================================
   ARTICLE READABILITY (fix: centered text + dark headings)
   Scope: .brand-section .section-description
   ========================================= */

.brand-section .section-description{
  max-width: 820px;
  margin: 0 auto;
  padding: 0 0.75rem;
  text-align: left;            /* <-- lectura normal */
  font-size: 1.05rem;
  line-height: 1.85;
}

.brand-section .section-description p{
  margin: 0 0 1.05rem;
}

/* H2/H3 visibles sobre fondo oscuro */
.brand-section .section-description h2,
.brand-section .section-description h3{
  color: var(--light-text);    /* <-- arregla “se ven negros” */
  font-weight: 800;
  line-height: 1.25;
  margin: 2.1rem 0 0.9rem;
}

.brand-section .section-description h2{
  font-size: 1.55rem;
  position: relative;
  padding-top: 1.1rem;
}

.brand-section .section-description h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  opacity: 0.9;
}

.brand-section .section-description h3{
  font-size: 1.25rem;
  opacity: 0.95;
}

.brand-section .section-description ul,
.brand-section .section-description ol{
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
}

.brand-section .section-description a{
  color: var(--primary-color);
  font-weight: 800;
  text-decoration: none;
}

.brand-section .section-description a:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px){
  .dd-blog .dd-archive-title{ font-size: 1.85rem; }
  .brand-section .section-description{ font-size: 1rem; line-height: 1.8; }
  .brand-section .section-description h2{ font-size: 1.4rem; }
}

