/*
 * Home Page Styles
 * Page-specific styling for the index.php page
 */

/* Home Page Hero */
.home-page .hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    /* Ensure hero sits below fixed header - adjusted for new global padding */
    margin-top: -70px;
    padding-top: 70px;
    padding-bottom: 4rem;
}

.home-page .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

.home-page .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.home-page .hero-section .container {
    position: relative;
    z-index: 3;
}

.home-page .hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.home-page .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.home-page .hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.home-page .hero-trust-indicators {
    margin-top: 1.5rem;
    text-align: center;
}

.home-page .trust-item {
    display: inline-block;
    margin-right: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Hero Visual */
.home-page .hero-visual {
    text-align: center;
}

.home-page .hero-image-container {
    position: relative;
    display: inline-block;
}

.home-page .hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.home-page .hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.home-page .hero-image-glow {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.1));
    border-radius: 20px;
    filter: blur(20px);
    z-index: -1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

/* Hero Stats */
.home-page .hero-stats-horizontal {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.home-page .stat-item-horizontal {
    background: var(--cp-shade);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 150px;
}

.home-page .stat-item-horizontal:hover {
    transform: translateY(-3px);
    border-color: var(--cp-red-primary);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.home-page .stat-number-hero {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--cp-red-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.home-page .stat-label-hero {
    font-size: 0.9rem;
    color: var(--white);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Features Section */
.home-page .features-section {
    padding: 5rem 0;
    background: var(--cp-surface);
}

.home-page .features-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.home-page .feature-card {
    background: var(--cp-shade);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: var(--spacing-sm) auto;
}

.home-page .feature-card:hover {
    background: var(--cp-focus);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.1);
}

.home-page .feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.home-page .feature-card:hover .feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.home-page .feature-icon {
    font-size: 2rem;
}

.home-page .feature-title {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-align: center;
}

.home-page .feature-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.home-page .feature-highlight {
    margin-top: 1rem;
    padding: 0.5rem;
    background: var(--cp-focus);
    border-radius: 6px;
    border-left: 3px solid var(--cp-red-primary);
    text-align: center;
}

/* Value Proposition Section */
.home-page .value-proposition {
    padding: 4rem 0;
}

.home-page .benefit-card {
    background: var(--cp-shade);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    margin: var(--spacing-sm) auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.home-page .benefit-card:hover {
    background: var(--cp-focus);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.2);
}

.home-page .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border-left: 3px solid #dc2626;
    transition: all 0.3s ease;
}

.home-page .benefit-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.home-page .benefit-icon {
    background: #FFFFFF;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-size: 0.8rem;
    font-weight: bold;
}

.home-page .benefit-content p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

/* Screenshots Section */
.home-page .screenshots-showcase {
    padding: 5rem 0;
}

.home-page .screenshot-item-compact {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.home-page .screenshot-item-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.home-page .screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    text-align: center;
}

.home-page .screenshot-overlay h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.home-page .screenshot-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* App Stats Section */
.home-page .app-stats {
    padding: 5rem 0;
}

.home-page .stat-card {
    background: var(--cp-shade);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    margin: var(--spacing-sm) auto;
}

.home-page .stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-primary);
    box-shadow: 0 15px 35px rgba(211, 47, 47, 0.3);
}

.home-page .stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: grayscale(1) brightness(1.5);
}

.home-page .stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--red-primary);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 0.5rem;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(211, 47, 47, 0.3);
}

.home-page .stat-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
    font-family: 'Montserrat', sans-serif;
}

.home-page .stat-subtext {
    font-size: 0.9rem;
    color: #999;
    font-weight: 400;
}

/* Hero Stats Styling */
.hero-stats-horizontal {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-md);
}

.stat-item-horizontal {
  background: var(--cp-shade);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 1.5rem 1rem;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  min-width: 150px;
}

.stat-item-horizontal:hover {
  transform: translateY(-3px);
  border-color: var(--cp-red-primary);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.stat-number-hero {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cp-red-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-primary);
}

.stat-label-hero {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Section with Background Images */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    transition: opacity 1s ease-in-out;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.play-store-badge {
    max-width: 300px;
    margin: 0 auto;
}

.play-store-badge img {
    transition: opacity 0.3s ease;
}

.play-store-badge:hover img {
    opacity: 1 !important;
}

/* Animated counter styles */
.stat-value.counting {
    color: var(--red-primary);
    animation: pulse 0.15s ease-in-out;
    text-shadow: 0 0 15px rgba(211, 47, 47, 0.5);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Better spacing for stats grid */
.app-stats .row.g-4 {
    justify-content: center;
}

.app-stats .stat-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Center Value Proposition cards */
.value-proposition .row.g-4 {
    justify-content: center;
}

/* Center Screenshot Showcase cards */
.screenshots-showcase .row.g-4 {
    justify-content: center;
}

/* Ensure screenshot groups and items are centered */
.screenshots-showcase .screenshot-group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.screenshots-showcase .screenshot-item-compact {
    margin-left: auto;
    margin-right: auto;
}

/* Benefit Cards (Value Proposition) */
.benefit-card {
    background: var(--cp-shade);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    margin: var(--spacing-sm) auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--red-primary);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.2);
}

.benefit-card .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    margin-right: 0;
    filter: grayscale(1) brightness(1.5);
}

