* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

body {
    background: linear-gradient(45deg, #1ebbcc, #ab5cec, #416ac4, #582b7e);
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    animation: gradient 15s ease infinite;
    background-size: 300% 300%;
}

@keyframes gradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    margin: 20px;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    height: 10vh;
}

header .logo {
    font-size: 1.5em;
    font-weight: bold;
}

header img {
    height: 8vh;
}

header nav {
    margin-left: auto;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

header nav ul li a:hover {
    color: #ff7e5f;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.support-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    padding: 40px;
    border-radius: 15px;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.form-container,
.alternative-container {
    width: 100%;
    max-width: 48%;
}

.support-section h1,
.support-section h2 {
    text-align: center;
    margin-bottom: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
}

.contact-form button {
    padding: 10px;
    border: none;
    border-radius: 10px;
    background: #ff7e5f;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;}

.contact-form button:hover {
    background: #ff5722;
}

.form-response {
    margin-top: 20px;
    text-align: center;
}

.discord-invite {
    text-align: center;
    margin-top: 20px;
}

.discord-button {
    text-decoration:none;
    color: #ffffff;
    margin-left: 100px;
    transition: color 0.2s;
}

.discord-button:hover {
    color: #2e30d3;
}

.mailto-button {
    text-decoration:none;
    color: #ffffff;
    margin-left: 100px;
}

footer {
    text-align: center;
    padding: 20px;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.footer-item {
    margin: 10px;
}

.footer-a {
    text-decoration: none;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin: 5px 0;
    text-align: right;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    text-decoration: none;
    color: inherit;
    margin: auto;
}

.social-link i {
    font-size: 1.5em;
}



@media only screen and (max-width: 991px) {

    .support-section {
        display: block;
    }

    .form-container,
.alternative-container {
    width: 100%;
    max-width: 100%;
}

    header nav ul li:nth-child(2) {
        display: none;
    }

    header nav ul li:nth-child(4) {
        display: none;
    }

    .footer-links {
        display: none;
    }
}