html {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Helvetica Neue", sans-serif; }

body,
html {
  height: 100%;
  margin: 0; }

/* Background */
body.flow-body {
  background: #0286c5 url("https://cdn.databowlpages.com/assets/9ee20aa0-7932-48be-95e0-20f1f743bd3c.png") center/cover fixed no-repeat; }

/* Step containers */
.step {
  display: none;
  position: relative;
  z-index: 1; }

.step.active {
  display: flex;
  animation: fadeInStep .6s ease-in-out; }

@keyframes fadeInStep {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.content-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); }

/* Buttons */
.btn-ah-orange {
  background: #F57F20 !important;
  color: #fff !important;
  transition: background .2s, transform .2s !important;
  color: white;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.80px;
  word-wrap: break-word; }

.btn-ah-orange:hover {
  background: #d86810 !important;
  transform: translateY(-2px) !important; }

.error-message {
  color: #b91c1c;
  font-size: .75rem;
  margin-top: .5rem; }

/* Loader */
.loader {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #0058A3;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  animation: spin 1s linear infinite; }

@keyframes spin {
  0% {
    transform: rotate(0); }
  100% {
    transform: rotate(360deg); } }

/* Status list */
.status-item {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInItem .5s ease-out forwards; }

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

.checkmark-icon {
  transform: scale(0);
  animation: popIn 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards; }

@keyframes popIn {
  to {
    transform: scale(1); } }

/* Scroll areas */
.scrollable-text,
.scrollable-sponsors {
  max-height: 250px;
  overflow-y: auto;
  padding-right: 1rem; }

.scrollable-sponsors {
  max-height: 400px; }

/* Offer */
.offer-card {
  transition: box-shadow .3s, transform .3s; }

.offer-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }

/* Code input */
.code-input {
  width: 3.5rem;
  height: 4rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  border-radius: .5rem;
  border: 2px solid #d1d5db; }

.code-input:focus {
  border-color: #F57F20;
  box-shadow: 0 0 0 2px rgba(245, 127, 32, 0.3);
  outline: none; }

/* Modal overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  align-items: center;
  justify-content: center; }

.modal-overlay.active {
  display: flex; }

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px; }

::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 10px; }

::-webkit-scrollbar-thumb {
  background: #4b5563;
  border-radius: 10px; }

::-webkit-scrollbar-thumb:hover {
  background: #374151; }

/* Footer scroll behavior */
.footer-scroll {
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.footer-scroll.show {
  transform: translateY(0); }

@media (max-height: 600px) {
  .footer-scroll.show {
    position: fixed;
    bottom: 0;
    z-index: 30; } }

/* Helpers replacing Tailwind-only sizing */
.min-vh-100 {
  min-height: 100vh !important; }

.w-100p {
  width: 100% !important; }

.w-16rem {
  width: 16rem !important; }

.maxw-md {
  max-width: 28rem !important; }

/* ~ max-w-md */
.maxw-lg {
  max-width: 32rem !important; }

/* ~ max-w-lg */
.maxw-xl {
  max-width: 36rem !important; }

/* ~ max-w-xl */
.site-footer {
  padding: 20px;
  font-size: 14px;
  text-align: center; }
  .site-footer .footer-links {
    margin-bottom: 10px; }
    .site-footer .footer-links a {
      margin: 0 10px;
      color: inherit;
      text-decoration: none; }
