/* ============================================
   蓉城市国风RP - 官网样式
   原创设计 | 深色主题 | 响应式
   ============================================ */

:root {
    --primary: #8B4513;
    --primary-dark: #5C2E0B;
    --primary-light: #CD853F;
    --secondary: #2F4F4F;
    --accent: #DAA520;
    --bg-dark: #0a0a0f;
    --bg-card: #14141a;
    --bg-hover: #1c1c24;
    --text: #e0e0e0;
    --text-muted: #888;
    --border: #2a2a35;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    /* 防止固定导航栏遮挡内容 */
    padding-top: 70px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========== 导航栏 ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
    color: var(--accent);
}

.logo-img {
    height: 40px;
    width: auto;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.navbar-toggler span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text);
    margin: 5px 0;
    transition: var(--transition);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent);
}

/* 用户下拉菜单 */
.user-dropdown {
    position: relative;
}

.user-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 30px;
    transition: var(--transition);
}

.user-btn:hover {
    background: var(--bg-hover);
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background: var(--bg-hover);
    color: var(--accent);
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 5px 0;
}

/* 按钮样式 */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(139, 69, 19, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary-light);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-secondary {
    background: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background: #1e3a3a;
}

/* ========== 英雄区域 ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(10,10,15,0.9), rgba(20,20,30,0.95)), 
                url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    max-width: 800px;
    padding: 20px;
}

.hero-logo {
    margin-bottom: 30px;
}

.hero-logo-img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(218, 165, 32, 0.3));
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* 服务器状态卡片 */
.server-status-card {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 40px;
    border: 1px solid var(--border);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.status-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    color: var(--accent);
}

.status-online {
    color: var(--success);
}

.status-offline {
    color: var(--danger);
}

.progress-bar {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    height: 8px;
    margin: 10px 0;
    overflow: hidden;
}

.progress-fill {
    background: linear-gradient(90deg, var(--success), var(--info));
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease;
}

.server-info {
    text-align: left;
    font-size: 14px;
    margin-top: 15px;
}

.server-info code {
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: 5px;
    font-family: monospace;
}

.copy-btn {
    background: var(--primary);
    border: none;
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

/* ========== 通用区块 ========== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--accent);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-size: 18px;
}

/* 特性卡片网格 */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 28px;
    color: white;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 20px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* 新闻网格 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 20px;
}

.news-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.news-title a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.news-title a:hover {
    color: var(--accent);
}

.news-meta {
    display: flex;
    gap: 15px;
    color: var(--text-muted);
    font-size: 12px;
    margin-bottom: 15px;
}

