body {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(247, 147, 30, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: backgroundShift 20s ease infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.daily-tasks-container {
    margin-top: 20px;
    padding: 20px;
    position: relative;
    z-index: 1;
}

.daily-tasks-header {
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.95), rgba(10, 10, 30, 0.95));
    border-radius: 20px;
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6),
        inset 0 1px 2px rgba(255, 215, 0, 0.1);
}

.daily-tasks-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
        #ffd700,
        #ff6b35,
        #f7931e,
        #ffd700
    );
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    z-index: -1;
    border-radius: 20px;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.daily-tasks-header h2 {
    font-size: 36px;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.3);
    margin-bottom: 15px;
    font-weight: 900;
}

.daily-tasks-header h2 i {
    margin: 0 10px;
    font-size: 32px;
}

.daily-tasks-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    font-style: italic;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
}

.filter-container {
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.95), rgba(10, 10, 30, 0.95));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.filter-label {
    color: #ffd700;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    margin-bottom: 10px;
    display: block;
}

.zone-select {
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.9), rgba(20, 20, 40, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 10px;
    color: #fff;
    padding: 12px 15px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
}

.zone-select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.zone-select option {
    background: #1a1a3e;
    color: #fff;
    padding: 10px;
}

.reset-btn {
    background: linear-gradient(145deg, #ffd700, #f7b733);
    color: #1a1a3e;
    border: none;
    border-radius: 10px;
    padding: 12px 25px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reset-btn:hover {
    background: linear-gradient(145deg, #f7b733, #ffd700);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.daily-tasks-content {
    background: linear-gradient(145deg, rgba(20, 20, 40, 0.95), rgba(10, 10, 30, 0.95));
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.header-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.scrollable-table {
    overflow-x: auto;
}

.daily-tasks-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: transparent;
}

.daily-tasks-table thead th {
    background: linear-gradient(145deg, #ffd700, #f7b733);
    color: #1a1a3e;
    font-weight: 800;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 12px;
    text-align: center;
    border-bottom: 3px solid #ffd700;
    position: relative;
}

.daily-tasks-table tbody tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    transition: all 0.3s ease;
}

.daily-tasks-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-1px);
}

.daily-tasks-table td {
    padding: 15px 12px;
    text-align: center;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.9);
}

.quest-name {
    color: #00ff88;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quest-task {
    background: linear-gradient(145deg, rgba(30, 30, 50, 0.9), rgba(20, 20, 40, 0.9));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 10px;
    padding: 10px 15px;
    display: inline-block;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.quest-task:hover {
    border-color: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

.quest-count {
    color: #ffd700;
    font-weight: 800;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

.prizes {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.prize-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 215, 0, 0.6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.prize-item:hover {
    border-color: #ffd700;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.prize-item img {
    width: 40px;
    height: 40px;
    display: block;
}

.zone-badge {
    background: linear-gradient(145deg, #6a5acd, #483d8b);
    color: #fff;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(106, 90, 205, 0.5);
    box-shadow: 0 2px 8px rgba(106, 90, 205, 0.3);
}

.exp-reward {
    color: #00ff88;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

.noah-reward {
    color: #ffd700;
    font-weight: 700;
    font-size: 16px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
    .daily-tasks-container {
        margin-top: 100px;
        padding: 15px;
    }
    
    .daily-tasks-header {
        padding: 30px 20px;
    }
    
    .daily-tasks-header h2 {
        font-size: 28px;
    }
    
    .filter-container {
        padding: 20px;
    }
    
    .daily-tasks-table th,
    .daily-tasks-table td {
        padding: 10px 8px;
        font-size: 13px;
    }
    
    .quest-name {
        font-size: 14px;
    }
    
    .quest-task {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .prize-item img {
        width: 32px;
        height: 32px;
    }
}