/* === INDEX.PHP START === */

.index-root {
    padding: 40px 20px;
}

.index-logo-wrapper {
    text-align: center;
    margin-bottom: 40px;
}
.index-main-logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 18px;
    filter: brightness(1.12) drop-shadow(0 0 6px #00ffc8);
    z-index: 10;
}

.index-posts {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.index-post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(0,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
}

.index-post.left {
    flex-direction: row-reverse;
}
.index-post.right {
    flex-direction: row;
}

.index-content {
    max-width: 600px;
    color: #fff;
    text-shadow: 0 0 5px #0ff;
}

.index-post h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #0ff;
}
.index-post p {
    font-size: 1rem;
    line-height: 1.6;
}

.index-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 10px 0 10px 30px;
}
.index-post.left .index-image {
    padding: 10px 30px 10px 0;
}

.index-image img {
    display: block;
    max-width: 280px;
    max-height: 140px;
    width: 100%;
    height: auto;
    margin: 0 auto;
    border-radius: 14px;
    object-fit: contain;
    z-index: 10;
}
@media (max-width: 900px) {
    .index-root {
        padding: 20px 2vw;
    }
    .index-post {
        flex-direction: column !important;
        text-align: center;
        padding: 20px 10px;
    }
    .index-content {
        max-width: 100%;
    }
    .index-image,
    .index-post.left .index-image {
        padding: 10px 0 !important;
    }
    .index-image img {
        max-width: 70vw;
        max-height: 90px;
        margin: 0 auto;
    }
    .index-main-logo {
        max-width: 110px;
    }
}

/* === INDEX.PHP END === */

/* === PARTNERS.PHP START === */
.partners-root {
    padding: 40px 20px;
    text-align: center;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.partner-card {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    padding: 20px;
    width: 250px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    transition: transform 0.3s;
}

.partner-card:hover {
    transform: scale(1.05);
}

.partner-logo {
    max-width: 100px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px #0ff);
}

.partner-socials a {
    margin: 0 5px;
    display: inline-block;
}

.partner-socials img {
    width: 24px;
    height: 24px;
    filter: brightness(1.2);
    transition: filter 0.3s;
}

.partner-socials img:hover {
    filter: brightness(1.5);
}
/* === PARTNERS.PHP END === */


body {
    margin: 0;
    padding: 0;
    background: url('../images/logo.png') no-repeat center center fixed;
    background-size: cover;
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@media (max-width: 1024px), (max-width: 768px) {
    body {
        background-image: url('../images/logo_mobile.png');
    }
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

input, select, .form-control, .btn {
    background-color: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.neon-nav {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
}

.neon-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
    flex-direction: row-reverse;
}

.neon-nav li {
    position: relative;
}

.neon-nav a {
    color: #0ff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    position: relative;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
}

.neon-nav a:hover {
    background-color: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px #0ff, 0 0 30px #0ff;
    transform: scale(1.05);
}
.footer {
    background: rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 20px 10px;
    color: #0ff;
    font-size: 0.9rem;
    text-shadow: 0 0 5px #0ff, 0 0 10px #0ff;
    box-shadow: 0 -2px 10px rgba(0, 255, 255, 0.2);
    border-top: 1px solid rgba(0,255,255,0.2);
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}
.main-wrapper {
    padding: 40px 20px;
}

.logo-wrapper .main-logo {
    max-width: 180px;
    height: auto;
    filter: drop-shadow(0 0 10px #f0f) brightness(110%);
}

.posts {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.post {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(0,255,255,0.2);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0,255,255,0.2);
}

.post.left {
    flex-direction: row-reverse;
}

.post.right {
    flex-direction: row;
}

.post .content {
    max-width: 600px;
    color: #fff;
    text-shadow: 0 0 5px #0ff;
}

.post h2 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    color: #0ff;
}

.post p {
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .post {
        flex-direction: column !important;
        text-align: center;
    }

    .post .content {
        max-width: 100%;
    }
}
.map-wrapper {
    padding: 40px 20px;
}

.servers {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.server-card {
    width: 350px;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
    color: #fff;
    text-shadow: 0 0 5px #0ff;
    transition: transform 0.3s ease;
}

.server-card:hover {
    transform: translateY(-5px);
}

.progress-container {
    width: 100%;
    background: #222;
    border-radius: 20px;
    overflow: hidden;
    height: 18px;
    margin-bottom: 10px;
}

.progress-bar {
    height: 18px;
    transition: width 0.5s ease;
}

.comment {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #ccc;
}

.timeline {
    margin-top: 10px;
    font-size: 0.8rem;
    color: #aaa;
}
.ping {
    margin-top: 10px;
    font-size: 0.95rem;
    color: #0ff;
    text-shadow: 0 0 5px #0ff;
}
.about-wrapper {
    background-color: #0d1117;
    color: #c9d1d9;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
    padding: 2rem;
    background-color: #161b22;
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.05);
}

.about-content p {
    margin-bottom: 1.5rem;
    white-space: pre-line;
}

.about-content strong {
    color: #58a6ff;
}

