:root {
  --color-primary-yellow: #fcbc00;
  --color-white: #ffffff;
  --gradient-blue: linear-gradient(90deg, #148bdd 0%, #0f5fb9 100%);
  --gradient-text-blue: linear-gradient(90deg, #1055ad 0%, #1385d8 40.99%);
  --gradient-text-orange: linear-gradient(90deg, #e48500 0%, #ffc300 15%);
  --gradient-orange-box: linear-gradient(90deg, #ffc300 0%, #e48500 100%);
  --bg-blur-blue: rgba(2, 61, 130, 0.3);
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: radial-gradient(ellipse at center, #001122 0%, #000712 50%, #000000 100%);
  background-attachment: fixed;
  color: var(--color-white);
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(2px 2px at 20px 30px, rgba(255,255,255,0.1), transparent),
    radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.05), transparent),
    radial-gradient(1px 1px at 90px 40px, rgba(255,255,255,0.08), transparent),
    radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.03), transparent),
    radial-gradient(2px 2px at 160px 30px, rgba(255,255,255,0.06), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  z-index: -1;
  pointer-events: none;
}

.site-wrapper {
  max-width: 1892px;
  margin: 0 auto;
  position: relative;
}

.background-elements-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden; /* Enforces mask from 8:6 */
  pointer-events: none;
}

.main-background-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.decorative-background-group {
  position: absolute;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px; /* Adjusted from 150px for better spacing balance */
  padding-top: 0; /* Header is part of this flow */
  position: relative;
  z-index: 1;
}

section {
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
}

.section-inner {
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
}

.button {
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  color: var(--color-white);
  transition: all 0.3s ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.button-primary {
  background: var(--gradient-blue);
  white-space: nowrap; /* Keep text in one line */
  padding: 6px 12px; /* Reduced padding by half */
}

.button-primary:hover {
  background: linear-gradient(90deg, #1a9eff 0%, #1265d9 100%); /* Brighter gradient on hover */
  box-shadow: 0 10px 30px rgba(20, 139, 221, 0.4);
  transform: translateY(-3px) scale(1.05);
}

.button-secondary {
  background-color: var(--bg-blur-blue); /* From style_22, but it's just a rect. Assuming it's a button style */
  border: 1px solid #148bdd; /* Thin solid border with the primary blue color from gradient */
  white-space: nowrap; /* Keep text in one line */
  position: relative;
  padding: 6px 12px; /* Reduced padding by half */
}

.button-secondary:hover {
  background-color: rgba(20, 139, 221, 0.15); /* Slightly brighter background */
  border-color: #1a9eff; /* Brighter border color */
  box-shadow: 0 10px 30px rgba(20, 139, 221, 0.2);
  transform: translateY(-3px) scale(1.05);
  color: #ffffff;
}

.gradient-text {
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  /* Javítás a szöveg kijelölhetőségéhez */
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Kijelölés esetén visszaállítjuk a szöveg színét */
.gradient-text::selection {
  -webkit-text-fill-color: #ffffff;
  -moz-text-fill-color: #ffffff;
  background: rgba(20, 139, 221, 0.3);
}

.gradient-text::-moz-selection {
  -webkit-text-fill-color: #ffffff;
  -moz-text-fill-color: #ffffff;
  background: rgba(20, 139, 221, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1300px) {
  .section-inner {
    max-width: 95%;
  }
  .content-container {
    gap: 80px;
  }
  section {
    padding: 40px 15px;
  }
}

@media (max-width: 768px) {
  .content-container {
    gap: 60px;
  }
  section {
    padding: 30px 10px;
  }
  .button {
    font-size: 14px;
    padding: 8px 16px;
  }
}