/* 动态样式模块 */

/* 筛选头像占位符 */
.filter-avatar-placeholder {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 筛选头像 */
.filter-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 5px;
}

/* 筛选头像占位符 */
.filter-avatar-placeholder {
    display: inline-block;
    text-align: center;
    line-height: 20px;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    margin-right: 5px;
}

.avatar-placeholder {
    width: 20px;
    height: 20px;
}

/* 罪人筛选标签 */
.sinner-checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.sinner-checkbox-label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 人格筛选标签 */
.personality-checkbox-label {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s;
}

.personality-checkbox-label:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* 人格设置页面 */
.personality-page {
    display: none;
}

.personality-page.active {
    display: block;
}

/* 人格页面控制按钮 */
.personality-page-controls {
    margin-bottom: 20px;
}

/* 人格卡片 */
.personality-setting-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin: 5px;
}

/* 人格头像 */
.personality-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 5px;
}

/* 人格名称 */
.personality-name {
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-align: center;
}

/* 人格开关 */
.personality-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

/* 分页容器 */
.pagination {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin: 20px 0;
    padding: 10px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #d4af37 #1a1a2e;
    -webkit-overflow-scrolling: touch;
}

/* 分页按钮 */
.page-btn {
    padding: 8px 12px;
    border-radius: 5px;
    border: none;
    background: linear-gradient(145deg, #272018, #1e1a13);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #d4d4d4;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(100, 100, 100, 0.2);
    border-left: 1px solid rgba(100, 100, 100, 0.2);
}

.page-btn:hover {
    background: linear-gradient(145deg, #3a3125, #272018);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 3px 3px 10px rgba(0, 0, 0, 0.4);
}

.page-btn.active {
    background: linear-gradient(145deg, #d4af37, #b8860b);
    color: #000;
}

/* 无罪人消息 */
.no-sinner-message {
    text-align: center;
    color: #aaa;
    margin-top: 20px;
}

/* 人格网格 */
.personality-settings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

/* 应用筛选按钮 */
#apply-filters-btn {
    margin: 10px 5px;
}

/* 全选/全不选/反选按钮 - 稍小一点的按钮用于筛选控制 */
#select-all-btn,
#deselect-all-btn,
#invert-selection-btn {
    margin: 10px 5px;
    padding: 10px 18px;
    font-size: 0.95rem;
    min-height: 40px;
}

/* 重置筛选按钮 */
#reset-filters-btn {
    margin: 10px 5px;
}

/* 应用筛选主按钮 - 金色高亮样式，需与control-btn类一起使用 */
.primary-btn {
    background: linear-gradient(145deg, #d4af37, #b8860b) !important;
    color: #1a1a2e !important;
    text-shadow: none;
}

.primary-btn:hover {
    background: linear-gradient(145deg, #e6c350, #d4af37) !important;
    transform: translateY(-2px);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.3), inset -2px -2px 5px rgba(255, 255, 255, 0.1), 3px 3px 10px rgba(0, 0, 0, 0.4);
}

/* 通用模态窗口基础样式 */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal .modal-content {
    background: linear-gradient(145deg, #2a2d4a 0%, #1e1f3a 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5), 0 0 40px rgba(212, 175, 55, 0.15);
    width: 90%;
    max-width: 600px;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
    border-radius: 15px 15px 0 0;
}

.modal .modal-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal .close-btn {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.3);
    color: #1a1a2e;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    width: 34px;
    height: 34px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.25s ease;
    line-height: 1;
}

.modal .close-btn:hover {
    background: rgba(0, 0, 0, 0.4);
    transform: rotate(90deg);
}

/* 计时器弹窗样式 - 边狱主题风格 */
.timer-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.timer-modal.active {
    display: flex;
}

.timer-modal-content {
    background: var(--lc-bg-card);
    border: 1px solid var(--lc-border);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    width: 90%;
    max-width: 480px;
    overflow: hidden;
    animation: timerSlideIn 0.3s ease-out;
}

@keyframes timerSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 头部样式 */
.timer-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1) 0%, rgba(201, 169, 97, 0.05) 100%);
    border-bottom: 1px solid var(--lc-border);
}

