body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #2c4235;
    color: white;
}

/* Header és navigáció */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 24px;
}

/* SECTION TITLE FIX – mindig új sorba kerül */
h2.section-title {
    text-align: center;
    font-size: 2.5em;
    margin: 30px 0;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);

    display: block;
    width: 100%;
    flex-basis: 100%;
}

.container {
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.setup-section {
    flex: 1;
    min-width: 300px;
    max-width: 30%;
    background: #2a2a3b;
    padding: 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.setup-section:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.setup-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(5px);
    z-index: -1;
    opacity: 0.2;
}

.setup-section h2 {
    margin: 0 0 20px;
    font-size: 1.8em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.setup-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.setup-section ul li {
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: transform 0.2s ease;
    font-size: 25px;

    -webkit-text-stroke-width: 0.7px;
    -webkit-text-stroke-color: rgb(255, 255, 255);
    color: rgb(0,0,0);
}

.setup-section ul li:hover {
    transform: translateX(10px);
    background-color: rgba(255, 255, 255, 0.2);
}

nav {
    display: flex;
    gap: 20px;
}

nav a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    padding: 8px 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

nav a:hover {
    border: 2px solid white;
    border-radius: 5px;
    background-color: #555;
}


.button {
  background: #2575fc;
  color: white;
  padding: 15px 30px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grow:hover {
  transform: scale(1.2);
  background-color: #ff6f61;
  color: white;
  transition: all 0.4s ease;
}