.uarkadm-button {
    display: inline-block;
    background-color: white;
    color: #A41F35;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
}

.uarkadm-button:hover {
    background-color: #f3f3f3;
}

/* ball BOX */

.ball-box {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: #A41F35;
    border-radius: 16px;
    padding: 30px;
    margin: 30px auto;
    max-width: 1100px;
    overflow: hidden;
}

/* tournament version: text left, bag right on desktop */
.ball-box-reverse {
    flex-direction: row;
}

.ball-box-reverse .ball-text {
    order: 1;
}

.ball-box-reverse .ball-image {
    order: 2;
}

.ball-image {
    display: block;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    height: 220px;
    object-fit: contain;
    flex-shrink: 0;
}

/* TEXT SIDE */

.ball-text {
    flex: 1;
    min-width: 0;
}

.ball-text h2 {
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.35) !important;
}

.ball-button {
    display: inline-block;
    background-color: white;
    color: #A41F35;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-top: 10px;
}

.ball-button:hover {
    background-color: #f3f3f3;
}

/* mobile */
@media (max-width: 768px) {
    .ball-box {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }

    /* tournament version: bag top, text bottom on mobile */
    .ball-box-reverse {
        flex-direction: column;
    }

    .ball-box-reverse .ball-image {
        order: 1;
    }

    .ball-box-reverse .ball-text {
        order: 2;
    }

    .ball-image {
        width: 160px;
        min-width: 160px;
        max-width: 160px;
        height: 160px;
        margin: 0 auto 10px auto;
    }

    .ball-text {
        width: 100%;
    }

    .ball-button {
        display: inline-block;
        margin-top: 15px;
    }
}

.interest-button {
    display: inline-block;
    background-color: white;
    color: #A41F35;
    padding: 16px 34px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.25rem;
    text-decoration: none;
    margin-top: 20px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;

    animation: interest-bounce 2s ease-in-out infinite;
}

.interest-button:hover {
    background-color: #DDDDDD;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
    animation-play-state: paused;
}

.collegiate-email {
    color: white;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.35rem;
    word-break: break-word;
    overflow-wrap: anywhere;
}

.collegiate-email:hover {
    text-decoration: underline;
}

.tryout-alert-box {
    position: relative;
    max-width: 900px;
    margin: 35px auto;
    background-color: #A41F35;
    color: white;
    border: 3px solid white;
    border-radius: 18px;
    padding: 45px 28px 28px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    animation: tryoutPulse 3s ease-in-out infinite;
}

.new-badge {
    position: absolute;
    top: 14px;
    left: 5px;
    background-color: white;
    color: #A41F35;
    font-weight: 900;
    font-size: 1.05rem;
    padding: 10px 18px;
    border-radius: 10px;
    letter-spacing: 1px;
    transform: rotate(-25deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    border: 2px solid #A41F35;
}

.tryout-alert-text h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.7rem;
    font-weight: 800;
}

.tryout-alert-text p {
    margin-bottom: 18px;
    line-height: 1.6;
}

.tryout-alert-button {
    display: inline-block;
    background-color: white;
    color: #A41F35;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.tryout-alert-button:hover {
    background-color: #f5f5f5;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

@keyframes tryoutPulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.015);
    }
}

@media screen and (max-width: 768px) {
    .tryout-alert-box {
        margin: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .tryout-alert-button {
        display: block;
        max-width: 300px;
        margin: 0 auto;
    }

    .new-badge {
        top: 13px;
        left: 5px;
        font-size: 0.95rem;
        padding: 8px 15px;
    }
}

@keyframes interest-bounce {
    0%, 80%, 100% {
        transform: translateY(0);
    }

    85% {
        transform: translateY(-8px);
    }

    90% {
        transform: translateY(0);
    }

    95% {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .interest-button {
        font-size: 1.05rem;
        padding: 14px 24px;
    }
}