/* Banner Container (mimics fixed bottom, bg-gray-900) */
._A1B {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999999;
    padding: 1rem; /* p-4 */
    background-color: #111827; /* bg-gray-900 */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Initial state classes controlled by JS */
._A1B.translate-y-full {
    transform: translateY(100%);
}
._A1B.opacity-0 {
    opacity: 0;
}
._A1B.hidden {
    display: none;
}

/* Responsive Wrapper (mimics max-w-4xl, flex-col/flex-row) */
._C2D {
    max-width: 42rem; /* max-w-4xl */
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    row-gap: 1rem; /* space-y-4 */
}
@media (min-width: 640px) { /* sm breakpoint */
    ._C2D {
        flex-direction: row;
        row-gap: 0;
    }
}

/* Message Text (mimics text-sm text-gray-200) */
._E3F {
    font-size: 0.875rem; /* text-sm */
    color: #e5e7eb; /* text-gray-200 */
    text-align: center;
}
@media (min-width: 640px) {
    ._E3F {
        text-align: left;
    }
}

/* Link Style (mimics text-indigo-400) */
._G4H {
    color: #7ea1f5; /* text-indigo-400 */
    text-decoration: underline;
    font-weight: 500; /* font-medium */
    border-radius: 0.375rem;
    transition: color 0.15s ease-in-out;
    outline: none;
}
._G4H:hover {
    color: #5f7cff; /* hover:text-indigo-300 */
}
._G4H:focus {
    box-shadow: 0 0 0 2px #5f7cff; /* focus ring */
}

/* Button Style (mimics bg-indigo-600, responsive width) */
._I5J {
    width: 100%;
    padding: 0.5rem 1.5rem; /* px-6 py-2 */
    background-color: #2667ff; /* bg-indigo-600 */
    color: #fff; /* text-white */
    font-weight: 600; /* font-semibold */
    border-radius: 0.5rem; /* rounded-lg */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: background-color 0.15s ease-in-out;
    border: none;
    cursor: pointer;
}
._I5J:hover {
    background-color: #2941ab; /* hover:bg-indigo-700 */
}
._I5J:focus {
    outline: none;
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #0b1460; /* focus ring with offset effect */
}
._I5J:active {
    background-color: #0b1460; /* active:bg-indigo-800 */
}
@media (min-width: 640px) {
    ._I5J {
        width: auto;
    }
}

/* Custom animation for initial slide up */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
.slide-up {
    animation: slideUp 0.5s ease-out forwards;
}
