/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/zombie/zombie.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
.zombie-page {
    min-height: 100vh;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.zombie-container {
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.zombie-header {
    margin-bottom: 40px;
}

.zombie-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 10px 0;
}

.zombie-subtitle {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.zombie-logo {
    margin-bottom: 30px;
}

.zombie-logo img {
    max-width: 200px;
    height: auto;
}

.zombie-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.zombie-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    background: #4a90d9;
    color: white;
    min-width: 180px;
}

.zombie-btn:hover:not(:disabled) {
    background: #3a7bc8;
}

.zombie-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.zombie-btn.cdk {
    background: #e85d75;
}

.zombie-btn.cdk:hover:not(:disabled) {
    background: #d64d65;
}

.zombie-btn.welfare {
    background: #f5a623;
}

.zombie-btn.welfare:hover:not(:disabled) {
    background: #e09515;
}

.zombie-footer {
    margin-top: 40px;
    color: #999;
    font-size: 0.9rem;
}

.btn-back {
    margin-top: 15px;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #666;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back:hover {
    background: #eee;
    border-color: #999;
}

/* 移动端适配 */
@media (max-width: 480px) {
    .zombie-title {
        font-size: 1.8rem;
    }

    .zombie-btn {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

