/* Marquee 樣式 */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: transparent;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-text {
    display: inline-block;
    font-family: 'Marcellus', serif;
    font-size: 220px;
    font-weight: normal;
    color: #E3C6B4;
    margin-right: 100px;
    white-space: nowrap;
}

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

/* 響應式設計 */
@media (max-width: 768px) {
    .marquee-text {
        font-size: 110px;
        margin-right: 50px;
    }
}

@media (max-width: 480px) {
    .marquee-text {
        font-size: 80px;
        margin-right: 30px;
    }
} 