/* 重置樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 基礎樣式 */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0f0f0f;
}

/* 容器樣式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 頁首樣式 */
header {
    background-color: #1a1a1a;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
}

/* Hero 區塊樣式 */
.hero {
    padding: 120px 0 60px;
    position: relative;
    color: #ffffff;
    text-align: center;
    background: url('../images/hero.png') center/cover no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0,0,0,0.7) 0%, 
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    padding: 60px 40px;
    background: rgba(15,15,15,0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255,204,0,0.1);
    box-shadow: 0 0 50px rgba(255,204,0,0.1);
}

.hero h1 {
    font-size: 4.2em;
    margin-bottom: 40px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5),
                 0 4px 8px rgba(0,0,0,0.3),
                 0 0 30px rgba(255,204,0,0.4);
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    line-height: 1.2;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    animation: titlePulse 2s infinite;
}

@keyframes titlePulse {
    0% {
        text-shadow: 0 2px 4px rgba(0,0,0,0.5),
                     0 4px 8px rgba(0,0,0,0.3),
                     0 0 30px rgba(255,204,0,0.4);
    }
    50% {
        text-shadow: 0 2px 4px rgba(0,0,0,0.5),
                     0 4px 8px rgba(0,0,0,0.3),
                     0 0 50px rgba(255,204,0,0.6);
    }
    100% {
        text-shadow: 0 2px 4px rgba(0,0,0,0.5),
                     0 4px 8px rgba(0,0,0,0.3),
                     0 0 30px rgba(255,204,0,0.4);
    }
}

.hero h1 span {
    display: block;
    transform: perspective(500px) translateZ(0);
    transition: transform 0.3s ease;
    position: relative;
    animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.hero h1 .highlight {
    font-size: 1.4em;
    font-weight: 900;
    font-family: 'Arial Black', 'Helvetica Black', 'Impact', sans-serif;
    letter-spacing: 2px;
    position: relative;
    transform: perspective(1000px) rotateX(20deg);
    background: linear-gradient(
        to bottom,
        #FFF5D4 0%,
        #FFE5A0 15%,
        #FFD700 30%,
        #FFC125 50%,
        #FFD700 70%,
        #FFE5A0 85%,
        #FFF5D4 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 
        /* 金色光澤層 */
        0 1px 0 #FFE5A0,
        0 2px 0 #FFD700,
        0 3px 0 #FFC125,
        0 4px 0 #FFB90F,
        /* 外發光效果 */
        0 0 10px rgba(255, 215, 0, 0.7),
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3),
        0 5px 15px rgba(255, 215, 0, 0.4);
    animation: highlightFloat 4s ease-in-out infinite;
}

.hero h1 .highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 215, 0, 0.3) 45%,
        rgba(255, 215, 0, 0.6) 50%,
        rgba(255, 215, 0, 0.3) 55%,
        transparent 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    z-index: 2;
    animation: metalShine 3s infinite;
}

.hero h1 .highlight::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160%;
    height: 160%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle at center,
        rgba(255, 215, 0, 0.6) 0%,
        rgba(255, 215, 0, 0.4) 20%,
        rgba(255, 215, 0, 0.2) 40%,
        rgba(255, 215, 0, 0.1) 60%,
        rgba(255, 215, 0, 0.05) 80%,
        transparent 100%
    );
    z-index: -1;
    filter: blur(15px);
    animation: radialPulse 2s ease-in-out infinite;
}

@keyframes highlightFloat {
    0%, 100% {
        transform: perspective(1000px) rotateX(20deg) rotate(-3deg);
    }
    50% {
        transform: perspective(1000px) rotateX(20deg) rotate(3deg);
    }
}

