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

body {
    font-family: "Microsoft YaHei", "SimSun", Arial, sans-serif;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 50%, #90caf9 100%);
    min-height: 100vh;
    color: #333;
    line-height: 1.8;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(100, 181, 246, 0.3);
}

h1 {
    font-size: 2.5em;
    color: #1976d2;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(25, 118, 210, 0.2);
}

.subtitle {
    font-size: 1.2em;
    color: #42a5f5;
    font-weight: 300;
}

.banner-container {
    margin-top: 30px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    display: block;
}

.offerings-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(100, 181, 246, 0.3);
}

.section-title {
    font-size: 1.8em;
    color: #1976d2;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #90caf9;
}

.offerings-images-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.offering-image-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offering-image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(100, 181, 246, 0.4);
}

.offering-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
    font-size: 1.1em;
}

.offering-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offering-image-caption {
    padding: 15px;
    text-align: center;
    color: #1976d2;
    font-size: 1.1em;
    font-weight: 500;
}

.prayers-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(100, 181, 246, 0.3);
}

.prayers-list {
    list-style: none;
}

.prayer-item {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #e3f2fd, #bbdefb);
    border-radius: 10px;
    border-left: 4px solid #1976d2;
    font-size: 1.1em;
    color: #333;
    transition: transform 0.3s ease;
}

.prayer-item:hover {
    transform: translateX(10px);
}

.prayer-item:last-child {
    margin-bottom: 0;
}

.images-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(100, 181, 246, 0.3);
}

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

.image-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(100, 181, 246, 0.4);
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1976d2;
    font-size: 1.1em;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-caption {
    padding: 15px;
    text-align: center;
    color: #1976d2;
    font-size: 1.1em;
    font-weight: 500;
}

.panorama-section {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(100, 181, 246, 0.3);
}

.panorama-container {
    overflow: hidden;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(100, 181, 246, 0.3);
}

.panorama-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.panorama-track img {
    height: 200px;
    width: auto;
    margin-right: 20px;
    object-fit: cover;
    border-radius: 5px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

footer {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(100, 181, 246, 0.3);
}

.footer-text {
    font-size: 1.2em;
    color: #1976d2;
    font-weight: 500;
}

.incense-animation {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 3em;
    animation: float 3s ease-in-out infinite;
    opacity: 0.6;
}

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

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    .container {
        padding: 20px 15px;
    }
    
    .section-title {
        font-size: 1.5em;
    }
    
    .offerings-images-grid {
        grid-template-columns: 1fr;
    }
}
