body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
}

/* Base styles for the popup */
.rab-popup-modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); /* Dim background */
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out forwards;
}

.rab-popup-content {
    /* background: linear-gradient(135deg, #333 0%, #111 100%); Dark gradient background */
    background-color: white;
    padding: 20px;
    /* border-radius: 10px; */
    position: relative;
    /* max-width: 900px; */
    width: 70%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    animation: zoomIn 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
}

.rab-close-button {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: color 0.3s ease;
     /* animation: zoomOut 1s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards; */
}

.rab-close-button:hover,
.rab-close-button:focus {
    color: #000000;
}

.rab-popup-body {
    padding: 20px 0;
}

.rab-popup-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.rab-popup-left {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.rab-app-screenshot {
    max-width: 60%;
    height: auto;
    border-radius: 10px;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); */
}

.rab-popup-right {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.rab-heading-normal {
    font-size: 3.5em;
    font-weight: normal;
    margin-bottom: 5px;
    color: #000000;
}

.rab-heading-highlight {
    font-size: 4em;
    color: #ef4b4b; /* Red color from your screenshot */
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.rab-emoji {
    font-size: 0.8em; /* Adjust emoji size relative to heading */
}

.rab-spacer {
    height: 30px;
}

.rab-app-download-links {
    display: flex;
    /* flex-direction: column;  */
    gap: 15px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
}

.rab-download-link img {
    max-width: 200px; /* Adjust size of download buttons */
    height: auto;
    transition: transform 0.2s ease-in-out;
}

.rab-download-link img:hover {
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes zoomOut {
    from { transform: scale(1); opacity: 1; }
    to { transform: scale(0.8); opacity: 0; }
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .rab-popup-inner {
        flex-direction: column;
        gap: 20px;
    }
    
    .rab-spacer{
        height: 0;
    }
    .rab-heading-normal {
        font-size: 2em;
    }

    .rab-heading-highlight {
        font-size: 2.5em;
    }

    .rab-app-download-links {
       display: flex;
    }

    .rab-popup-content {
        width: 80%;
        padding: 15px;
    }
    .rab-download-link img{
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .rab-heading-normal {
        font-size: 1.5em;
    }

    .rab-heading-highlight {
        font-size: 2em;
    }

    /* .rab-download-link img {
        max-width: 150px;
    } */
}