.inner-page-banner {
    background: linear-gradient(135deg, #DC2626 0%, #F59E0B 50%, #10B981 100%);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-page-banner::before {
    content: '';
    position: absolute;
    top: -30%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 5s ease-in-out infinite;
}

.banner-title-main {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    animation: fadeInUp 0.8s ease;
}

.banner-subtitle-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    animation: fadeInUp 1s ease;
}

.inner-content-section {
    padding: 5rem 2rem;
    background: #F9FAFB;
}

.inner-content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.content-intro-block {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
    animation: scaleIn 0.8s ease;
}

.intro-title-heading {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #DC2626, #F59E0B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.intro-text-paragraph {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4B5563;
}

.inner-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.inner-video-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.4s;
    border: 2px solid transparent;
}

.inner-video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px rgba(0,0,0,0.2);
    border-color: #F59E0B;
}

.inner-video-thumb {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.inner-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.inner-video-card:hover .inner-thumb-img {
    transform: scale(1.15) rotate(1deg);
}

.inner-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.inner-video-card:hover .inner-play-overlay {
    opacity: 1;
}

.inner-play-icon {
    font-size: 3.5rem;
    color: #FFFFFF;
    animation: pulse 1.5s ease infinite;
}

.inner-duration-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: #FFFFFF;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.inner-video-info {
    padding: 1.5rem;
}

.inner-video-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.inner-video-meta {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.75rem;
}

.inner-video-desc {
    color: #6B7280;
    line-height: 1.6;
}

.inner-cta-section {
    background: linear-gradient(135deg, #8B5CF6 0%, #EC4899 50%, #F97316 100%);
    padding: 4rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-cta-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 5%;
    width: 250px;
    height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.cta-title-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-desc-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
}

.cta-home-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: #FFFFFF;
    color: #8B5CF6;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-home-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .banner-title-main {
        font-size: 2rem;
    }
    .inner-video-grid {
        grid-template-columns: 1fr;
    }
}
