/* LineageW风格样式 */

/* 全局重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Helvetica Neue', Arial, sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    transition: background 0.6s ease;
    position: relative;
}

/* 背景颜色覆盖层 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #8b6914 0%, #b8860b 50%, #daa520 100%);
    z-index: -1;
    transition: background 0.6s ease;
}

/* 伊丁天堂背景 - 金色（默认） */
body.game-eden::before {
    background: linear-gradient(135deg, #8b6914 0%, #b8860b 50%, #daa520 100%);
}

/* Teon背景 - 紫色 */
body.game-teon::before {
    background: linear-gradient(135deg, #4a2c5a 0%, #6b3a7a 50%, #8b4a9a 100%);
}

/* TeonR背景 - 灰色 */
body.game-teonr::before {
    background: linear-gradient(135deg, #4a4a4a 0%, #6b6b6b 50%, #8b8b8b 100%);
}

/* 游戏标题描边效果 */
/* 伊丁天堂 - 金色描边 */
body.game-eden .game-title {
    background: linear-gradient(135deg, #d2691e, #cd853f, #d2691e) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 
        0 0 30px rgba(210, 105, 30, 0.5),
        3px 3px 0px rgba(0, 0, 0, 0.9),
        -3px -3px 0px rgba(0, 0, 0, 0.9),
        3px -3px 0px rgba(0, 0, 0, 0.9),
        -3px 3px 0px rgba(0, 0, 0, 0.9),
        0 0 0 6px rgba(0, 0, 0, 0.8) !important;
}

/* Teon - 紫色描边 */
body.game-teon .game-title {
    background: linear-gradient(135deg, #8b4a9a, #a569bd, #8b4a9a) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 
        0 0 30px rgba(139, 74, 154, 0.5),
        3px 3px 0px rgba(0, 0, 0, 0.9),
        -3px -3px 0px rgba(0, 0, 0, 0.9),
        3px -3px 0px rgba(0, 0, 0, 0.9),
        -3px 3px 0px rgba(0, 0, 0, 0.9),
        0 0 0 6px rgba(0, 0, 0, 0.8) !important;
}

/* TeonR - 灰色描边 */
body.game-teonr .game-title {
    background: linear-gradient(135deg, #8b8b8b, #a8a8a8, #8b8b8b) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    text-shadow: 
        0 0 30px rgba(139, 139, 139, 0.5),
        3px 3px 0px rgba(0, 0, 0, 0.9),
        -3px -3px 0px rgba(0, 0, 0, 0.9),
        3px -3px 0px rgba(0, 0, 0, 0.9),
        -3px 3px 0px rgba(0, 0, 0, 0.9),
        0 0 0 6px rgba(0, 0, 0, 0.8) !important;
}

/* 全屏背景容器 */
.fullscreen-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.fullscreen-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 50% 30%, rgba(139, 69, 19, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 70%, rgba(160, 82, 45, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.fullscreen-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* 顶部导航栏 */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 69, 19, 0.2);
    z-index: 1000;
    height: 50px;
}

.navbar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    height: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.home-link {
    color: #d2691e;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(139, 69, 19, 0.2);
    border: 1px solid rgba(139, 69, 19, 0.4);
}

.home-link:hover {
    color: #ffffff;
    background: rgba(139, 69, 19, 0.4);
    border-color: #d2691e;
    transform: scale(1.1);
}

.logo img {
    height: 100%;
    width: auto;
}

.nav-icons {
    display: flex;
    gap: 15px;
}

.nav-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(139, 69, 19, 0.2);
    border: 1px solid rgba(139, 69, 19, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d2691e;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.nav-icon:hover {
    background: rgba(139, 69, 19, 0.4);
    border-color: #d2691e;
    color: #ffffff;
    transform: scale(1.1);
}

.nav-icon.active {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(255, 140, 0, 0.8));
    border: 2px solid #ffd700;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    position: relative;
}

.nav-icon.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: activeGlow 2s ease-in-out infinite alternate;
}

@keyframes activeGlow {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.6; transform: scale(1.1); }
}

.home-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.8), rgba(255, 140, 0, 0.8));
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    position: relative;
}

.home-link.active::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: activeGlow 2s ease-in-out infinite alternate;
}