@keyframes metalShine {
    0%, 100% {
        opacity: 0;
        transform: translateX(-100%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translateX(100%) scale(1.2);
    }
}

@keyframes radialPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

/* 手機版特別調整 */
@media (max-width: 768px) {
    .hero h1 .highlight {
        font-size: 1.3em;
        letter-spacing: 1.5px;
        transform: perspective(800px) rotateX(15deg);
    }
    
    .hero h1 .highlight::after {
        width: 180%;
        height: 180%;
        filter: blur(12px);
    }
}

.hero-features {
    margin: 50px auto;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    color: rgba(255,255,255,0.95);
    font-size: 1.8em;
    line-height: 1.5;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5),
                 0 0 20px rgba(255,204,0,0.2);
    padding: 0 20px;
    transform: perspective(500px) translateZ(0) rotate(-1deg);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-item:nth-child(2) {
    transform: perspective(500px) translateZ(0) rotate(1deg);
}

.feature-item:nth-child(3) {
    transform: perspective(500px) translateZ(0) rotate(-1deg);
}

.feature-item:hover {
    transform: perspective(500px) translateZ(20px) scale(1.05);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    20%, 100% {
        left: 200%;
    }
}

.feature-item strong {
    color: #ffcc00;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5),
                 0 0 20px rgba(255,204,0,0.3);
}

.feature-item::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,204,0,0.3) 50%, 
        transparent 100%
    );
    margin: 15px auto 0;
}

.feature-item:last-child::after {
    display: none;
}

.hero-buttons {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    justify-content: center;
}

.hero-buttons .cta-button {
    padding: 20px 45px;
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 8px;
    background: linear-gradient(135deg, #ffcc00, #ffd700);
    box-shadow: 0 5px 20px rgba(255,204,0,0.3),
                0 0 0 1px rgba(255,204,0,0.2);
    transition: all 0.4s ease;
}

.hero-buttons .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,204,0,0.4),
                0 0 0 2px rgba(255,204,0,0.3);
    background: linear-gradient(135deg, #ffd700, #ffe44d);
}

.hero-buttons .guide-btn {
    background: transparent;
    border: 2px solid rgba(255,204,0,0.5);
    color: #ffcc00;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-buttons .guide-btn:hover {
    background: rgba(255,204,0,0.15);
    border-color: #ffcc00;
    transform: translateY(-3px);
}

/* 響應式調整 */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 40px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2.6em;
    }

    .hero-features {
        gap: 30px;
    }

    .feature-item {
        font-size: 1.4em;
        background: linear-gradient(45deg, rgba(255,204,0,0.05), rgba(255,204,0,0.1));
        padding: 15px 20px;
        border-radius: 12px;
        position: relative;
        overflow: hidden;
        transform: perspective(500px) translateZ(0);
        animation: featureFloat 3s ease-in-out infinite;
        border: 1px solid rgba(255,204,0,0.1);
    }

    @keyframes featureFloat {
        0%, 100% {
            transform: translateY(0) rotate(-1deg);
        }
        50% {
            transform: translateY(-5px) rotate(1deg);
        }
    }

    .feature-item:nth-child(2) {
        animation-delay: 0.5s;
        background: linear-gradient(-45deg, rgba(255,204,0,0.05), rgba(255,204,0,0.1));
    }

    .feature-item:nth-child(3) {
        animation-delay: 1s;
        background: linear-gradient(135deg, rgba(255,204,0,0.05), rgba(255,204,0,0.1));
    }

    .feature-item strong {
        display: inline-block;
        color: #ffcc00;
        font-weight: 800;
        transform: scale(1.1);
        animation: strongPulse 2s infinite;
        padding: 0 5px;
    }

    @keyframes strongPulse {
        0%, 100% {
            text-shadow: 0 2px 4px rgba(0,0,0,0.5),
                        0 0 20px rgba(255,204,0,0.3);
        }
        50% {
            text-shadow: 0 2px 4px rgba(0,0,0,0.5),
                        0 0 30px rgba(255,204,0,0.5);
        }
    }

    .feature-item::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        height: 2px;
        background: linear-gradient(90deg, 
            transparent 0%, 
            rgba(255,204,0,0.3) 50%, 
            transparent 100%
        );
        animation: lineGlow 2s infinite;
    }

    @keyframes lineGlow {
        0%, 100% {
            opacity: 0.3;
            transform: scaleX(0.8);
        }
        50% {
            opacity: 0.8;
            transform: scaleX(1);
        }
    }

    .feature-item::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(
            circle,
            rgba(255,204,0,0.1) 0%,
            transparent 70%
        );
        animation: ripple 3s infinite;
        z-index: -1;
    }

    @keyframes ripple {
        0% {
            transform: scale(0.8);
            opacity: 0;
        }
        50% {
            opacity: 0.5;
        }
        100% {
            transform: scale(1.2);
            opacity: 0;
        }
    }

    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }

    .hero-buttons .cta-button {
        width: 100%;
    }

    header {
        padding: 15px 0;
    }

    .logo {
        justify-content: center;
    }

    .logo img {
        max-height: 50px;
    }
}

