body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #1c1c1c;
    color: #f0e6d2;
    text-align: center;
}

h1, h2, h3 {
    text-align: center;
    margin: 40px 0 20px;
    color: #ffcc66;
}

/* Fejléc blokk */
.section {
    padding: 40px 20px;
    border-top: 2px solid #444;
}

/* Második szint (Content Table) */
.content-table {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.content-item {
    display: block;
    text-decoration: none;
    background: #2e2e2e;
    border: 1px solid #555;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #f0e6d2;
    transition: 0.3s;
    cursor: pointer;
}

.content-item:hover {
    background: #444;
    color: #ffcc66;
}

/* Nyelvválasztó */
.language-selector {
    position: fixed;
    top: 20px;
    left: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 1000;
}

.language-selector .selected img {
    width: 40px;
    border-radius: 4px;
    display: block;
}

.language-selector .options {
    display: flex;
    gap: 10px;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.language-selector .options img {
    width: 40px;
    border-radius: 4px;
    box-shadow: 0 0 5px #000;
    cursor: pointer;
}

.language-selector:hover .options {
    max-width: 300px;
    opacity: 1;
}

/* ====================== */
/* STARTER SET BLOKK */
/* ====================== */

.starter-set {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Fejléc mindig középen */
.starter-header {
    text-align: center;
    margin-bottom: 30px;
}

.starter-header h2 {
    color: #ffcc66;
    margin-bottom: 10px;
    font-size: 32px;
    text-transform: uppercase;
}

.starter-header p {
    max-width: 900px;
    margin: 0 auto 50px auto;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #e0d4b8;
    background: rgba(20, 20, 20, 0.6);
    padding: 20px;
    border: 1px solid rgba(255, 204, 102, 0.2);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

/* Színpad */
.starter-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    min-height: 650px; /* állítsd a háttér méretéhez */
}

/* Háttér (karakter + talapzat) */
.starter-background {
    background: url("../images/starter_set/starter-background.png") no-repeat center top;
    background-size: contain;
    width: 100%;
    height: 100%;
    min-height: 650px;
}

/* Ikonoszlopok */
.starter-icons {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.starter-icons.left {
    left: 15%;
}

.starter-icons.right {
    right: 15%;
}

.starter-icons img {
    width: 32px;
    height: 32px;
    border: 2px solid #555;
    border-radius: 35%;
    background: rgba(34, 34, 34, 0.85);
    padding: 5px;
}

/* Apprentice Chest */
.apprentice-chest {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.apprentice-header h2 {
    font-size: 28px;
    color: #ffcc66;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.apprentice-level {
    margin-bottom: 50px;
}

.level-title {
    font-size: 22px;
    font-weight: bold;
    color: #ffcc66;
    margin-bottom: 10px;
    text-align: left;
}

.level-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.chest-icon {
    width: 40px;
    height: auto;
}

.rewards {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.level-box.right .rewards {
    justify-content: flex-end;
}

.rewards img {
    width: 32px;
    height: 32px;
    border: 2px solid #555;
    border-radius: 6px;
    background: rgba(34, 34, 34, 0.85);
    padding: 4px;
}

.apprentice-level.right .level-title {
    text-align: right;
}

.apprentice-level.right .level-box {
    flex-direction: row-reverse;
    text-align: right;
}

/* ====================== */
/* CHAMPION LEVEL SECTION */
/* ====================== */

.champion-level {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.champion-header h2 {
    font-size: 30px;
    color: #ffcc66;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.champion-header p {
    max-width: 900px;
    margin: 0 auto 10px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #e0d4b8;
    background: rgba(20, 20, 20, 0.6);
    padding: 20px;
    border: 1px solid rgba(255, 204, 102, 0.2);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

.champion-image {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.champion-image img {
    width: 80%;
    max-width: 400px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* ====================== */
/* PASSIVE SKILLS SECTION */
/* ====================== */

.passive-skills {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    /*background: url("../images/passive_skills/passive-bg.png") no-repeat center top;*/
    background-size: contain;
}

.passive-header h2 {
    font-size: 30px;
    color: #ffcc66;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.passive-header p {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
    color: #e0d4b8;
    background: rgba(20, 20, 20, 0.6);
    padding: 20px;
    border: 1px solid rgba(255, 204, 102, 0.2);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}
/* Fő ikonrács */
.passive-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Soron belül középre rendezett ikonok */
.passive-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

/* Felső ikonok (nagyobb méret) */
.passive-row.top-icons img {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    border: 2px solid #6a4c2a;
    background: rgba(34, 34, 34, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    padding: 5px;
}

/* Könyv ikonok */
.passive-row.book-row img {
    width: 36px;
    height: 36px;
    border: 2px solid #553a20;
    border-radius: 10px;
    background: rgba(20, 20, 20, 0.8);
    padding: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.passive-row.book-row img:hover,
.passive-row.top-icons img:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* ====================== */
/* INGAME WIKI SECTION */
/* ====================== */

.ingame-wiki {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    /* background: url("../images/wiki/wiki-bg.png") no-repeat center top; */
    background-size: contain;
}

.wiki-header h2 {
    font-size: 30px;
    color: #ffcc66;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.wiki-header p {
    max-width: 850px;
    margin: 0 auto 40px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #e0d4b8;
    background: rgba(20, 20, 20, 0.6);
    padding: 20px;
    border: 1px solid rgba(255, 204, 102, 0.2);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

.wiki-image {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.wiki-image img {
    width: 95%;                 /* korábban 80% volt – nagyobb megjelenítés */
    max-width: 950px;           /* korábban 750px – több helyet enged */
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5); /* enyhe extra mélység */
    transform: scale(1.05);     /* picit optikailag “előhozza” */
    transition: transform 0.3s ease;
}

/* ====================== */
/* OFFLINE SHOP SECTION */
/* ====================== */

.offline-shop {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Cím és bevezető */
.offline-header h2 {
    font-size: 30px;
    color: #ffcc66;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.offline-header p {
    max-width: 850px;
    margin: 0 auto 50px auto;
    font-size: 16px;
    line-height: 1.6;
    color: #e0d4b8;
    background: rgba(20, 20, 20, 0.6);
    padding: 20px;
    border: 1px solid rgba(255, 204, 102, 0.2);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

/* --- Felső rész: szöveg bal, kép jobb --- */
.offline-top {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Szöveges sávok */
.offline-text {
    flex: 1;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.offline-text p {
    margin: 0;
    padding: 12px 20px;
    background: linear-gradient(to right, rgba(30, 25, 20, 0.85), rgba(60, 45, 30, 0.85));
    border: 1px solid rgba(255, 204, 102, 0.25);
    border-radius: 4px;
    color: #f0e6d2;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    text-align: left;
    transition: 0.2s ease;
}

.offline-text p:hover {
    background: linear-gradient(to right, rgba(50, 40, 30, 0.9), rgba(80, 60, 40, 0.9));
    border-color: #ffcc66;
    transform: translateX(5px);
}

/* Jobb oldali kép */
.offline-image img {
    width: 100%;
    max-width: 950px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* --- Alsó rész: kép és lista --- */
.offline-bottom {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* Lista háttérdobozzal */
.offline-list {
    background: rgba(25, 20, 15, 0.8);
    border: 1px solid rgba(255, 204, 102, 0.25);
    border-radius: 6px;
    padding: 25px 30px;
    max-width: 950px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.5) inset;
}

.offline-list ul {
    list-style: none;
    padding: 0;
    text-align: left;
    font-size: 16px;
    line-height: 1.8;
    color: #e0d4b8;
}

.offline-list ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.offline-list ul li::before {
    content: "-";
    position: absolute;
    left: 0;
    color: #ffcc66;
    font-size: 18px;
}

/* ====================== */
/* BATTLE PASS SECTION */
/* ====================== */

.battlepass {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Cím */
.battlepass-header h2 {
    font-size: 30px;
    color: #ffcc66;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Szövegdoboz */
.battlepass-header p {
    display: inline-block;
    max-width: 850px;
    background: linear-gradient(to right, rgba(30, 25, 20, 0.85), rgba(60, 45, 30, 0.85));
    border: 1px solid rgba(255, 204, 102, 0.25);
    border-radius: 6px;
    padding: 15px 25px;
    color: #e0d4b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

/* Tartalom – két kép egymás mellett */
.battlepass-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

/* Bal oldali karakter kép */
.battlepass-image.left img {
    width: 460px;
    height: auto;
    object-fit: contain;
}

/* Jobb oldali UI kép */
.battlepass-image.right img {
    width: 520px;
    height: auto;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

/* Hover finom kiemelés */
.battlepass-image img:hover {
    transform: scale(1.35);
    transition: transform 0.3s ease;
}

/* ====================== */
/* TALISMAN SECTION */
/* ====================== */

.talisman {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Cím */
.talisman-header h2 {
    font-size: 30px;
    color: #ffcc66;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Szöveg háttérdobozban */
.talisman-header p {
    display: inline-block;
    max-width: 850px;
    background: linear-gradient(to right, rgba(30, 25, 20, 0.85), rgba(60, 45, 30, 0.85));
    border: 1px solid rgba(255, 204, 102, 0.25);
    border-radius: 6px;
    padding: 15px 25px;
    color: #e0d4b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

/* Tartalom: két kép egymás mellett */
.talisman-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.talisman-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

.talisman-image img:hover {
    transform: scale(1.02);
}

/* Alsó kis ikonok */
.talisman-footer {
    margin-top: 40px;
}

.talisman-footer img {
    width: 400px;
    max-width: 80%;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.talisman-footer img:hover {
    opacity: 1;
}

/* ====================== */
/* ALCHEMY SECTION */
/* ====================== */

.alchemy {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Cím és szöveg */
.alchemy-header h2 {
    font-size: 30px;
    color: #ffcc66;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.alchemy-header p {
    display: inline-block;
    max-width: 850px;
    background: linear-gradient(to right, rgba(30, 25, 20, 0.85), rgba(60, 45, 30, 0.85));
    border: 1px solid rgba(255, 204, 102, 0.25);
    border-radius: 6px;
    padding: 20px 25px;
    color: #e0d4b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

/* Felső képek */
.alchemy-top {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.alchemy-top img {
    width: 100%;
    max-width: 420px;
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}

/* Alsó rész: 2 oszlop, középen függőleges vonallal */
.alchemy-grid {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    grid-template-rows: repeat(3, auto);
    column-gap: 80px;
    row-gap: 60px;
    align-items: start;
    justify-content: center;
    position: relative;
    margin-top: 60px;
}

/* Elválasztó középen */
.alchemy-grid::before {
    content: "";
    grid-column: 2;
    grid-row: 1 / span 3;
    width: 1px;
    background: rgba(255, 204, 102, 0.25);
    justify-self: center;
}

/* Bal és jobb oldali elemek */
.alchemy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}


/* Bal oldali 3 gem */
.alchemy-item.left1 { grid-column: 1; grid-row: 1; }
.alchemy-item.left2 { grid-column: 1; grid-row: 2; }
.alchemy-item.left3 { grid-column: 1; grid-row: 3; }

/* Jobb oldali 3 gem */
.alchemy-item.right1 { grid-column: 3; grid-row: 1; }
.alchemy-item.right2 { grid-column: 3; grid-row: 2; }
.alchemy-item.right3 { grid-column: 3; grid-row: 3; }

/* Ikon stílus */
.alchemy-item img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #ffcc66;
    background: rgba(20, 20, 20, 0.85);
    padding: 8px;
    margin-bottom: 15px;
}
/* Szövegdoboz */
.alchemy-desc {
    background: rgba(25, 20, 15, 0.85);
    border: 1px solid rgba(255, 204, 102, 0.25);
    border-radius: 6px;
    padding: 15px 20px;
    color: #e0d4b8;
    font-size: 15px;
    line-height: 1.5;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

.alchemy-desc p {
    margin: 0;
}
/* Bal oldali cellák (1., 3., 5. gyerek) */
.alchemy-item:nth-child(odd) {
    grid-column: 1;
}

/* Jobb oldali cellák (2., 4., 6. gyerek) */
.alchemy-item:nth-child(even) {
    grid-column: 3;
}

/* ====================== */
/* AUTO SKILL READER */
/* ====================== */

.auto-skill-reader {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Cím */
.auto-skill-header h2 {
    font-size: 30px;
    color: #ffcc66;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Szöveg háttérdobozban */
.auto-skill-header p {
    display: inline-block;
    max-width: 850px;
    background: linear-gradient(to right, rgba(30, 25, 20, 0.85), rgba(60, 45, 30, 0.85));
    border: 1px solid rgba(255, 204, 102, 0.25);
    border-radius: 6px;
    padding: 15px 25px;
    color: #e0d4b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

/* Két kép egymás mellett */
.auto-skill-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    flex-wrap: wrap;
}

.auto-skill-image img {
    border-radius: 8px;
    border: 1px solid #333;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease;
}

/* Bal kép (nagyobb) */
.auto-skill-image.left img {
    width: 380px;
    height: auto;
}

/* Jobb kép (kisebb, oldalsó ablak) */
.auto-skill-image.right img {
    width: 300px;
    height: auto;
}

/* Hover-effektus */
.auto-skill-image img:hover {
    transform: scale(1.03);
}

/* ====================== */
/* BUFFI SECTION */
/* ====================== */

.buffi-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Cím és szöveg */
.buffi-header h2 {
    font-size: 30px;
    color: #ffcc66;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.buffi-header p {
    display: inline-block;
    max-width: 850px;
    background: linear-gradient(to right, rgba(30, 25, 20, 0.85), rgba(60, 45, 30, 0.85));
    border: 1px solid rgba(255, 204, 102, 0.25);
    border-radius: 6px;
    padding: 15px 25px;
    color: #e0d4b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

/* Ikonok */
.buffi-icons {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 25px;
}

.buffi-icons img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(25, 20, 15, 0.85);
    border: 1px solid rgba(255, 204, 102, 0.3);
    padding: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buffi-icons img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255, 204, 102, 0.3);
}

/* Középső kép */
.buffi-image img {
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* ====================== */
/* DUNGEON INFO SECTION */
/* ====================== */

.dungeon-info-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

/* Cím */
.dungeon-info-header h2 {
    font-size: 30px;
    color: #ffcc66;
    text-transform: uppercase;
    margin-bottom: 15px;
}

/* Leírás háttérdobozban */
.dungeon-info-header p {
    display: inline-block;
    max-width: 850px;
    background: linear-gradient(to right, rgba(30, 25, 20, 0.85), rgba(60, 45, 30, 0.85));
    border: 1px solid rgba(255, 204, 102, 0.25);
    border-radius: 6px;
    padding: 15px 25px;
    color: #e0d4b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 50px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4) inset;
}

/* Kép középen */
.dungeon-info-image img {
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    transition: transform 0.25s ease;
}




/* protect.css (vagy style.css aljára) */
/* ha a detect érzékeli a devtools-t, hozzáadjuk a .devtools-opened osztályt a <html>-hez */
/* így csendben elrejthetjük a tartalmat (vagy elhomályosítjuk) */

html.devtools-opened body {
  transition: opacity 0.2s ease, filter 0.2s ease;
  opacity: 0.03;                /* majdnem eltüntetjük */
  filter: blur(3px) grayscale(0.6);
  pointer-events: none;         /* tiltsa a kattintást */
  user-select: none;
}

/* Ha inkább "Access Denied" képernyőt szeretnél, létrehozhatunk egy overlay-t is:
html.devtools-opened .protect-overlay { display:block; }
*/
