.app-store-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}
.app-store-text-links,
.app-store-button-links {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.app-store-buttons a {
    display: inline-block;
    transition: transform 0.2s ease;
}
.app-store-button-links a {
    height: 90px;
}
.app-store-text-links a {
    text-decoration: underline;
}
.app-store-buttons a:hover {
    transform: scale(1.05);
}
.appstore-link-ios img {
    padding: 15px;
}
.app-store-buttons img {
    height: 90px;
    width: auto;
    display: block;
}
.app-redirect-dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.app-redirect-dialog-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 90%;
}
.app-redirect-countdown-text {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}
.app-redirect-cancel {
    background: #ccc;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}
.app-redirect-cancel:hover {
    background: #bbb;
}