/* CSS for Blazor app */
#blazor-error-ui {
    background-color: #ffffe0;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

/* ===== ABOUT PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grid)"/></svg>');
    opacity: 0.3;
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero .ministry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-style: italic;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.mission-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--light-text);
}

.mission-statement {
    font-size: 1.2rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.mission-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.pillar {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.pillar-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--dark-bg);
    flex-shrink: 0;
}

.pillar h3 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.pillar p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mission-stats .stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.mission-stats .stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mission-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.mission-stats .stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.member-image {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 215, 0, 0.3);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.member-image:hover .member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-gold);
    color: var(--dark-bg);
    transform: scale(1.1);
}

.member-info h3 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.member-role {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.specialty {
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--dark-bg);
}

.value-card h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--accent-orange));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Orbitron', sans-serif;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-content h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.timeline-content p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-gold), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dark-bg);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.5rem;
}

.form-group label {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form .form-input {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--light-text);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form .form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form .form-input::placeholder {
    color: var(--gray-text);
}

.contact-form select.form-input {
    cursor: pointer;
}

.contact-form select.form-input option {
    background: var(--dark-bg);
    color: var(--light-text);
}

.contact-form textarea.form-input {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    margin-top: 1rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: 0;
        min-width: 80px;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .mission-pillars {
        gap: 1.5rem;
    }
    
    .pillar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-year {
        min-width: 70px;
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .about-hero .hero-title {
        font-size: 2rem;
    }
    
    .team-member,
    .value-card,
    .contact-item,
    .contact-form {
        padding: 1.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        width: 120px;
        height: 120px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .mission-stats {
        gap: 1.5rem;
    }
    
    .mission-stats .stat-item {
        padding: 1.5rem;
    }
}

/* ===== PRAYER REQUEST SECTION STYLES ===== */
.prayer-request-section {
    padding: 80px 0;
    background: var(--darker-bg);
    position: relative;
}

.prayer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}

.prayer-info {
    display: flex;
    flex-direction: column;
}

.prayer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
}

.prayer-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--light-text);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.prayer-description {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

.prayer-subtitle {
    font-size: 1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.prayer-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prayer-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--light-text);
    font-weight: 500;
}

.prayer-feature i {
    color: var(--primary-gold);
    font-size: 1.2rem;
    width: 20px;
}

.prayer-form-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.prayer-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-blue));
}

.prayer-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: var(--light-text);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--gray-text);
}

.form-select {
    cursor: pointer;
}

