.glass-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-modal-content {
    background: rgba(122, 0, 0, 0.45);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.glass-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.glass-modal-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.glass-modal img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.glass-modal-title {
    color: #fff;
    font-size: 24px;
    margin-bottom: 15px;
}

.glass-modal-body {
    color: #fff;
    line-height: 1.6;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 2%;
    margin-top: 20px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    min-width: 80px;
}

.countdown-number {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.countdown-label {
    font-size: 14px;
    color: #ddd;
}