@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0f0f0f;
    color: #eee;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

/* Navigáció */
.plugin-nav ul {
    display: flex;
    justify-content: center;
    background-color: #1c1c1c;
    padding: 15px 0;
    margin: 0;
    list-style: none;
}

.plugin-nav ul li {
    margin: 0 20px;
}

.plugin-nav ul li a {
    color: #eee;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s;
}

.plugin-nav ul li a:hover {
    color: #00bcd4;
}

/* Fejléc */
header {
    background: linear-gradient(to right, #222, #333);
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
}

h1 {
    font-size: 42px;
    margin: 10px 0;
    color: #00bcd4;
}

.version {
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 20px;
    color: #888;
}

/* Tartalom */
main {
    max-width: 1000px;
    margin: 30px auto;
    padding: 0 20px;
}

.post-content {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px #00000040;
}

h2 {
    font-size: 24px;
    margin-top: 30px;
    color: #00bcd4;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul li {
    font-size: 17px;
    margin-bottom: 10px;
}

/* Videó */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 10px #00000040;
    margin-top: 25px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background-color: #1c1c1c;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    margin-top: 40px;
}
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    display: inline-block;
    margin: 0 10px;
    transition: transform 0.2s ease;
}

.social-icons img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* fehér ikonok */
}

.social-icons a:hover {
    transform: scale(1.2);
}

/* Download Button*/
.download-section {
    text-align: center;
    margin-top: 20px;
}

.download-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #45a049;
}
