body {
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
    background-color: #f0f2f5;
}

.header-gradient {
    background: linear-gradient(135deg, #1a237e 0%, #4a148c 100%);
}

.hero-gradient {
    background: linear-gradient(135deg, #1a237e 0%, #4a148c 100%);
}

.float-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    animation: pulse 2s infinite;
    z-index: 100;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 51, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(255, 87, 51, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 87, 51, 0);
    }
}

.timer-display {
    background: rgba(0, 0, 0, 0.8);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

.timer-unit {
    display: inline-block;
    margin: 0 10px;
    text-align: center;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.highlight-text {
    color: #ff5733;
    font-weight: bold;
}

.cta-section {
    background: linear-gradient(135deg, #ff9966 0%, #ff5e62 100%);
}

.review-card {
    border-left: 4px solid #6366F1;
}

.faq-trigger {
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-trigger:hover {
    background-color: #f8f9fa;
}

.faq-content {
    transition: all 0.3s ease;
}

/* 浮动按钮样式 */
.floating-action {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    background-color: white;
    color: #333;
    border: 2px solid #B3B1B1;
    border-radius: 30px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: breathing 2s infinite;
    line-height: 1;
    white-space: nowrap;
}

.floating-action:hover {
    background-color: #B3B1B1;
    color: white;
    border-color: white;
}

.floating-action:active {
    background-color: #B3B1B1;
    color: white;
    border-color: white;
}

.floating-action img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    vertical-align: middle;
    display: block;
}

.trigger-button {
    position: relative;
    z-index: 10;
}

@keyframes breathing {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* 注册表单中的按钮特殊样式 */
.floating-action.bg-success {
    background-color: #10b981;
    color: white;
    border-color: #10b981;
}

.floating-action.bg-success:hover {
    background-color: #059669;
    border-color: #059669;
}

.floating-action.hover\:bg-green-600:hover {
    background-color: #059669;
    border-color: #059669;
} 