/* 主要内容区域 */
.main-content {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 20px 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* 游戏Logo */
.game-logo {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.game-logo img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(210, 105, 30, 0.5));
}

.game-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: serif;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.game-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: none;
    margin: 10px 0 0 0;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-weight: 300;
    font-family: 'Microsoft YaHei', sans-serif;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(210, 105, 30, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.classic-text {
    color: #cccccc; /* 浅灰色 */
    text-shadow: none;
}

.version-text {
    color: #ffffff; /* 白色 */
    text-shadow: none;
    font-weight: 700;
}

/* 游戏横幅 */
.game-banner {
    margin-bottom: 40px;
    width: 100%;
    max-width: 800px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.banner-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.banner-link {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 4px 8px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 400;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.banner-link:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.banner-link-text {
    display: flex;
    align-items: center;
    gap: 5px;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all 0.4s ease;
}



/* 主要按钮区域 */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 80px;
    height: auto;
    min-height: auto;
    justify-content: center;
}

.main-btn {
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(139, 69, 19, 0.5);
    border-radius: 12px;
    padding: 0 20px;
    color: #d2691e;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-width: auto;
    height: 48px;
    justify-content: center;
}

.main-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(210, 105, 30, 0.3), transparent);
    transition: left 0.5s ease;
}

.main-btn:hover::before {
    left: 100%;
}

