        :root {
            --bg-color: #fafafa;
            --main-teal: #40e0d0; /* Élénk türkiz */
            --soft-teal: #a2d2df; /* Pasztell türkiz */
            --coral: #f8b195;
            --mustard: #f9d423;
            --text: #2c3e50;
            --max-width: 1600px;
        }

        body {
            font-family: 'Quicksand', sans-serif;
            background-color: var(--bg-color);
            color: var(--text);
            margin: 0;
            line-height: 1.6;
        }


        /* --- Fix szélességű tartály --- */
        .page-wrapper {
            max-width: var(--max-width);
            margin: 0 auto;
            background: white;
            box-shadow: 0 0 50px rgba(0,0,0,0.03);
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        /* --- Borítókép és Profil --- */
        .hero-section {
            position: relative;
            height: 350px;
            background: linear-gradient(135deg, var(--soft-teal), var(--coral));
			background-image: url('boritokep2.png');
            background-size: cover;
            background-position: center;
        }

        .profile-container {
            position: absolute;
            bottom: -70px;
            left: 50px;
            display: flex;
            align-items: flex-end;
            gap: 20px;
        }

        .profile-circle {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            border: 8px solid white;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            overflow: hidden;
            background: white;
            animation: float 6s infinite ease-in-out;
        }

        .profile-circle img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .profile-text h1 {
            margin: 0;
            font-size: 2.5rem;
            color: #3aa0ac;
            text-shadow: 0 2px 10px rgba(0,0,0,0.2);
            font-family: 'Indie Flower', cursive;
        }

        /* --- Tartalom Szekciók --- */
        main {
            padding: 80px 50px 50px;
        }

        .content-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        /* --- Akvarell Paca Szekció --- */
        .blob-card {
            position: relative;
            padding: 30px;
            background: white;
            border-radius: 30px;
            z-index: 1;
        }

        .blob-card::before {
            content: "";
            position: absolute;
            top: -10px; left: -10px; right: -10px; bottom: -10px;
            background: var(--soft-teal);
            opacity: 0.2;
            z-index: -1;
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            animation: morph 10s infinite alternate;
        }

        /* --- Animációk --- */
        @keyframes morph {
            0% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
            100% { border-radius: 60% 40% 30% 70% / 50% 30% 70% 40%; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .reveal {
            margin-top: 4em;
			opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* --- Blog/Gaming Stílus --- */
        .gaming-side {
            background: #f0f4f8;
            padding: 20px;
            border-radius: 20px;
            border-top: 5px solid #107c10; /* Xbox zöld pasztellesebben */
        }

        .tag {
            display: inline-block;
            padding: 4px 12px;
            background: var(--main-teal);
            color: white;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        nav {
            position: absolute;
            top: 20px;
            right: 50px;
            display: flex;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }









.back-to-hub {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* Üveg hatás */
    border: 1px solid var(--teal);
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.back-to-hub:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 8px 25px rgba(162, 210, 223, 0.3);
}

.home-icon { font-size: 1.2rem; }

/* Mobilon csak a házikó látszódjon, hogy ne foglaljon sok helyet */
@media (max-width: 600px) {
    .home-text { display: none; }
    .back-to-hub { padding: 10px; border-radius: 50%; }
}













/* --- Mobilos igazítások (768px alatt) --- */
@media (max-width: 768px) {
    .page-wrapper {
        width: 100%;
        margin: 0;
        box-shadow: none; /* Mobilon felesleges a nagy árnyék */
    }

    .hero-section {
        height: 250px; /* Alacsonyabb borítókép */
    }

    .profile-container {
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: center;
        bottom: -100px; /* Lejjebb toljuk, mert egymás alatt lesznek */
        gap: 10px;
    }

    .profile-circle {
        width: 140px;
        height: 140px;
        border-width: 5px;
    }

    .profile-text h1 {
        font-size: 1.8rem;
        color: var(--text); /* Mobilon a fehér háttéren legyen sötét */
        text-shadow: none;
        text-align: center;
    }

    nav {
        right: 0;
        left: 0;
        justify-content: center;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(5px);
        padding: 10px 0;
        top: 0;
    }

    nav a {
        color: var(--text);
        font-size: 0.9rem;
    }

    main {
        padding: 120px 20px 40px; /* Nagyobb felső padding a belógó profil miatt */
    }

    .content-grid {
        grid-template-columns: 1fr; /* Egymás alá kerülnek az oszlopok */
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); /* Kisebb képek, több egy sorban */
    }

    .sidebar-card {
        transform: none !important; /* Mobilon ne mozogjon oldalra hoverkor */
    }
}

/* --- Extra kicsi kijelzők (pl. iPhone SE) --- */
@media (max-width: 480px) {
    .profile-circle {
        width: 120px;
        height: 120px;
    }
    
    .profile-text h1 {
        font-size: 1.5rem;
    }
}







/* --- Asztali elrendezés --- */
.content-grid {
    display: flex;
    flex-direction: row; /* Egymás mellett */
    gap: 40px;
    align-items: flex-start;
}

.main-content {
    flex: 2; /* A szöveges rész kétszer olyan széles */
}

aside {
    flex: 1; /* Az oldalsáv keskenyebb */
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky; /* Görgetésnél velünk jön */
    top: 20px;
}

/* --- Mobilos elrendezés (768px alatt) --- */
@media (max-width: 768px) {
    .content-grid {
        flex-direction: column; /* Egymás alá kerülnek */
        gap: 30px;
    }

    .main-content, aside {
        width: 100%; /* Mindkettő kitölti a szélességet */
    }

    aside {
        order: 2; /* A gombok a szöveg alá kerülnek */
        flex-direction: row; /* Mobilon egymás mellett is lehetnek a gombok, ha férnek... */
        flex-wrap: wrap; /* ...vagy törjenek több sorba */
    }

    .sidebar-card {
        flex: 1; /* Egyforma szélesek lesznek mobilon egymás mellett */
        min-width: 250px; /* De ne legyenek túl kicsik */
        margin-bottom: 0;
    }
}









/* Oldalsáv kártyák alapstílusa */
.sidebar-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    margin-bottom: 20px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.sidebar-card:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Ikonok méretezése */
.card-icon svg {
    width: 40px;
    height: 40px;
    transition: fill 0.3s ease;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
}

.card-text strong {
    font-size: 1.1rem;
    color: var(--text);
}

/* --- Xbox specifikus színek --- */
.xbox-link {
    border-left: 6px solid #a8e0a8; /* Pasztell Xbox zöld */
}

.xbox-link .card-icon svg {
    fill: #a8e0a8;
}

.xbox-link:hover {
    background: #f0fff0;
}

.xbox-link:hover .card-icon svg {
    fill: #107c10; /* Erősebb zöld hoverre */
}

/* --- Facebook specifikus színek --- */
.fb-link {
    border-left: 6px solid var(--soft-teal); /* Türkiz, hogy passzoljon Kata kedvencéhez */
}

.fb-link .card-icon svg {
    fill: var(--soft-teal);
}

.fb-link:hover {
    background: #f0faff;
}

.fb-link:hover .card-icon svg {
    fill: #1877F2; /* Hivatalos FB kék hoverre */
}











.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: 0.3s;
}

.gallery-item:hover {
    border-color: var(--main-teal);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%; height: 100%; object-fit: cover;
}

.overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(64, 224, 208, 0.4);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}

.gallery-item:hover .overlay { opacity: 1; }
.overlay span { color: white; font-weight: bold; border: 2px solid white; padding: 5px 15px; border-radius: 20px; }

/* --- Lightbox Stílus --- */
.lightbox {
    display: none; position: fixed; z-index: 9999;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.9); backdrop-filter: blur(5px);
    justify-content: center; align-items: center;
}

.lightbox-content { position: relative; max-width: 80%; max-height: 80%; }
.lightbox-content img { width: 100%; height: auto; border-radius: 10px; border: 5px solid white; }

.close { position: absolute; top: 30px; right: 50px; color: white; font-size: 50px; cursor: pointer; }

.nav-btns { position: absolute; top: 50%; width: 100%; display: flex; justify-content: space-between; transform: translateY(-50%); }
.nav-btns button { background: rgba(255,255,255,0.2); border: none; color: white; font-size: 30px; padding: 20px; cursor: pointer; border-radius: 50%; }
.nav-btns button:hover { background: var(--main-teal); }



/* A tartály maradjon rugalmas */
.lightbox-content {
    position: relative;
    width: 90%;  /* Max a szélesség 90%-a */
    height: 90%; /* Max a magasság 90%-a */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* A kép varázslata */
.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain; /* Megőrzi a méretarányt és belefér a keretbe */
    border-radius: 10px;
    border: 4px solid white;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

/* A gombok pozíciójának finomítása, hogy ne takarják a képet */
.nav-btns {
    position: absolute;
    top: 50%;
    left: -60px; /* Kicsit kitoljuk oldalra */
    right: -60px;
    width: calc(100% + 120px);
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; /* A gombok közötti üres rész ne blokkolja a kattintást */
}

.nav-btns button {
    pointer-events: auto; /* A gombok maguk újra kattinthatóak */
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 40px;
    padding: 15px 25px;
    padding: 15px 25px;
    cursor: pointer;
    border-radius: 10px;
    transition: 0.3s;
}

.nav-btns button:hover {
    background: var(--main-teal);
}

/* Mobilon a gombok kerüljenek beljebb */
@media (max-width: 768px) {
    .nav-btns {
        left: 0;
        right: 0;
        width: 100%;
        padding: 0 10px;
    }
}














footer {
    text-align: center;
    padding: 40px;
    margin-top: 50px;
    border-top: 1px solid #eee;
    color: var(--text);
}












.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--main-teal);
    border: none;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; /* Akvarell forma */
    cursor: pointer;
    display: none; /* Alapból rejtett */
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(64, 224, 208, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: morph 6s infinite alternate; /* A korábban definiált morph animációt használjuk */
}

.back-to-top:hover {
    transform: scale(1.1) translateY(-5px);
    background: var(--soft-teal);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
}

/* Mobilon kicsit kisebb lehet */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}