body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('../images/background.jpg') no-repeat center / cover;
  filter: blur(8px);
  z-index: -1;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  max-width: 900px;
  width: 90%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}

h1 {
  margin-top: 0;
  color: #004F7C;
  text-align: center;
}

.subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 15px;
}

.agb-content {
  flex-grow: 1;
  overflow-y: auto;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  line-height: 1.5;
}

.agb-content h2 {
  color: #004F7C;
  margin-top: 20px;
}

.button-group {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.button {
  padding: 12px 24px;
  background-color: #004F7C;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  opacity: 0.95;
}

a {
  color: #004F7C;
}
