#main {
    width: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
    min-height: 100vh;
    padding-top: 80px;
}

#section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.worship-link-wrapper {
    display: flex;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 40px 20px;
    margin: 0 auto;
}

.worship-group {
    display: flex;
    width: 100%;
    max-width: 800px;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.worship-group:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.worship-group-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.worship-toggle-header {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 12px;
    padding: 16px 28px;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 16px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.worship-toggle-header:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.worship-list-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.worship-text-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #3498db, #2980b9);
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.25);
}

.worship-text-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.35);
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.worship-text-button i {
    font-size: 1.2rem;
}

.worship-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #2c3e50;
}

.worship-button-image {
    width: 300px;
    height: auto;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.worship-button-image:hover {
    transform: scale(1.05);
    filter: brightness(85%);
}

.worship-button-link {
    position: relative;
    display: block;
    text-align: center;
}

.worship-button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: bold;
    line-height: 1.4;
    transition: 0.3s;
}

.youtube-worship-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.3);
}

.youtube-content {
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.youtube-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.youtube-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

.youtube-wrapper {
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.youtube-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

body[data-page="church-section"] {
    height: 100%;
    display: flex;
    flex-direction: column;
}

body[data-page="church-section"] .page-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

body[data-page="church-section"] main {
    flex: 1;
}

#dropdownIcon {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    #main {
        padding-top: 60px;
    }

    #section {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .worship-link-wrapper {
        padding: 30px 15px;
        gap: 25px;
    }

    .worship-group {
        padding: 25px 20px;
        border-radius: 20px;
        gap: 15px;
    }

    .worship-group-title {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .worship-toggle-header {
        padding: 14px 24px;
        font-size: 1.1rem;
        border-radius: 14px;
    }

    .worship-text-button {
        padding: 14px 28px;
        font-size: 1rem;
        border-radius: 14px;
    }

    .youtube-worship-section {
        padding: 40px 15px;
    }

    .youtube-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .youtube-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .youtube-wrapper {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    #main {
        padding-top: 50px;
    }

    #section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .worship-link-wrapper {
        padding: 20px 12px;
        gap: 20px;
    }

    .worship-group {
        padding: 20px 15px;
        border-radius: 16px;
        gap: 12px;
    }

    .worship-group-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .worship-toggle-header {
        padding: 12px 20px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .worship-text-button {
        padding: 12px 24px;
        font-size: 0.95rem;
        border-radius: 12px;
    }

    .youtube-worship-section {
        padding: 30px 12px;
    }

    .youtube-title {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .youtube-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .youtube-wrapper {
        border-radius: 14px;
    }
}