:root {
  --primary: #e9712c;
  --secondary: #f6f2e4;
  --primary-dark: #d65f1d;
  --text-dark: #2d3748;
  --text-light: #4a5568;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", sans-serif;
  background-color: var(--secondary);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  padding: 2rem;
}

.content {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(233, 113, 44, 0.1);
  text-align: center;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

.logo-circle {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  position: relative;
  transform: rotate(-45deg);
}

.logo-circle::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.message {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--secondary);
  border-radius: 12px;
}

.message p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.status-text {
  font-weight: 500;
  color: var(--text-dark);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background: white;
  border: 1px solid rgba(233, 113, 44, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(233, 113, 44, 0.1);
}

.card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.card p {
  color: var(--text-light);
}

footer {
  margin-top: 3rem;
  text-align: center;
  color: var(--text-light);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  body {
    padding-block: 4rem;
    background-color: initial;
  }

  .container {
    padding: 0;
  }

  .content {
    padding: 2rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
