/* Challenges Modal Styles */
#tipsModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: linear-gradient(145deg, #161b22, #0d1117);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    margin: 20px;
    border: 2px solid #00C2FF;
    box-shadow: 0 20px 60px rgba(0,194,255,0.3);
}

.modal-title {
    color: #00C2FF;
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.modal-text {
    color: #E1E6F2;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
}

.modal-text p {
    margin-bottom: 15px;
}

.modal-text p:last-child {
    margin-bottom: 25px;
}

.modal-button {
    background: linear-gradient(135deg, #00C2FF, #FFC700);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 194, 255, 0.3);
}