.timer-header-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.timer-header-title > i {
    font-size: 1.5rem;
    color: var(--lc-gold);
}

.timer-title-text h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--lc-gold);
    margin: 0;
    letter-spacing: 1px;
}

.timer-title-text span {
    font-size: 0.7rem;
    color: var(--lc-text-muted);
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.timer-close-btn {
    background: transparent;
    border: 1px solid var(--lc-border);
    color: var(--lc-text-secondary);
    font-size: 1rem;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    transition: all 0.25s ease;
}

.timer-close-btn:hover {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--lc-gold-dark);
    color: var(--lc-gold);
    transform: rotate(90deg);
}

.timer-modal-body {
    padding: 28px 24px 24px;
}

/* 时间显示区域 */
.timer-display-wrapper {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
}

.timer-display-label {
    font-size: 0.65rem;
    color: var(--lc-text-muted);
    letter-spacing: 3px;
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
}

.timer-display {
    font-family: 'Cinzel', 'Courier New', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--lc-gold);
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
    padding: 16px 0;
    position: relative;
}

.timer-display-decorator {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lc-gold-dark), transparent);
    margin: 0 auto;
}

/* 控制按钮 */
.timer-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 28px;
}

.timer-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 4px;
    border: 1px solid;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Noto Serif SC', serif;
}

.timer-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-start {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.btn-start:hover:not(:disabled) {
    background: rgba(34, 197, 94, 0.2);
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.3);
}

.btn-pause {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.5);
    color: #f59e0b;
}

.btn-pause:hover:not(:disabled) {
    background: rgba(245, 158, 11, 0.2);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}

.btn-reset {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    color: #8b5cf6;
}

.btn-reset:hover:not(:disabled) {
    background: rgba(139, 92, 246, 0.2);
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3);
}

/* 提交区域 */
.timer-submit-section {
    border-top: 1px solid var(--lc-border);
    padding-top: 20px;
}

.timer-submit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.timer-submit-header .title-bar {
    width: 3px;
    height: 16px;
    background: var(--lc-gold);
    border-radius: 2px;
}

.timer-submit-header h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lc-gold);
    margin: 0;
    letter-spacing: 1px;
}

/* 当前选择信息 */
.timer-current-selection {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--lc-border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.selection-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.selection-label {
    font-size: 0.7rem;
    color: var(--lc-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selection-value {
    font-size: 0.85rem;
    color: var(--lc-text);
    font-weight: 500;
}

.selection-value:empty::after,
.selection-value[data-empty="true"]::after {
    content: '未选择';
    color: var(--lc-text-muted);
    font-style: italic;
}

/* 提交按钮 */
.timer-submit-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.timer-submit-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 6px;
    border: 1px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    background: transparent;
}

.timer-submit-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.timer-submit-btn > i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.btn-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.btn-main-text {
    font-size: 0.95rem;
    font-weight: 600;
}

.btn-sub-text {
    font-size: 0.7rem;
    opacity: 0.7;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
}

/* 全球排行榜按钮 */
.btn-global {
    border-color: var(--lc-gold-dark);
    color: var(--lc-gold);
}

.btn-global:hover:not(:disabled) {
    background: rgba(201, 169, 97, 0.1);
    border-color: var(--lc-gold);
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.2);
}

/* 本地保存按钮 */
.btn-local {
    border-color: var(--lc-border-light);
    color: var(--lc-text-secondary);
}

.btn-local:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--lc-text-muted);
    color: var(--lc-text);
}

/* 提示文字 */
.timer-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--lc-text-muted);
    margin: 0;
}

.timer-hint i {
    color: var(--lc-gold-dark);
}

