/* Alapok és vízszintes scrollozás gátlása */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 40px 20px 40px 10%; 
    /* EREDETI HÁTTÉRKÉP */
    background-image: url('https://files.catbox.moe/4mgduv.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    line-height: 1.4;
    
    max-width: 100%;
    overflow-x: hidden;
}

.title {
    color: #ffffff; 
    text-shadow: 3px 3px 0px #000000; /* Retróbb árnyék */
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
}

.bio-section {
    width: 100%;
    max-width: 800px;
    margin-bottom: 30px;
    background-color: rgba(255, 255, 255, 0.92); 
    padding: 20px;
    border-radius: 4px;
    border: 2px solid #5C6AC4; /* Keret a dobozoknak */
    box-shadow: 5px 5px 0px rgba(0,0,0,0.2);
    
    /* LÓHERE SZEGÉLY - Ez teszi a szélére a díszt */
    border-right: 40px solid transparent;
    border-image-source: url('https://files.catbox.moe/679y0p.png');
    border-image-slice: 0 100 0 0;
    border-image-repeat: round;
}

.server-card {
    border-left: 10px solid #5C6AC4; /* Kiemelés a szervereknek */
}

.quote {
    font-style: italic; 
    font-size: 1.1em; 
    color: #5C6AC4; 
    margin-bottom: 10px;
}

code {
    background: #eee; 
    padding: 2px 5px; 
    border-radius: 4px;
    font-family: monospace;
}

/* IKON FAL STÍLUSA */
.button-wall {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    padding: 10px;
    background: rgba(0,0,0,0.05);
    border: 1px dashed #5C6AC4;
}

.button-wall img {
    height: 31px; /* Klasszikus gomb magasság */
    image-rendering: pixelated; /* Éles maradjon a gif */
}

.bio-section h2, .bio-section h3 {
    margin-bottom: 10px;
    color: #333;
}

.bio-section p {
    margin-bottom: 10px;
}

ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

li {
    margin-bottom: 4px;
}

.photo-credit {
    font-size: 11px;
    color: #666;
    margin-top: 15px;
}

.bottom-bar {
    max-width: 800px;
    margin-top: 40px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 3px solid #5C6AC4;
    font-size: 14px;
    color: #333333;
    border-radius: 4px;
}

#currentTime {
    margin-top: 20px;
    font-family: "Courier New", Courier, monospace;
    font-size: 13px;
    color: #ffffff;
    text-shadow: 1px 1px 2px #000;
}

/* Mobil nézet */
@media (max-width: 768px) {
    body {
        padding: 20px;
    }
    .title {
        font-size: 22px;
    }
    .bio-section {
        border-right: 20px solid transparent; /* Kisebb telókon ne foglaljon sok helyet */
    }
}