.main-btn:hover {
    border-color: #d2691e;
    background: rgba(139, 69, 19, 0.3);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

.download-btn {
    background: linear-gradient(135deg, #d2691e, #cd853f);
    border: none;
    color: #000000;
}

.download-btn:hover {
    background: linear-gradient(135deg, #cd853f, #d2691e);
}

.download-icon {
    width: 30px;
    height: 30px;
    background: transparent;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.marketplace-icon {
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

/* 游戏选择区域 */
.game-selector {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    justify-content: center;
    align-items: center;
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
    height: 120px;
    min-height: 120px;
    position: relative;
}

.game-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    width: auto;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: visible;
    transform-origin: center center;
    will-change: transform, opacity;
    backface-visibility: hidden;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.game-card::before {
    display: none;
}

.game-card:hover {
    transform: scale(1.08);
}

.game-card.active {
    transform: scale(1.2);
}

.game-card:not(.active) {
    transform: scale(0.85);
    opacity: 0.5;
}

.game-card-icon {
    font-size: 2.5rem;
    color: #d2691e;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.game-card-icon-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.7) drop-shadow(0 0 8px rgba(210, 105, 30, 0.3));
    display: block;
    transform-origin: center center;
}

.game-card.active .game-card-icon {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(210, 105, 30, 0.8);
    font-size: 2.8rem;
}

.game-card.active .game-card-icon-img {
    width: 75px;
    height: 75px;
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(210, 105, 30, 1));
    transform: scale(1);
}

.game-card-name {
    display: none;
}

/* 更新卡片区域 */
.updates-section {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 100;
    max-width: 90%;
    overflow-x: auto;
    padding: 10px;
}

.update-card {
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(139, 69, 19, 0.3);
    border-radius: 15px;
    width: 280px;
    flex-shrink: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.update-card:hover {
    border-color: #d2691e;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
}

.update-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.update-card-content {
    padding: 15px;
}

.update-tag {
    display: inline-block;
    background: rgba(139, 69, 19, 0.3);
    color: #d2691e;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.update-title {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

/* 登录页面 */
.login-container {
    width: 100%;
    max-width: 400px;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(139, 69, 19, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d2691e, #cd853f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.login-subtitle {
    color: #cccccc;
    font-size: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    color: #d2691e;
    font-size: 0.95rem;
    font-weight: 600;
}

.form-input {
    padding: 15px;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(139, 69, 19, 0.3);
    border-radius: 10px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #d2691e;
    box-shadow: 0 0 15px rgba(210, 105, 30, 0.3);
}

.form-input::placeholder {
    color: #666666;
}

.form-help {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-top: 4px;
    font-style: italic;
}

.password-group {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #d2691e;
    cursor: pointer;
    font-size: 1.1rem;
    padding: 5px;
}

.login-btn {
    background: linear-gradient(135deg, #d2691e, #cd853f);
    color: #000000;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.login-btn:hover {
    background: linear-gradient(135deg, #cd853f, #d2691e);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(210, 105, 30, 0.4);
}

.register-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(139, 69, 19, 0.3);
}

.register-text {
    color: #cccccc;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.register-btn {
    color: #d2691e;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.register-btn:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(210, 105, 30, 0.5);
}

/* 错误和成功提示 */
.error-message {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-align: center;
}

.success-message {
    background: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #28a745;
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-bottom: 15px;
    text-align: center;
}

/* 动画 */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }
    
    .game-title {
        font-size: 3rem;
    }
    
    .game-description {
        font-size: 1rem;
        padding: 6px 12px;
        margin: 8px 0 0 0;
    }
    
    .game-banner {
        height: 150px;
        max-width: 600px;
    }
    
    
    .game-selector {
        gap: 25px;
        height: 100px;
        min-height: 100px;
    }
    
    .game-card {
        width: auto;
        padding: 0;
        height: 80px;
    }
    
    .game-card-icon-img {
        width: 55px;
        height: 55px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .game-card.active .game-card-icon-img {
        width: 70px;
        height: 70px;
        transform: scale(1);
    }
    
    .updates-section {
        bottom: 20px;
    }
    
    .update-card {
        width: 240px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 60px 15px 30px;
    }
    
    .game-title {
        font-size: 2.5rem;
    }
    
    .game-description {
        font-size: 0.9rem;
        padding: 5px 10px;
        margin: 6px 0 0 0;
    }
    
    .game-banner {
        height: 120px;
        max-width: 400px;
    }
    
    
    .game-selector {
        gap: 20px;
        height: 90px;
        min-height: 90px;
    }
    
    .game-card {
        width: auto;
        padding: 0;
        height: 70px;
    }
    
    .game-card-icon-img {
        width: 50px;
        height: 50px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .game-card.active .game-card-icon-img {
        width: 65px;
        height: 65px;
        transform: scale(1);
    }
    
    .game-card-name {
        display: none !important;
    }
    
    .main-btn {
        padding: 0 20px;
        font-size: 0.95rem;
        min-width: auto;
        height: 48px;
    }
    
    .action-buttons {
        margin-bottom: 60px;
    }
    
    .updates-section {
        bottom: 10px;
        gap: 15px;
    }
    
    .update-card {
        width: 200px;
    }
    
    .login-container {
        padding: 30px 20px;
    }
    
    .login-title {
        font-size: 2rem;
    }
}

/* 通知角标样式 */
.notification-icon {
    position: relative;
}

.notification-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc3545;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    animation: pulse 2s infinite;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* 移动端通知角标 */
@media (max-width: 768px) {
    .notification-badge {
        width: 18px;
        height: 18px;
        font-size: 0.6rem;
        top: -6px;
        right: -6px;
        border: 1px solid #fff;
    }
}

/* 自定义确认对话框 */
.custom-confirm-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.custom-confirm-overlay.show {
    display: flex;
}

.custom-confirm-box {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(20, 20, 20, 0.95));
    border: 2px solid #d2691e;
    border-radius: 15px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 10px 40px rgba(210, 105, 30, 0.5);
    animation: confirmSlideIn 0.3s ease;
}

@keyframes confirmSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.custom-confirm-title {
    font-size: 1.4rem;
    color: #d2691e;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    text-shadow: 0 0 10px rgba(210, 105, 30, 0.5);
}

.custom-confirm-message {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
}

.custom-confirm-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.custom-confirm-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-confirm-btn-cancel {
    background: rgba(108, 117, 125, 0.8);
    color: white;
}

.custom-confirm-btn-cancel:hover {
    background: rgba(108, 117, 125, 1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

.custom-confirm-btn-confirm {
    background: linear-gradient(135deg, #d2691e, #cd853f);
    color: white;
}

.custom-confirm-btn-confirm:hover {
    background: linear-gradient(135deg, #cd853f, #d2691e);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 105, 30, 0.5);
}

@media (max-width: 768px) {
    .custom-confirm-box {
        padding: 20px;
        max-width: 90%;
    }
    
    .custom-confirm-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .custom-confirm-message {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .custom-confirm-buttons {
        flex-direction: column;
    }
    
    .custom-confirm-btn {
        width: 100%;
        padding: 10px 20px;
    }
}
