:root {
  --bg-light: #f3f3f3;
  --accent: #eb0029;
  --text-dark: #222222;
  --font-stack: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --box-bg: #ffffff;
  --box-shadow: rgba(0, 0, 0, 0.1);
}

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

html, body {
  height: 100%;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-stack);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 40px;
}

.container {
  background-color: var(--box-bg);
  border-radius: 16px;
  box-shadow: 0 10px 30px var(--box-shadow);
  padding: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  gap: 60px;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-in-out;
}

.logo {
  width: 280px;
  height: auto;
  flex-shrink: 0;
  transform: translateY(20px);
  animation: slideUp 0.8s ease-out forwards;
}

.text-block {
  max-width: 500px;
  opacity: 0;
  animation: fadeText 1.2s ease-in-out 0.6s forwards;
}

.text-block h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--accent);
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.text-block p {
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text-dark);
  display: inline-flex;
  align-items: center;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.cursor {
  width: 10px;
  height: 1.2rem;
  background-color: #000000;
  box-shadow: 0 0 5px #000000;
  margin-left: 10px;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes slideUp {
  to {
    transform: translateY(0);
  }
}

@keyframes fadeText {
  to {
    opacity: 1;
  }
}

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