.poster-container {
    width: 100%;
    padding: 120px 5px 40px;
    display: flex;
    justify-content: center;
    direction: rtl;
}

.poster {
    width: 100%;
    max-width: 1400px;
    min-height: 600px;
    height: auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 20px;
}

.poster::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('pbdq.png') center/cover;
    opacity: 0.1;
    pointer-events: none;
}

.poster-content {
    text-align: center;
    color: #ffffff;
    z-index: 1;
    padding: 0 40px;
    max-width: 800px;
    width: 100%;
}

.poster-tags {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.poster-tags .tag {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.poster-tags .tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.poster-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    font-family: 'Vazirmatn', sans-serif;
}

.poster-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
    font-family: 'Vazirmatn', sans-serif;
}

.poster-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    
}

.feature i {
    font-size: 24px;
    color: #4a90e2;
}

.feature span {
    font-size: 16px;
    font-family: 'Vazirmatn', sans-serif;
}

.poster-cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.poster-cta {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Vazirmatn', sans-serif;
}

.poster-cta.primary {
    background: linear-gradient(135deg, #4a90e2 0%, #63b3ed 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.poster-cta.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.poster-cta:hover {
    transform: translateY(-3px);
}

.poster-cta.primary:hover {
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.poster-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Poster Small Styles */
.poster-container-small {
    position: relative;
    margin-top: -100px;
    z-index: 1;
    direction: rtl;
}

.poster-small {
    width: 85%;
    height: 200px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.poster-small-content {
    text-align: center;
    padding: 20px;
}

.poster-small-content h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Vazirmatn', sans-serif;
}

.poster-small-content p {
    font-size: 16px;
    color: #666;
    font-family: 'Vazirmatn', sans-serif;
}

@media screen and (max-width: 768px) {
    .poster-container {
        padding: 100px 5px 30px;
    }
    
    .poster {
        min-height: 500px;
        padding: 30px 15px;
    }
    
    .poster-content {
        padding: 0 20px;
    }
    
    .poster-content h1 {
        font-size: 36px;
    }
    
    .poster-content p {
        font-size: 18px;
    }
    
    .poster-features {
        gap: 20px;
    }
    
    .poster-tags {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .poster-container {
        padding: 70px 5px 20px;
    }
    
    .poster {
        min-height: 400px;
        padding: 20px 10px;
    }
    
    .poster-content {
        padding: 0 15px;
    }
    
    .poster-content h1 {
        font-size: 28px;
    }
    
    .poster-content p {
        font-size: 16px;
    }
    
    .poster-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .poster-cta-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .poster-cta {
        width: 100%;
        text-align: center;
    }
    
    .poster-small {
        height: 150px;
    }
    
    .poster-small-content h3 {
        font-size: 20px;
    }
    
    .poster-small-content p {
        font-size: 14px;
    }
}

@media screen and (min-width: 1440px) {
    .poster {
        max-width: 1400px;
    }
}

@media screen and (min-width: 1920px) {
    .poster {
        max-width: 1800px;
    }
}
