
body {
    background: #000;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    margin: 0;
    padding-top: 100px; 
}

a {
    color: #fff;
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


#header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    z-index: 1000;
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(28, 28, 28, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 15px 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

#logo a {
    font-size: 24px;
    font-weight: bold;
}

.action-button {
    background: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: bold;
    transition: background 0.6s;
}

.action-button:hover {
    background: #eee;
    text-decoration: none;
}


#main {
    padding: 40px 0;
}

.plugin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.plugin-card {
    background: #1a1a1a;
    border-radius: 10px;
    padding: 25px;
    border: 1px solid #222;
    transition: transform 0.3s, box-shadow 0.3s;
}

.plugin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.plugin-card h3 {
    margin-top: 0;
    font-size: 22px;
}

.plugin-card p {
    color: #aaa;
    line-height: 1.6;
}

.download-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    border: 1px solid #fff;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s;
}

.download-button:hover {
    background-color: #fff;
    color: #000;
    text-decoration: none;
}


#footer {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #222;
    color: #999;
    margin-top: 40px;
}


.modal {
    display: none; 
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    color: #000;
    padding: 30px;
    border: none;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.modal-images {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.modal-images img {
    width: 45%;
    border-radius: 5px;
}

.close-button {
    background: #505050;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    margin-top: 20px;
    width: 80%;
    transition: background 0.3s;
}

.close-button:hover {
    background: #2d2d2d;
}