.news-summary {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.read-more {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* 玩家列表 */
.players-section {
    background: var(--bg-card);
    border-radius: 15px;
    padding: 30px;
    margin-top: 30px;
}

.players-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.players-count {
    font-size: 14px;
    color: var(--text-muted);
}

.refresh-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.players-table {
    width: 100%;
    border-collapse: collapse;
}

.players-table th,
.players-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.players-table th {
    color: var(--accent);
    font-weight: 600;
}

.players-table tr:hover {
    background: var(--bg-hover);
}

/* 规则页面 */
.rules-container {
    max-width: 900px;
    margin: 0 auto;
}

.rule-category {
    margin-bottom: 40px;
    background: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
}

.rule-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 15px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rule-header h3 {
    margin: 0;
    font-size: 18px;
}

.rule-header i {
    transition: transform 0.3s;
}

.rule-header.collapsed i {
    transform: rotate(-90deg);
}

.rule-content {
    padding: 25px;
    border-top: 1px solid var(--border);
}

.rule-content.collapsed {
    display: none;
}

.rule-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.rule-item:last-child {
    border-bottom: none;
}

.rule-title {
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.rule-desc {
    color: var(--text-muted);
    line-height: 1.6;
}

/* 白名单表单 */
.whitelist-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-link {
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* 页脚 */
.footer {
    background: #0a0a0f;
    border-top: 1px solid var(--border);
    padding: 60px 0 30px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 40px;
}

.footer-logo h3 {
    font-size: 18px;
}

.footer-section h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
}

/* 返回顶部按钮 */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ========== 服务器介绍页面专用样式 ========== */
.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-header h1 {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 20px;
}

.about-header p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px 40px;
    text-align: center;
    flex: 1;
    min-width: 180px;
    border: 1px solid var(--border);
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 28px;
    color: white;
}

.stat-number {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.about-content {
    margin-bottom: 50px;
}

.about-text {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid var(--border);
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: var(--text);
}

.features-section {
    margin-bottom: 50px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    gap: 20px;
    background: var(--bg-card);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid var(--border);
    align-items: flex-start;
}

.feature-item .feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    margin: 0;
}

.feature-item .feature-icon i {
    font-size: 24px;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    font-size: 18px;
    color: var(--accent);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

.config-section {
    margin-bottom: 50px;
}

.config-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.config-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.config-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.config-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 15px;
}

.config-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.config-card ul {
    list-style: none;
    text-align: left;
}

.config-card ul li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.config-card ul li:last-child {
    border-bottom: none;
}

.config-card ul li i {
    width: 20px;
    margin-right: 8px;
    color: var(--accent);
}

.join-section {
    text-align: center;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid var(--border);
}

.join-section h2 {
    font-size: 24px;
    color: var(--accent);
    margin-bottom: 15px;
}

.join-section p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.join-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========== 封禁列表页面 ========== */
.bans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.bans-header {
    text-align: center;
    margin-bottom: 40px;
}

.bans-header h1 {
    font-size: 36px;
    color: var(--accent);
    margin-bottom: 15px;
}

.bans-header p {
    color: var(--text-muted);
}

.bans-table {
    background: var(--bg-card);
    border-radius: 12px;
    overflow-x: auto;
    border: 1px solid var(--border);
}

.bans-table table {
    width: 100%;
    border-collapse: collapse;
}

.bans-table th,
.bans-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.bans-table th {
    background: rgba(0,0,0,0.3);
    color: var(--accent);
    font-weight: 600;
}

.ban-reason {
    max-width: 300px;
    line-height: 1.5;
}

.ban-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.ban-permanent {
    background: #e74a3b;
    color: white;
}

.ban-temporary {
    background: #f6c23e;
    color: #333;
}

.empty-state {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
}

/* ========== 响应式 ========== */
@media (max-width: 992px) {
    .stats-grid {
        gap: 20px;
    }
    
    .config-grid {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    /* 移动端基础调整 */
    body {
        padding-top: 60px;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .navbar-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 60px);
        background: var(--bg-card);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .navbar-menu.active {
        left: 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    
    .nav-actions {
        width: 100%;
        margin-top: 20px;
    }
    
    .user-dropdown {
        width: 100%;
    }
    
    .user-btn {
        width: 100%;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        margin-top: 10px;
        width: 100%;
    }
    
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* 英雄区域调整 */
    .hero {
        padding: 80px 20px 60px;
        min-height: auto;
    }
    
    .hero-logo-img {
        max-width: 100px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    /* 服务器状态卡片调整 */
    .server-status-card {
        margin: 20px auto;
    }
    
    /* 页面容器调整 */
    .about-container,
    .bans-container {
        padding-top: 20px;
    }
    
    /* 其他调整 */
    .section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 280px;
    }
    
    .config-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .feature-item .feature-icon {
        margin: 0 auto 15px;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .join-buttons .btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .players-table {
        font-size: 12px;
    }
    
    .whitelist-form {
        padding: 20px;
    }
    
    .bans-table th,
    .bans-table td {
        font-size: 12px;
        padding: 10px;
    }
    
    .ban-reason {
        max-width: 150px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .feature-content h3 {
        font-size: 18px;
    }
    
    .feature-content p {
        font-size: 14px;
    }
    
    .config-card {
        padding: 20px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .about-header h1 {
        font-size: 28px;
    }
    
    .bans-header h1 {
        font-size: 28px;
    }
}

/* ========== Toast 提示样式 ========== */
.toast-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 250px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: var(--shadow);
    animation: slideIn 0.3s ease;
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-error {
    border-left: 4px solid var(--danger);
}

.toast-info {
    border-left: 4px solid var(--info);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    margin-left: auto;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}