<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* ��綺�綣顒乗������紙���� */

/* ������紙���� */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes scaleIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* �������紫瓜 */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* ��綺�綣鎵�絮� */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .hero-content {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .header {
        padding: 15px 0;
    }
    
    .main-nav {
        display: none;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .block-date-hero {
        flex-direction: column;
        text-align: center;
    }
    
    .block-date-hero li {
        margin: 10px 0;
    }
    
    .story-row {
        flex-direction: column;
    }
    
    .couple-story {
        margin: 20px 0;
    }
    
    .gallery-item {
        width: 100%;
        margin: 10px 0;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .header .logo h2 {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .block-event {
        padding: 20px;
    }
}

/* 茹��梧�紊�篌��� */
@media (hover: none) {
    .hover-effect {
        transform: none !important;
    }
    
    .block-img a:before {
        opacity: 0.7;
    }
}

/* 羞沿�我─綣���� */
@media (prefers-color-scheme: dark) {
    :root {
        --text-color: #ffffff;
        --bg-color: #1a1a1a;
    }
    
    body {
        background-color: var(--bg-color);
        color: var(--text-color);
    }
    
    .header.switched-header {
        background-color: rgba(26, 26, 26, 0.98);
    }
}

/* ���糸散菴�膠� */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* 羯������� */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* �丞���������� */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.1);
}

/* �������紙���� */
.btn-animate {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-animate:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-animate:hover:after {
    width: 300px;
    height: 300px;
} </pre></body></html>