body {
    font-family: 'Poppins', sans-serif;
    background-color: #1e1e2e;
    color: #ffffff;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.kofi-banner {
    width: 100%;
    background: linear-gradient(135deg, #ffdd57, #ffac33);
    text-align: center;
    padding: 15px 0;
    font-size: 1.5em;
    font-weight: 700;
    color: #1e1e2e;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.kofi-banner a {
    text-decoration: none;
    color: white;
    background: #1e1e2e;
    padding: 10px 20px;
    border-radius: 5px;
    transition: transform 0.3s, background 0.3s;
}

.kofi-banner a:hover {
    transform: scale(1.1);
    background: #f8f8f8;
    color: #1e1e2e;
}

header {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
    color: white;
    padding: 60px 0 20px;
    text-align: center;
    font-size: 2em;
    font-weight: 600;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.hero {
    text-align: center;
    margin: 20px 0;
}

.hero-image {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(255, 120, 120, 0.4);
}

.container {
    width: 80%;
    max-width: 1000px;
    background: #2a2a3a;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
    margin: 20px auto;
    flex: 1;
}

.server-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.server-box {
    background: #3a3a4a;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.sweetbtn {
    background: linear-gradient(135deg, #ff758c, #ff7eb3);
    border: none;
    padding: 12px 24px;
    color: white;
    font-size: 1em;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 10px;
}

.sweetbtn:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(255, 120, 120, 0.4);
}

footer {
    background: #161625;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 15px;
}

.footer-links img {
    width: 60px;
    margin: 0 20px;
    transition: transform 0.3s, filter 0.3s;
    filter: brightness(1.4);
}

.footer-links img:hover {
    transform: scale(1.4);
    filter: brightness(1.7);
}