/* Benefits 區塊樣式 */
.benefits {
    padding: 80px 0;
    background-color: #1a1a1a;
    border-top: 1px solid rgba(255,204,0,0.1);
    border-bottom: 1px solid rgba(255,204,0,0.1);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 50px;
    color: #ffcc00;
    font-size: 2.4em;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px;
    background: #0f0f0f;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,204,0,0.1);
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item img {
    margin-bottom: 20px;
}

.benefit-item h3 {
    color: #ffcc00;
    margin-bottom: 15px;
    font-size: 1.6em;
}

.benefit-item p {
    color: #ffffff;
    margin-bottom: 25px;
    font-size: 1.1em;
    line-height: 1.6;
}

/* 成功案例輪播圖樣式 */
.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-slide {
    flex: 0 0 100%;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: scale(0.95);
}

.testimonial-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-content {
    background: rgba(15,15,15,0.8);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,204,0,0.1);
}

.testimonial-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.testimonial-text h3 {
    color: #ffcc00;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.testimonial-text p {
    color: #ffffff;
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 0;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,204,0,0.2);
    border: 2px solid rgba(255,204,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dot.active {
    background: #ffcc00;
    transform: scale(1.2);
}

.benefits-message {
    text-align: center;
    margin-top: 40px;
}

.benefits-message h3 {
    color: #ffcc00;
    font-size: 2em;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    animation: pulse 2s infinite;
}

.benefits-message h3 {
    font-size: 1.6em;
}

/* Steps 區塊樣式 */
.steps {
    padding: 60px 0;
    background-color: #0f0f0f;
    position: relative;
}

.steps h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #ffcc00;
    font-size: 2.4em;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
    text-transform: none;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3),
                 0 0 20px rgba(255,204,0,0.2);
    position: relative;
}

.steps h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        #ffcc00 50%, 
        transparent 100%
    );
    margin: 20px auto 0;
}

/* 輪播圖樣式 */
.steps-slider {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    overflow: hidden;
    touch-action: pan-y;
    padding: 20px 0;
}

.steps-track {
    display: flex;
    width: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.step-slide {
    flex: 0 0 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.3s ease;
    padding: 0 10px;
}

.step-slide.active {
    opacity: 1;
    transform: scale(1);
}

.step-content {
    background: rgba(26,26,26,0.95);
    border-radius: 12px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,204,0,0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,204,0,0.2) 50%, 
        transparent 100%
    );
}

.step-number {
    font-size: 4.5em;
    color: rgba(255,204,0,0.12);
    margin-bottom: 5px;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: -2px;
    -webkit-text-stroke: 1px rgba(255,204,0,0.25);
}

.step-title {
    font-size: 2em;
    margin: 50px 0 20px;
    font-weight: 600;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.step-title span {
    display: block;
}

.step-title span:first-child {
    color: rgba(255,255,255,0.9);
    font-size: 0.7em;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 5px;
}

.step-title span:last-child {
    color: transparent;
    background: linear-gradient(135deg, #ffcc00 20%, #ffd700 40%, #fff5a0 60%, #ffd700 80%);
    -webkit-background-clip: text;
    background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.step-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255,204,0,0.5) 50%, 
        transparent 100%
    );
    margin: 15px auto 0;
}

.step-description {
    color: rgba(255,255,255,0.9);
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.step-description strong {
    color: #ffcc00;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.8px;
}

.step-content img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,204,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-content img:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(255,204,0,0.15);
    border: 1px solid rgba(255,204,0,0.3);
    border-radius: 50%;
    cursor: pointer;
    color: #ffcc00;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: rgba(255,204,0,0.25);
    border-color: rgba(255,204,0,0.5);
}

