/* Dodhy Games Premium Modal System */

.dodhy-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dodhy-modal-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dodhy-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.dodhy-modal-overlay.active .dodhy-modal-content {
    transform: scale(1);
}

.dodhy-modal-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 15px;
    background: linear-gradient(45deg, #00d2ff, #9d50bb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dodhy-modal-text {
    font-size: 16px;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 30px;
}

.dodhy-modal-btn {
    background: linear-gradient(45deg, #00d2ff, #9d50bb);
    border: none;
    padding: 12px 40px;
    color: white;
    font-weight: bold;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.dodhy-modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}
