.playstore-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.playstore-modal-content {
    background-color: #1a1a2e;
    border-radius: 12px;
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid #4a4a5f;
}

.playstore-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.playstore-modal-header h2 {
    color: #1548ff;
    font-size: 1.5rem;
    margin: 0;
}

.close-modal {
    background: none;
    border: none;
    color: #1548ff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background-color: #4a4a5f;
}

.playstore-modal-body {
    text-align: center;
}

.playstore-modal-body p {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}