.slider-nav.prev {
    left: 5px;
}

.slider-nav.next {
    right: 5px;
}

.steps-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,204,0,0.15);
    border: 2px solid rgba(255,204,0,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: #ffcc00;
    transform: scale(1.2);
    border-color: #ffcc00;
}

/* 響應式調整 */
@media (max-width: 768px) {
    .steps {
        padding: 40px 0;
    }

    .steps h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    
    .steps h2::after {
        width: 50px;
        margin: 12px auto 0;
    }
    
    .steps-slider {
        max-width: 100%;
        padding: 15px 0;
    }
    
    .step-slide {
        padding: 0 5px;
    }
    
    .step-content {
        padding: 30px 20px;
    }
    
    .step-number {
        font-size: 3.5em;
        top: 15px;
    }
    
    .step-title {
        font-size: 1.8em;
        margin: 45px 0 15px;
    }
    
    .step-title span:first-child {
        font-size: 0.65em;
        letter-spacing: 2px;
    }
    
    .step-description {
        font-size: 1.1em;
        line-height: 1.7;
        padding: 0 10px;
    }
    
    .slider-nav {
        width: 30px;
        height: 30px;
        font-size: 18px;
    }
}

/* 步驟動畫 */
@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-item {
    animation: stepFadeIn 0.6s ease-out forwards;
    animation-delay: calc(var(--step-index) * 0.2s);
}

.steps-cta {
    text-align: center;
    margin-top: 40px;
}

/* Terms 區塊樣式 */
.terms {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.terms h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffcc00;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: #0f0f0f;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,204,0,0.1);
}

.terms-content ul {
    list-style-type: none;
    padding-left: 20px;
}

.terms-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.terms-content li:before {
    content: "•";
    color: #ffcc00;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* CTA 按鈕樣式 */
.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #ffcc00;
    color: #0f0f0f;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(255,204,0,0.3);
    cursor: pointer;
}

.cta-button:hover {
    background-color: #fff;
    color: #0f0f0f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,204,0,0.4);
}

.main-cta {
    font-size: 1.2em;
    padding: 20px 40px;
}

/* Sticky CTA 樣式 */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    text-align: center;
    border-top: 1px solid rgba(255,204,0,0.1);
}

/* Main CTA Section 樣式 */
.main-cta-section {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    color: white;
    border-top: 1px solid rgba(255,204,0,0.1);
}

.main-cta-section h2 {
    margin-bottom: 20px;
}

.main-cta-section p {
    margin-bottom: 30px;
    font-size: 1.2em;
}

/* Footer 樣式 */
footer {
    padding: 40px 0;
    background-color: #0f0f0f;
    color: white;
    text-align: center;
    border-top: 1px solid rgba(255,204,0,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.footer-info h3 {
    color: #ffcc00;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
    opacity: 1;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9em;
}

/* 動畫效果 */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item,
.step-item {
    animation: fadeIn 0.6s ease-out forwards;
}

.step-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,204,0, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255,204,0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255,204,0, 0);
    }
}

/* 移除舊的 hero-image 相關樣式 */
.hero-image,
.hero-banner {
    display: none;
}

/* 底部固定導覽樣式 */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #1a1a1a, #2a2a2a);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    border-top: 1px solid rgba(255,204,0,0.1);
}

.countdown-title {
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown-title h3 {
    color: #ffffff;
    font-size: 1.2em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin: 0;
}

.countdown-timer {
    color: #ffcc00;
    font-size: 1.3em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(255,204,0,0.3);
}

.bottom-nav .claim-button {
    padding: 10px 20px;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    background: linear-gradient(135deg, #ffcc00, #ffd700);
    color: #0f0f0f;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255,204,0,0.2);
}

@media (max-width: 768px) {
    .countdown-title h3 {
        font-size: 1em;
    }

    .countdown-timer {
        font-size: 1.1em;
    }

    .bottom-nav .claim-button {
        padding: 8px 16px;
        font-size: 0.9em;
    }
} 