.instagram-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    margin: 50px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.instagram-section h2 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.instagram-section p {
    color: #666666;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}
/* Sponsor Section Styles - Matching Instagram Section Design */
.sponsor-section {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    margin: 50px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.sponsor-section h2 {
    color: #1a1a1a;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.sponsor-section h2 i {
    margin-left: 10px;
    color: #e91e63;
}

.sponsor-section > p {
    color: #666666;
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.sponsor-content {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px 25px;
    max-width: 620px;
    margin: 0 auto;
}

.sponsor-content h3 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.sponsor-content p {
    color: #666666;
    margin-bottom: 25px;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
}

.app-download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.app-store-btn {
    display: inline-block;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
    background: #ffffff;
    padding: 8px 12px;
}

.app-store-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.app-store-btn img {
    height: 50px;
    width: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sponsor-section {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .sponsor-section h2 {
        font-size: 22px;
    }
    
    .sponsor-section > p {
        font-size: 14px;
    }
    
    .sponsor-content {
        padding: 25px 20px;
    }
    
    .sponsor-content h3 {
        font-size: 18px;
    }
    
    .sponsor-content p {
        font-size: 14px;
    }
    
    .app-store-btn img {
        height: 45px;
    }
    
    .app-download-buttons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .sponsor-section {
        padding: 25px 15px;
    }
    
    .sponsor-content {
        padding: 20px 15px;
    }
    
    .app-store-btn {
        padding: 6px 10px;
    }
}
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 30px 0;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.instagram-video-item {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    background: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.instagram-video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.instagram-video-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 32px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.instagram-video-item:hover .video-play-icon {
    opacity: 1;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.15);
    margin-top: 15px;
    letter-spacing: 0.3px;
}

.instagram-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.25);
}

.instagram-follow-btn i {
    margin-left: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .instagram-grid {
        gap: 10px;
    }
    
    .instagram-section {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .instagram-section h2 {
        font-size: 22px;
    }
    
    .instagram-section p {
        font-size: 14px;
    }
    
    .video-play-icon {
        font-size: 28px;
    }
    
    .instagram-follow-btn {
        padding: 12px 28px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        gap: 8px;
    }
    
    .instagram-section {
        padding: 25px 15px;
    }
}
/* Countdown Timer Styles */
.countdown-timer {
    direction: rtl;
    font-family: 'Vazir', Arial, sans-serif;
    text-align: center;
    margin: 30px 0;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.countdown-timer h2 {
    margin-bottom: 25px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.countdown-timer .time-units {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-timer .time-unit {
    background: white;
    border-radius: 12px;
    padding: 20px 15px;
    min-width: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    cursor: default;
}

.countdown-timer .time-unit:hover {
    transform: translateY(-5px);
}

.countdown-timer .time-value {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
    font-family: 'Vazir', monospace;
}

.countdown-timer .time-label {
    margin: 0;
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.countdown-timer .reminder-box {
    margin-top: 25px;
    padding: 15px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.countdown-timer .reminder-box p {
    margin: 0;
    color: white;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 600px) {
    .countdown-timer {
        padding: 20px 10px;
    }
    
    .countdown-timer h2 {
        font-size: 1.2rem;
    }
    
    .countdown-timer .time-unit {
        min-width: 70px;
        padding: 15px 10px;
    }
    
    .countdown-timer .time-value {
        font-size: 2rem;
    }
    
    .countdown-timer .time-label {
        font-size: 0.9rem;
    }
}
/* Payment Help Section */
.payment-help-section {
    background: #ffffff;
    border: 2px solid #3f51b5;
    border-radius: 12px;
    padding: 24px 30px;
    margin: 25px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(63, 81, 181, 0.08);
    transition: all 0.3s ease;
}

.payment-help-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(63, 81, 181, 0.12);
    border-color: #303f9f;
}

.payment-help-section h3 {
    color: #1a237e;
    margin: 0 0 12px 0;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.payment-help-section h3 i {
    margin-left: 8px;
    color: #3f51b5;
}

.payment-help-section p {
    color: #555;
    margin: 0 0 18px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.payment-help-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #3f51b5 0%, #303f9f 100%);
    color: #ffffff;
    padding: 13px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(63, 81, 181, 0.2);
    letter-spacing: 0.2px;
}

.payment-help-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(63, 81, 181, 0.3);
    background: linear-gradient(135deg, #303f9f 0%, #1a237e 100%);
}

.payment-help-btn i {
    margin-left: 10px;
    font-size: 1rem;
}

@media (max-width: 600px) {
    .payment-help-section {
        padding: 20px 18px;
        margin: 20px 0;
    }
    
    .payment-help-section h3 {
        font-size: 1.1rem;
    }
    
    .payment-help-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .payment-help-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}
