body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #252732;
    color: #6265ef;
}

header {
    background: #2b2d3b;
    color: #e2e4e5;
    padding: 1em 0;
    text-align: center;
}
header a{
    text-decoration: none;
    color: #e2e4e5;
}

main {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}


h1, h2 {
    margin: 0;
    padding-bottom: 10px;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
    margin-top: 20px;
}

.plugin {
    background: #2c2e3b;
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #242530;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.plugin img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

.plugin h3 {
    margin-top: 10px;
}
.AI{
    color: #878585;
}

#plugin3 img {
    opacity: 1;
    transition: opacity 1s ease-in-out;
}
.hidden-img {
    opacity: 0;
}

.plugin a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background: #4d4fae;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}
.plugin p {
    line-height: 1;
    margin: 5px 15px;
}

.plugin h4 {
    line-height: 1;
    margin: 7px;
}

.plugin a:hover {
    background: #313288;
}

footer {
    text-align: center;
    justify-content: center;
    position: fixed;
    padding: 1px;
    background: #2b2d3b;
    color: #fff;
    width: 100%;
    bottom: 0;
}

footer a {
    display: inline-block;
    margin: 0 20px;
    color: #7677e6;
    text-decoration: none;
}

footer a:hover {
    color: #5254cc;
}

#about {
    text-align: center;
}

#about p, #about a {
    margin: 5px 0;
}

#about a {
    display: inline-block;
    color: #7677e6;
    text-decoration: none;
}

#about a:hover {
    color: #5254cc;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #4d4fae;
    font-size: 24px;
}

.social-links a:hover {
    color: #313288;
}

.hidden {
    display: none;
}

#read-more-btn {
    background-color: #323443;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
    border-radius: 5px;
}

#read-more-btn:hover {
    background-color: #252732;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(36, 38, 49);
    display: none;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    background-color: #2b2d3b;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.popup-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #4c4ead;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}