.form-select option {
    background: var(--dark-bg);
    color: var(--light-text);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.5;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    color: var(--light-text);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.form-checkbox {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.form-checkbox:checked {
    background: var(--primary-purple);
    border-color: var(--primary-purple);
}

.form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkmark {
    display: none;
}

.btn-submit-prayer {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 12px;
}

.success-message {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    color: var(--success-green);
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.success-message h3 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.success-message p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.5;
}

.error-message {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    color: var(--error-red);
}

.error-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.error-message h3 {
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.error-message p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.5;
}

.validation-error {
    color: var(--error-red);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Prayer Statistics */
.prayer-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Responsive Design for Prayer Request Section */
@media (max-width: 1024px) {
    .prayer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .prayer-stats {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .prayer-request-section {
        padding: 60px 0;
    }
    
    .prayer-title {
        font-size: 2rem;
    }
    
    .prayer-form-container {
        padding: 2rem;
    }
    
    .prayer-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .prayer-features {
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .prayer-form-container {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.8rem 1rem;
    }
    
    .prayer-title {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   MODERN PROGRAMS PAGE STYLES
   ======================================== */

/* Programs Hero Section */
.programs-hero-modern {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    margin-top: 80px;
}

.programs-hero-modern .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.programs-hero-modern .floating-cross,
.programs-hero-modern .floating-bible,
.programs-hero-modern .floating-dove,
.programs-hero-modern .floating-heart {
    position: absolute;
    font-size: 2rem;
    opacity: 0.1;
    animation: particleFloat 15s ease-in-out infinite;
}

.programs-hero-modern .floating-cross {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.programs-hero-modern .floating-bible {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.programs-hero-modern .floating-dove {
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.programs-hero-modern .floating-heart {
    top: 40%;
    right: 30%;
    animation-delay: 9s;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.ministry-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.cross-icon {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

.hero-title-modern {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.hero-description-modern {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-stats .stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Featured Programs Section */
.featured-programs-modern {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-modern h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.section-header-modern p {
    font-size: 1.1rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.featured-program-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.featured-program-card.live-program {
    border-color: rgba(239, 68, 68, 0.3);
}

.featured-program-card.live-program:hover {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 20px 40px rgba(239, 68, 68, 0.2);
}

.program-visual {
    position: relative;
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.live-indicator-large {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    animation: livePulse 2s ease-in-out infinite;
}

.program-emoji {
    font-size: 3rem;
    opacity: 0.8;
}

.program-details {
    padding: 2rem;
}

.program-category {
    display: inline-block;
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-gold);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.program-details h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.program-details p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-schedule {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.schedule-icon {
    font-size: 1rem;
}

.watch-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.watch-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.watch-btn.live-btn {
    background: var(--gradient-accent);
    color: white;
}

.watch-btn.live-btn:hover {
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.btn-icon {
    font-size: 1rem;
}

/* Program Categories Section */
.program-categories-modern {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card-modern {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.category-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.category-icon-modern {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.category-card-modern h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.category-card-modern p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-stats {
    margin-top: auto;
}

.stat-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.category-card-modern:hover .category-hover-effect {
    opacity: 1;
}

/* Schedule Section */
.schedule-section-modern {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.schedule-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.schedule-day-modern {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.schedule-day-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.schedule-day-modern.sabbath {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.day-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.day-header h3 {
    font-size: 1.3rem;
    color: var(--light-text);
    margin: 0;
}

.day-emoji {
    font-size: 1.5rem;
}

.day-programs-modern {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.program-slot-modern {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    position: relative;
}

.program-slot-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.program-slot-modern.featured {
    border-left: 3px solid var(--primary-gold);
}

.program-slot-modern.special {
    border-left: 3px solid var(--primary-purple);
}

.program-slot-modern.highlight {
    border-left: 3px solid var(--accent-orange);
    background: rgba(255, 215, 0, 0.05);
}

.time-badge {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.program-info-modern h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.program-info-modern p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.live-indicator-small {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    animation: livePulse 2s ease-in-out infinite;
}

/* Ministry Impact Section */
.ministry-impact-modern {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.impact-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.impact-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.impact-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design for Programs Page */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .schedule-timeline {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .programs-hero-modern {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .schedule-timeline {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .program-slot-modern {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .time-badge {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .programs-hero-modern .container,
    .featured-programs-modern .container,
    .program-categories-modern .container,
    .schedule-section-modern .container,
    .ministry-impact-modern .container {
        padding: 0 0.5rem;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .section-header-modern h2 {
        font-size: 2rem;
    }
    
    .featured-program-card,
    .category-card-modern,
    .schedule-day-modern,
    .impact-card {
        padding: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: #e0e0e0;
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: #1b6ec2;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}
/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&family=Cinzel:wght@400;500;600;700;800;900&family=Montserrat:wght@100;200;300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* BASE STYLES */
:root {
    /* Primary Color Scheme */
    --yellow: #ffc107;
    --white: #ffffff;
    --blue: #3c55ff;
    --black: #0a0a0f;
    --red: #ff3a4c;

    /* Variations */
    --yellow-light: #ffe082;
    --yellow-dark: #ffa000;
    --blue-light: #6b7fff;
    --blue-dark: #2c3aaa;
    --red-light: #ff6b79;
    --red-dark: #c62828;

    /* UI Elements */
    --background: var(--black);
    --card-bg: rgba(25, 25, 38, 0.75);
    --text-primary: var(--white);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-accent: var(--yellow);

    /* Glows */
    --glow-yellow: rgba(255, 193, 7, 0.6);
    --glow-blue: rgba(60, 85, 255, 0.6);
    --glow-red: rgba(255, 58, 76, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
            radial-gradient(circle at 15% 20%, var(--glow-blue) 0%, transparent 35%),
            radial-gradient(circle at 85% 80%, var(--glow-yellow) 0%, transparent 35%);
    background-attachment: fixed;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 4rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    margin-bottom: 1rem;
}

.highlight-text {
    background: linear-gradient(90deg, var(--yellow), var(--yellow-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.faith-text {
    color: var(--white);
}

.tv-text {
    color: var(--yellow);
    margin-left: 0.5rem;
}

/* BUTTONS */
.btn-primary, .btn-secondary, .btn-small, .btn-reminder, .btn-highlight, .btn-live, .btn-submit {
    font-family: 'Orbitron', sans-serif;
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.2);
}

.btn-primary:hover, .btn-live:hover, .btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.6);
    background: var(--yellow-light);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
    border-color: var(--yellow-light);
    color: var(--yellow-light);
}

.btn-small {
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
}

.btn-reminder {
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.btn-reminder:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-highlight {
    background: var(--yellow);
    color: var(--black);
    border: none;
}

.btn-highlight:hover {
    background: var(--yellow-light);
}

.btn-live {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 58, 76, 0.4);
}

.btn-live:hover {
    background: var(--red-light);
    box-shadow: 0 8px 25px rgba(255, 58, 76, 0.6);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    margin-top: 80px; /* Add this to account for fixed header */
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
    position: relative;
}

/* Hero Logo Font Styling */
.hero-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 5.5rem;
    letter-spacing: 2px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 40%, #ffc107 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-logo .faith-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 200;
    font-style: italic;
    text-transform: none;
    letter-spacing: 4px;
    position: relative;
    display: inline-block;
    color: #ffffff;
    vertical-align: middle;
}

.hero-logo .tv-text {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 0.5em;
    vertical-align: top;
    margin-left: 10px;
    display: inline-block;
    padding: 0.2em 0.4em;
    background: #ffc107;
    color: #0a0a0f;
    border-radius: 8px;
    letter-spacing: normal;
    position: relative;
    top: -15px;
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 193, 7, 0.15), transparent 70%);
    z-index: -1;
    border-radius: 10px;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin: 2rem 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.7;
    z-index: 2;
}

.hero-scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* FEATURED PROGRAMS SECTION */
.feature-programs-section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.8;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.program-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    cursor: pointer;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.program-card:hover .program-cta {
    color: var(--yellow);
}

.program-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
}

.program-time {
    background: rgba(0, 0, 0, 0.6);
    border-radius: 20px;
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.program-play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    position: absolute;
    bottom: -25px;
    right: 20px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    transition: all 0.3s ease;
}

.program-card:hover .program-play-btn {
    transform: scale(1.1);
    background: var(--yellow-light);
}

.program-content {
    padding: 2rem;
    padding-top: 1.5rem;
}

.program-tag {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-bottom: 1rem;
    background: rgba(60, 85, 255, 0.2);
    color: var(--blue-light);
}

.highlight-tag {
    background: rgba(255, 58, 76, 0.2);
    color: var(--red-light);
}

.program-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.program-description {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.program-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

/* LIVE NOW SECTION */
.live-now-section {
    padding: 5rem 0;
    background: linear-gradient(0deg, rgba(10, 10, 15, 0.8), rgba(17, 25, 40, 0.5)),
    url('/images/live-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.live-now-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(10, 10, 15, 0.9) 0%, rgba(17, 25, 40, 0.4) 100%);
}

.live-now-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
}

.pulse-dot {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.7;
    }
    100% {
        transform: scale(0.8);
        opacity: 1;
    }
}

.live-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.live-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 16px;
    overflow: hidden;
    background: var(--card-bg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(17, 25, 40, 0.6), rgba(10, 10, 15, 0.8));
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--red);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.video-placeholder:hover i {
    color: var(--red-light);
    transform: scale(1.1);
}

.live-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(5px);
}

.live-viewers, .live-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.live-viewers i {
    color: var(--red);
}

/* NEXT UP SECTION */
.next-up-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(180deg, rgba(10, 10, 15, 1), rgba(17, 25, 40, 0.9));
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-day {
    position: relative;
    padding-left: 3rem;
}

.timeline-day::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-day.active::before {
    background: linear-gradient(to bottom, var(--blue), var(--blue-light));
}

.timeline-day.highlight-day::before {
    background: linear-gradient(to bottom, var(--yellow), var(--yellow-light));
}

.day-name {
    position: absolute;
    left: -24px;
    top: 0;
    background: var(--blue);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
}

.timeline-day.active .day-name {
    background: var(--blue);
}

.timeline-day.highlight-day .day-name {
    background: var(--yellow);
    color: var(--black);
}

.timeline-events {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-event {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-event:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.highlight-event {
    border-left: 3px solid var(--yellow);
}

.event-time {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.event-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.event-description {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.status-live {
    background: var(--red);
    color: var(--white);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    animation: pulse-status 1.5s infinite;
}

@keyframes pulse-status {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        opacity: 1;
    }
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 6rem 0;
    position: relative;
}

.testimonials-carousel {
    display: flex;
    gap: 2rem;
    overflow: hidden;
    padding: 2rem 1rem;
    position: relative;
}

.testimonial-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 2.5rem;
    min-width: 350px;
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--yellow);
    opacity: 0.2;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--yellow);
}

.author-name {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.author-detail {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-bottom: 0;
}

.testimonial-rating {
    color: var(--yellow);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.control-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.control-arrow:hover {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.1);
}

.control-dots {
    display: flex;
    gap: 0.6rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-dot.active {
    background: var(--yellow);
    transform: scale(1.2);
}

/* MOBILE APP SECTION */
.mobile-app-section {
    padding: 6rem 0;
    position: relative;
    background: linear-gradient(0deg, rgba(17, 25, 40, 0.8), rgba(10, 10, 15, 1));
}

.app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.app-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.app-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
}

.app-feature i {
    font-size: 2rem;
    color: var(--yellow);
}

.app-download {
    display: flex;
    gap: 1rem;
}

.app-store-link, .play-store-link {
    height: 50px;
    display: inline-block;
    transition: all 0.3s ease;
}

.app-store-link:hover, .play-store-link:hover {
    transform: translateY(-5px);
}

.app-store-link img, .play-store-link img {
    height: 100%;
    width: auto;
}

.app-showcase {
    position: relative;
    display: flex;
    justify-content: center;
}

.app-screen {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 2;
}

.app-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--glow-yellow) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    filter: blur(50px);
    z-index: 1;
}

/* NEWSLETTER SECTION */
.newsletter-section {
    padding: 6rem 0;
    position: relative;
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.newsletter-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.newsletter-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.newsletter-benefits i {
    color: var(--yellow);
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.1);
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.7;
    text-align: center;
}

.form-privacy a {
    color: var(--yellow);
    text-decoration: none;
}

.form-privacy a:hover {
    text-decoration: underline;
}

.social-connect {
    margin-top: 4rem;
    text-align: center;
}

.social-connect h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-5px);
}

/* SCROLL TO TOP */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.scroll-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.scroll-btn.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-btn:hover {
    background: var(--yellow-light);
    transform: translateY(-5px);
}

/* HEADER STYLES */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.site-header.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-text .faith-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-style: italic;
}

.logo-text .tv-text {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 0.8em;
    margin-left: 5px;
    padding: 0.1em 0.3em;
    background: var(--yellow);
    color: var(--black);
    border-radius: 4px;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--white);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-toggle, .account-link, .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-toggle:hover, .account-link:hover, .mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.account-link {
    text-decoration: none;
}

.live-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--red);
    color: var(--white);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    margin-left: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.live-button:hover {
    background: var(--red-light);
    transform: translateY(-2px);
}

.live-indicator {
    display: block;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

.mobile-menu-toggle {
    display: none;
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(10, 10, 15, 0.95);
    z-index: 101;
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: height 0.3s ease;
}

.search-overlay.open {
    height: 100vh;
}

.search-form {
    width: 100%;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--yellow);
    background: rgba(255, 255, 255, 0.1);
}

.search-button {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--yellow);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    background: var(--yellow-light);
}

.search-close {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--background);
    z-index: 102;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.mobile-menu.open {
    right: 0;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-menu-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.mobile-nav {
    flex: 1;
    padding: 2rem 1.5rem;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
    color: var(--yellow);
    transform: translateX(10px);
}

.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-social-links {
    display: flex;
    gap: 1rem;
}

.mobile-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

/* FOOTER STYLES */
.site-footer {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 1));
    padding-top: 5rem;
    position: relative;
}

.footer-top {
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
}

.footer-brand {
    margin-right: 2rem;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    opacity: 0.7;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-3px);
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--yellow);
    border-radius: 1.5px;
}

.widget-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.widget-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.widget-links a:hover {
    color: var(--yellow);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    font-size: 0.9rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    opacity: 0.7;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
}

/* Section fade-in animation */
.feature-programs-section, .live-now-section, .next-up-section,
.testimonials-section, .mobile-app-section, .newsletter-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Success message styling */
.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 3rem;
    color: var(--yellow);
    margin-bottom: 1rem;
}

/* Video loading animation */
.video-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-family: 'Orbitron', sans-serif;
    color: var(--yellow);
    position: relative;
}

.video-loading:after {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid var(--yellow);
    border-radius: 50%;
    border-top-color: transparent;
    margin-left: 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .hero-logo {
        font-size: 4.5rem;
    }

    .nav-list {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .hero-logo {
        font-size: 3.5rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .header-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .live-now-content,
    .app-content,
    .newsletter-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .live-now-content {
        text-align: center;
    }

    .live-description {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        font-size: 2.8rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .timeline-event {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .event-time {
        margin-bottom: 1rem;
    }

    .app-features {
        grid-template-columns: 1fr;
    }

    .live-button span {
        display: none;
    }

    .live-button {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .live-indicator {
        margin: 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-logo {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .timeline-day {
        padding-left: 2rem;
    }

    .day-name {
        left: -15px;
        width: 36px;
        height: 36px;
        font-size: 0.7rem;
    }

    .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
    }

    .app-download {
        flex-direction: column;
        align-items: center;
    }

    .header-content {
        height: 70px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .search-input {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }

    .search-button, .search-close {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .mobile-menu {
        width: 100%;
    }
}
/* MINIMALIST FOOTER STYLES */
.site-footer {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.7), rgba(10, 10, 15, 0.9));
    padding: 4rem 0 2rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-container {
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 2rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: var(--yellow);
    transform: translateY(-3px);
    display: inline-block;
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    background: var(--yellow);
    color: var(--black);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    font-size: 0.8rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    opacity: 0.6;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--yellow);
    opacity: 1;
}

.footer-attribution {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    opacity: 0.4;
}

@media (max-width: 768px) {
    .footer-nav {
        flex-wrap: wrap;
        gap: 1.5rem 2rem;
        justify-content: center;
    }
}
/* Add these styles to app.css for SVG program cards */

/* SVG Program Cards */
.program-image {
    height: 200px;
    position: relative;
    overflow: hidden;
    background: var(--background);
}

.program-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.5s ease;
}

.program-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    z-index: 2;
}

.program-card:hover .program-svg {
    transform: scale(1.05);
}

/* Enhanced hover effects */
.program-card:hover .program-overlay {
    background: rgba(0, 0, 0, 0.3);
}

/* SVG animation hover effect - stop animations when not hovering */
.program-card:not(:hover) .program-svg object,
.program-card:not(:hover) .program-svg svg {
    animation-play-state: paused;
}

.program-card:hover .program-svg object,
.program-card:hover .program-svg svg {
    animation-play-state: running;
}

/* ========================================
   MODERN HOMEPAGE STYLES
   ======================================== */

/* Modern Dawn of Faith TV Homepage Styles */
:root {
    /* Modern Homepage Color Variables */
    --primary-gold: #FFD700;
    --primary-blue: #1e3a8a;
    --primary-purple: #7c3aed;
    --accent-orange: #f97316;
    --accent-pink: #ec4899;
    --dark-bg: #0f172a;
    --darker-bg: #020617;
    --light-text: #f8fafc;
    --gray-text: #94a3b8;
    --success-green: #10b981;
    --warning-yellow: #f59e0b;
    --error-red: #ef4444;
    
    --gradient-primary: linear-gradient(135deg, var(--primary-gold) 0%, var(--accent-orange) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-purple) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-pink) 0%, var(--primary-purple) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.3);
}

/* Only apply these styles to homepage sections, not header/footer */
.hero-modern,
.live-now-modern,
.ministry-pathways-modern,
.featured-modern,
.newsletter-modern {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Scoped container styles for homepage sections only */
.hero-modern .container,
.live-now-modern .container,
.ministry-pathways-modern .container,
.featured-modern .container,
.newsletter-modern .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.animated-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(236, 72, 153, 0.2) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.9;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(120deg); }
    66% { transform: translateY(10px) rotate(240deg); }
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.badge-icon {
    font-size: 1.2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.title-line-1, .title-line-2 {
    display: block;
}

.title-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--gray-text);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-text);
    max-width: 600px;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-hero-primary, .btn-hero-secondary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.btn-hero-primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    box-shadow: var(--shadow-glow);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover .btn-glow {
    left: 100%;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.floating-cross {
    position: relative;
    width: 120px;
    height: 120px;
    animation: floatCross 6s ease-in-out infinite;
}

.cross-vertical, .cross-horizontal {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 10px;
}

.cross-vertical {
    width: 20px;
    height: 120px;
    left: 50%;
    transform: translateX(-50%);
}

.cross-horizontal {
    width: 80px;
    height: 20px;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.cross-glow {
    position: absolute;
    width: 140px;
    height: 140px;
    top: -10px;
    left: -10px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes floatCross {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

.orbit-elements {
    position: absolute;
    width: 400px;
    height: 400px;
}

.orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.orbit-1 { width: 200px; height: 200px; top: 100px; left: 100px; animation-duration: 15s; }
.orbit-2 { width: 250px; height: 250px; top: 75px; left: 75px; animation-duration: 20s; animation-direction: reverse; }
.orbit-3 { width: 300px; height: 300px; top: 50px; left: 50px; animation-duration: 25s; }
.orbit-4 { width: 350px; height: 350px; top: 25px; left: 25px; animation-duration: 30s; animation-direction: reverse; }

.orbit-item {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    animation: counterRotate 20s linear infinite;
}

.orbit-1 .orbit-item { animation-duration: 15s; }
.orbit-2 .orbit-item { animation-duration: 20s; animation-direction: reverse; }
.orbit-3 .orbit-item { animation-duration: 25s; }
.orbit-4 .orbit-item { animation-duration: 30s; animation-direction: reverse; }

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes counterRotate {
    from { transform: translateX(-50%) rotate(0deg); }
    to { transform: translateX(-50%) rotate(-360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Live Now Section */
.live-now-modern {
    padding: 5rem 0;
    background: var(--dark-bg);
}

.live-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.live-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.live-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.live-content p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.live-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.live-viewers, .live-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.btn-live-watch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-live-watch:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 72, 153, 0.3);
}

.live-visual {
    display: flex;
    justify-content: center;
}

.video-frame {
    width: 300px;
    height: 200px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.play-triangle {
    width: 0;
    height: 0;
    border-left: 15px solid var(--dark-bg);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.video-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
}

.control-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.control-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Ministry Pathways */
.ministry-pathways-modern {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
}

.pathways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pathway-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.pathway-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.bg-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.3) 1px, transparent 0);
    background-size: 20px 20px;
}

.bg-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.programs-card .bg-glow { background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%); top: -100px; right: -100px; }
.prayer-card .bg-glow { background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%); top: -100px; right: -100px; }
.live-card .bg-glow { background: radial-gradient(circle, rgba(239, 68, 68, 0.2) 0%, transparent 70%); top: -100px; right: -100px; }
.about-card .bg-glow { background: radial-gradient(circle, rgba(16, 185, 129, 0.2) 0%, transparent 70%); top: -100px; right: -100px; }

.pathway-card:hover .bg-glow {
    opacity: 1;
}

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

.card-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.card-badge {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.card-content p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.check-icon {
    color: var(--success-green);
}

.card-footer {
    margin-top: auto;
}

.pathway-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pathway-link:hover {
    gap: 1rem;
    color: var(--light-text);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.pathway-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* Featured Content */
.featured-modern {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
}

.featured-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.card-visual {
    position: relative;
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-featured .card-visual {
    height: 250px;
}

.visual-content {
    position: relative;
    z-index: 2;
}

.content-icon {
    font-size: 3rem;
    opacity: 0.7;
}

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

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

.play-button-large {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button-large:hover {
    transform: scale(1.1);
    background: white;
}

.play-button-large .play-triangle {
    border-left: 20px solid var(--dark-bg);
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    margin-left: 5px;
}

.content-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sermon-badge { background: var(--gradient-primary); color: var(--dark-bg); }
.health-badge { background: var(--gradient-accent); color: white; }
.youth-badge { background: var(--gradient-secondary); color: white; }

.card-info {
    padding: 1.5rem;
}

.card-info h3, .card-info h4 {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.card-info h3 { font-size: 1.3rem; }
.card-info h4 { font-size: 1.1rem; }

.card-info p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.content-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--gray-text);
    font-size: 0.8rem;
}

/* Newsletter Section */
.newsletter-modern {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.newsletter-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-visual {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-elements {
    position: relative;
}

.element-1, .element-2, .element-3 {
    position: absolute;
    font-size: 3rem;
    animation: float 6s ease-in-out infinite;
}

.element-1 { top: 0; left: 0; animation-delay: 0s; }
.element-2 { top: -20px; right: -20px; animation-delay: 2s; }
.element-3 { bottom: -20px; left: 20px; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: var(--gray-text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.benefits-list {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-text);
}

.benefit-icon {
    font-size: 1.2rem;
}

.newsletter-form {
    margin-bottom: 2rem;
}

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-input {
    flex: 1;
    min-width: 200px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--light-text);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
    color: var(--gray-text);
}

.btn-subscribe {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.social-connect {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.2);
}

.social-link.facebook:hover { background: rgba(59, 89, 152, 0.3); }
.social-link.twitter:hover { background: rgba(29, 161, 242, 0.3); }
.social-link.instagram:hover { background: rgba(225, 48, 108, 0.3); }
.social-link.youtube:hover { background: rgba(255, 0, 0, 0.3); }
.social-link.spotify:hover { background: rgba(30, 215, 96, 0.3); }

/* Responsive Design for Modern Homepage */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-visual {
        height: 300px;
    }
    
    .orbit-elements {
        width: 300px;
        height: 300px;
    }
    
    .orbit-1 { width: 150px; height: 150px; top: 75px; left: 75px; }
    .orbit-2 { width: 200px; height: 200px; top: 50px; left: 50px; }
    .orbit-3 { width: 250px; height: 250px; top: 25px; left: 25px; }
    .orbit-4 { width: 300px; height: 300px; top: 0; left: 0; }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: 80vh;
        padding: 2rem 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .live-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .pathways-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .social-connect {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-modern .container,
    .live-now-modern .container,
    .ministry-pathways-modern .container,
    .featured-modern .container,
    .newsletter-modern .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pathway-card,
    .featured-card,
    .newsletter-card,
    .live-card {
        padding: 1.5rem;
    }
    
    .hero-visual {
        display: none;
    }
}

/* ========================================
   LIVE PAGE STYLES
   ======================================== */

/* Live Hero Section */
.live-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-dark);
    margin-top: 80px;
}

.live-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.live-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    color: #ef4444;
    animation: livePulse 2s ease-in-out infinite;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #ef4444;
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

.live-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.viewer-count {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 0.8rem 1.5rem;
    color: var(--gray-text);
    font-weight: 500;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Live Stream Section */
.live-stream-section {
    padding: 4rem 0;
    background: var(--dark-bg);
}

.stream-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.main-stream {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.video-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    background: var(--darker-bg);
    box-shadow: var(--shadow-xl);
}

.video-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    transform: scale(1.02);
}

.play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--dark-bg);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
    transform: scale(1.1);
    background: white;
}

.stream-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-placeholder:hover .stream-overlay {
    opacity: 1;
}

.stream-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.live-badge {
    background: rgba(239, 68, 68, 0.9);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    align-self: flex-start;
}

.stream-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.stream-controls {
    display: flex;
    gap: 0.5rem;
}

.control-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.stream-details {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.stream-meta h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.stream-description {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.stream-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.stat i {
    color: var(--primary-gold);
}

.stream-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.action-btn.primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-color: transparent;
}

.action-btn.primary:hover {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Live Chat Sidebar */
.stream-sidebar {
    display: flex;
    flex-direction: column;
}

.live-chat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    height: 600px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--light-text);
}

.chat-viewers {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-text);
    font-size: 0.9rem;
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.message-author {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-gold);
}

.message-text {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

.message-time {
    font-size: 0.8rem;
    color: var(--gray-text);
    opacity: 0.7;
}

.chat-input {
    padding: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.5rem;
}

.message-input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--light-text);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.message-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.message-input::placeholder {
    color: var(--gray-text);
}

.send-btn {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Upcoming Streams Section */
.upcoming-streams {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.upcoming-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.upcoming-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255, 215, 0, 0.3);
}

.upcoming-card.special {
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 215, 0, 0.05);
}

.upcoming-card.special::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.upcoming-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.time-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.time {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--light-text);
    font-family: 'Orbitron', sans-serif;
}

.date {
    font-size: 0.9rem;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.countdown {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem 1rem;
}

.countdown-text {
    font-size: 0.8rem;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.upcoming-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--light-text);
}

.upcoming-content p {
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.upcoming-actions {
    margin-top: auto;
}

.remind-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--light-text);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.remind-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.remind-btn.primary {
    background: var(--gradient-primary);
    color: var(--dark-bg);
    border-color: transparent;
}

.remind-btn.primary:hover {
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.special-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: var(--dark-bg);
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Stream Quality Section */
.stream-quality-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.quality-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.quality-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.quality-feature {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.quality-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-gold);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.feature-text p {
    color: var(--gray-text);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.quality-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

/* Responsive Design for Live Page */
@media (max-width: 1024px) {
    .stream-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .quality-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .quality-features {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .live-hero {
        min-height: 50vh;
        padding: 2rem 0;
    }
    
    .live-status {
        flex-direction: column;
        gap: 1rem;
    }
    
    .upcoming-grid {
        grid-template-columns: 1fr;
    }
    
    .quality-features {
        grid-template-columns: 1fr;
    }
    
    .quality-stats {
        grid-template-columns: 1fr;
    }
    
    .stream-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stream-actions {
        flex-direction: column;
    }
    
    .live-chat {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .live-stream-section .container,
    .upcoming-streams .container,
    .stream-quality-section .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .upcoming-card,
    .quality-feature,
    .stat-card,
    .stream-details,
    .live-chat {
        padding: 1.5rem;
    }
    
    .quality-feature {
        flex-direction: column;
        text-align: center;
    }
    
    .upcoming-time {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Glass Card Utility Class */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== SCROLL TO TOP COMPONENT ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.scroll-to-top i {
    color: #fff;
    font-size: 1.2rem;
}

/* ===== PRAYER PAGE STYLES ===== */
.prayer-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.prayer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="prayer-grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23prayer-grid)"/></svg>');
    opacity: 0.3;
}

.ministry-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.prayer-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.prayer-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* Prayer Ministry Section */
.prayer-ministry-section {
    padding: 80px 0;
    background: var(--dark-bg);
}

.ministry-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(124, 58, 237, 0.3);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-stats {
    margin-top: 20px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 5px;
    font-family: 'Orbitron', sans-serif;
}

.stat-label {
    color: var(--gray-text);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Prayer Resources Section */
.prayer-resources-section {
    padding: 80px 0;
    background: var(--darker-bg);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.resource-image {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: var(--primary-gold);
}

.resource-content h3 {
    color: var(--light-text);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.resource-content p {
    color: var(--gray-text);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
}

.resource-link:hover {
    color: var(--light-text);
    transform: translateX(5px);
}

/* Prayer Testimonials Section */
.prayer-testimonials {
    padding: 80px 0;
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimony-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
}

.testimony-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(16, 185, 129, 0.3);
}

.testimony-quote {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 2rem;
    color: var(--success-green);
    opacity: 0.3;
}

.testimony-text {
    font-style: italic;
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

.testimony-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: var(--light-text);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.author-info p {
    color: var(--success-green);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
}

/* Prayer Schedule Section */
.prayer-schedule {
    padding: 80px 0;
    background: var(--darker-bg);
}

.schedule-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.schedule-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: center;
}

.schedule-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.schedule-time {
    text-align: center;
    min-width: 100px;
}

.schedule-time .day {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.schedule-time .time {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--light-text);
    font-family: 'Orbitron', sans-serif;
}

.schedule-info {
    flex: 1;
}

.schedule-info h3 {
    color: var(--light-text);
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.schedule-info p {
    color: var(--gray-text);
    margin-bottom: 15px;
    line-height: 1.5;
}

.schedule-type {
    margin-top: 10px;
}

.type-badge {
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.type-badge.live {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.type-badge.community {
    background: rgba(59, 130, 246, 0.2);
    color: #3b82f6;
}

.type-badge.healing {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.type-badge.sabbath {
    background: rgba(124, 58, 237, 0.2);
    color: #7c3aed;
}

/* Responsive Design for Prayer Page */
@media (max-width: 768px) {
    .prayer-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .ministry-features {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-cards {
        grid-template-columns: 1fr;
    }
    
    .schedule-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .schedule-time {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .prayer-hero {
        padding: 100px 0 60px;
    }
    
    .prayer-hero .hero-title {
        font-size: 2rem;
    }
    
    .feature-card,
    .resource-card,
    .testimony-card,
    .schedule-card {
        padding: 20px;
    }
    
    .ministry-features,
    .resources-grid,
    .testimonials-grid,
    .schedule-cards {
        gap: 20px;
    }
}