/* 响应式设计 */
@media (max-width: 480px) {
    .timer-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .timer-modal-body {
        padding: 20px 16px 16px;
    }
    
    .timer-display {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .timer-controls {
        gap: 8px;
    }
    
    .timer-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
    }
    
    .timer-current-selection {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

/* ==================== 通用彩蛋视频播放框架样式 ==================== */
/* 彩蛋视频模态框遮罩层 - 支持渐缓淡入淡出动画 */
.easter-egg-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

/* 激活状态：显示并触发淡入动画 */
.easter-egg-modal.active {
    display: flex;
}

.easter-egg-modal.fade-in {
    opacity: 1;
}

/* 通用彩蛋视频播放器：标准1280x720分辨率，响应式适配 */
.easter-egg-modal video {
    width: 1280px;
    height: 720px;
    max-width: 90vw;
    max-height: 90vh;
    display: block;
    background: #000;
    outline: none;
    cursor: pointer;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 视频播放器弹出动画 */
.easter-egg-modal.fade-in video {
    transform: scale(1);
}

/* 通用彩蛋关闭按钮：位于右上角，统一样式 */
.easter-egg-close-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(212, 175, 55, 0.9);
    border: 2px solid #d4af37;
    color: #1a1a2e;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2001;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    opacity: 0;
    transform: scale(0.8) rotate(-90deg);
}

/* 关闭按钮显示动画 */
.easter-egg-modal.fade-in .easter-egg-close-btn {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
}

/* 关闭按钮悬停效果 */
.easter-egg-close-btn:hover {
    background: #d4af37;
    transform: scale(1.15) rotate(90deg);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.timer-display {
    font-family: 'Roboto Mono', 'Courier New', monospace;
    font-size: 4rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 35px;
    color: #e0e7ff;
    letter-spacing: 6px;
    text-shadow: 0 4px 20px rgba(99, 102, 241, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    padding: 15px 0;
    border-radius: 12px;
    position: relative;
}

.timer-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 12px;
    z-index: -1;
}

.timer-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}



/* 设置页面相关样式 */
.settings-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.settings-section {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.settings-section-title {
    font-size: 1.5rem;
    color: #d4af37;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.settings-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.settings-page {
    background: rgba(10, 10, 10, 0.7);
    border: 2px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.settings-title {
    font-size: 2rem;
    color: #d4af37;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

#personality-settings-container {
    margin-top: 20px;
}

.personality-setting-item {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.personality-sinner-title {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.personality-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
}

.navigation-buttons {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.nav-btn {
    padding: 10px 20px;
    border-radius: 25px;
    border: none;
    background: linear-gradient(145deg, #272018, #1e1a13);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #d4d4d4;
    font-weight: bold;
    text-align: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(100, 100, 100, 0.2);
    border-left: 1px solid rgba(100, 100, 100, 0.2);
}

.nav-btn:hover {
    background: linear-gradient(145deg, #3a3125, #272018);
    transform: translateY(-2px);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 3px 3px 10px rgba(0, 0, 0, 0.4);
}

.nav-btn.active {
    background: linear-gradient(145deg, #d4af37, #b8860b);
    color: #000;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.nav-btn.active:hover {
    background: linear-gradient(145deg, #e6c350, #d4af37);
    transform: translateY(-2px);
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.5), inset -2px -2px 5px rgba(70, 70, 70, 0.1), 3px 3px 10px rgba(0, 0, 0, 0.4);
}

/* 自定义弹窗样式 */
#custom-modal-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
}

.modal-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
}

.modal-box {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.98) 0%, rgba(40, 40, 60, 0.98) 100%);
    border: 2px solid #d4af37;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
    min-width: 300px;
    max-width: 500px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-box {
    transform: scale(1);
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.modal-title {
    margin: 0;
    font-size: 1.5rem;
    color: #d4af37;
    text-align: center;
}

.modal-body {
    padding: 25px 20px;
}

.modal-message {
    margin: 0;
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.8;
    text-align: center;
    white-space: pre-line;
}

.modal-footer {
    padding: 15px 20px 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.modal-btn {
    padding: 10px 30px;
    font-size: 1rem;
    border-radius: 25px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
    min-width: 100px;
}

.modal-btn-primary {
    background: linear-gradient(145deg, #d4af37, #b8860b);
    color: #000;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.modal-btn-primary:hover {
    background: linear-gradient(145deg, #e6c350, #d4af37);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.5);
}

.modal-btn-secondary {
    background: linear-gradient(145deg, #555, #444);
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.modal-btn-secondary:hover {
    background: linear-gradient(145deg, #666, #555);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .modal-box {
        min-width: 280px;
        width: 95%;
    }
    
    .modal-title {
        font-size: 1.3rem;
    }
    
    .modal-message {
        font-size: 1rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
}