.benefit-card h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.benefit-card p {
    color: #ccc;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Compact Screenshots Layout */
.screenshot-group {
    height: 100%;
}

.screenshot-item-compact {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background: var(--cp-shade);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.screenshot-item-compact:hover {
    transform: translateY(-3px);
    border-color: var(--red-primary);
    box-shadow: 0 10px 25px rgba(211, 47, 47, 0.2);
}

.screenshot-item-compact img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item-compact:hover img {
    transform: scale(1.05);
}

.screenshot-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    color: white;
    text-align: center;
}

.screenshot-overlay h5 {
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

.screenshot-overlay p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Remove old screenshot gallery styles */
.screenshot-gallery,
.screenshot-thumbnails {
    display: none;
}

/* Hero Section Spacing Fix */
.hero-section {
    padding-top: 0;
    padding-bottom: 4rem;
}

.section-badge {
    margin-top: 0;
}

/* Feature Cards Centering */
.feature-card {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    margin: var(--spacing-sm) auto;
}

.feature-icon-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    text-align: center !important;
    margin-bottom: 1rem;
}

.feature-description {
    text-align: center !important;
    margin-bottom: 1.5rem;
}

.feature-highlight {
    text-align: center !important;
    margin-top: auto;
}

/* Ensure features section is properly centered */
.features-section .row.g-4 {
    justify-content: center;
}

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

.features-section .section-title,
.features-section .section-subtitle {
    text-align: center;
}

.features-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.features-section .feature-card {
    text-align: center;
}

/* Ensure stat cards have proper margin within grid columns */
.app-stats .col-lg-3,
.app-stats .col-md-6 {
    margin-bottom: var(--spacing-lg);
}

.app-stats .stat-card {
    margin: 0 auto var(--spacing-sm) auto !important;
}

/* Ensure feature cards have proper margin within grid columns */
.features-section .col-lg-3,
.features-section .col-md-6 {
    margin-bottom: var(--spacing-lg);
}

.features-section .feature-card {
    margin: 0 auto var(--spacing-sm) auto !important;
}

/* Ensure benefit cards have proper margin within grid columns */
.value-proposition .col-lg-3,
.value-proposition .col-md-6 {
    margin-bottom: var(--spacing-lg);
}

.value-proposition .benefit-card {
    margin: 0 auto var(--spacing-sm) auto !important;
}

/* User Comments Section - Compact 3x2 Grid Layout */
.user-comments {
    padding: 4rem 0;
    background: var(--cp-surface);
}

/* Ensure proper grid layout */
.user-comments .row {
    display: flex;
    flex-wrap: wrap;
}

.user-comments .col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.user-comments .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.comment-card {
    background: var(--cp-shade, #222222);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: var(--white, #ffffff);
    min-height: 280px;
    max-height: 320px;
    width: 100%;
    box-sizing: border-box;
}

.comment-card:hover {
    background: var(--cp-focus, #272727);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.comment-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.comment-rating .stars {
    color: #fbbf24;
    font-size: 1rem;
}

.comment-rating .rating-text {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
}

.comment-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.comment-content {
    flex: 1;
    margin-bottom: 1rem;
}

.comment-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cp-black);
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--white);
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.author-car {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Force comment card styles with higher specificity */
.theme-dark .comment-card,
body.home-page .comment-card,
.home-page .comment-card {
    background: #222222 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    min-height: 280px !important;
    max-height: 320px !important;
    color: white !important;
}

.theme-dark .comment-card:hover,
body.home-page .comment-card:hover,
.home-page .comment-card:hover {
    background: #272727 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1) !important;
}

/* Mobile responsive - stack on small screens */
@media (max-width: 576px) {
    .hero-stats-horizontal {
        flex-direction: column;
        gap: 1rem !important;
    }
    
    .stat-item-horizontal {
        min-width: 120px;
    }
    
    .home-page .hero-section {
        margin-top: -50px; /* Adjust for smallest mobile navbar */
        padding-top: 50px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-list {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .comment-card {
        margin-bottom: 1.5rem;
        min-height: 250px;
        max-height: none;
    }
    
    .comment-content p {
        -webkit-line-clamp: none;
        line-clamp: none;
        display: block;
    }
    
    /* Ensure single column on mobile */
    .user-comments .col-lg-4,
    .user-comments .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-actions .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  /* Add mobile margin for value proposition buttons */
  .value-proposition .btn.me-3 {
    margin-right: 0 !important;
    margin-bottom: 1rem;
  }
  
  .trust-item {
    display: block;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  
  .social-proof-stats {
    gap: 1rem;
  }
  
  .proof-item {
    flex: 1;
    min-width: 120px;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .feature-list {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Responsive grid layout for comment cards */
@media (min-width: 992px) {
    .user-comments .col-lg-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .user-comments .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 767px) {
    .user-comments .col-lg-4,
    .user-comments .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* YouTube Video Section */
.video-showcase {
    padding: 4rem 0;
}

.video-container {    
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.video-container:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.1);
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 12px;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
}

.video-overlay-info {
    margin-top: 1.5rem;
    text-align: center;
}

.video-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.video-stat {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.video-stat:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-description {
    color: rgba(255, 255, 255, 0.9);
}

.video-description .lead {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.video-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Video section responsive design */
@media (max-width: 768px) {
    .video-container {
        padding: 1.5rem;
        max-width: 95%;
    }
    
    .video-stats {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .video-stat {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .video-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .video-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .video-container {
        padding: 1rem;
    }
    
    .video-description .lead {
        font-size: 1rem;
    }
}
