.saintsmedia-cta {
    border-radius: 0.75rem;
    transform: translateY(-2px);
}

.saintsmedia-cta a {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(93, 248, 143, .7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(93, 248, 143, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(93, 248, 143, 0);
    }
}



/* saintsmedia base styles – mobile first */
.saintsmedia-casino-table {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 100%;
    margin-top: 1.5rem;
    /* padding: 1rem; */
    font-family: Helvetica, Arial, sans-serif;
    color: #ffffff;
}

.saintsmedia-casino-card {
    position: relative;
    display: flex;
    flex-direction: column;
    /* stacked on mobile */
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.04) 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    overflow: hidden;
    isolation: isolate;
    /* enables z‑index for pseudo */
    animation: sm-fade-in 0.6s ease both;
}

.saintsmedia-casino-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}

/* card elements */
.saintsmedia-logo {
    position: relative;
    width: 180px;
    /* will scale on desktop */
    aspect-ratio: 3 / 2;
    /* keeps logo proportion */
    border-radius: 0.5rem;
    overflow: hidden;
    background: #222 center / cover no-repeat;
    border: solid #ffffff;
    transition: opacity 0.3s ease;
}

/* order badge */
.saintsmedia-order-number {
    position: absolute;
    top: -0.5px;
    left: -0.5px;

    width: 28px;
    height: 28px;
    border-radius: 0.5rem 0;
    /* background: #a340fb; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 700;
}

.saintsmedia-casino-name {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
}

.saintsmedia-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    max-width: 320px;
}

.saintsmedia-info-tag {
    font-size: 0.875rem;
    opacity: 0.85;
}

.saintsmedia-info-descr {
    font-size: 0.95rem;
    font-weight: 600;
}

.saintsmedia-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1rem;
}

.saintsmedia-rating i {
    color: #ffc107;
}

.saintsmedia-rating span {
    margin-left: 5px;
    font-weight: 900;
}

.saintsmedia-cta a {
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 0 0 transparent;
    /* transition: box-shadow 0.25s ease; */
}

.saintsmedia-cta a:hover {
    transition: transform 0.2s ease, filter 0.2s ease;
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* fade‑in animation */
@keyframes sm-fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* desktop layout */
@media (min-width: 1025px) {
    .saintsmedia-casino-card {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .saintsmedia-logo {
        width: 170px;
    }

    .saintsmedia-casino-name {
        text-align: left;
        font-size: 1.5rem;
    }
}