body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2c2f33, #23272a);
    padding-bottom: 3rem;
    color: #ffffff;
}

header {
    background-color: #7289da;
    color: #ffffff;
    padding: 1rem 0;
    text-align: center;
}


.discord-widget-section {
    background-color: #2c2f33;
    padding: 2rem 0;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.discord-widget-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discord-widget-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.discord-widget-section iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

nav a:hover {
    text-shadow: 0 0 5px rgba(114, 137, 218, 0.7);
}

.developer-bar {
    background-color: #23272a;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    color: #99aab5; /* apply to all text */
}

.developer-bar p {
    margin: 0;
}

.developer-bar img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.developer-bar span {
    color: #99aab5;
    font-weight: bold;
}

.showcase {
    background: url('showcase.jpg') no-repeat center center/cover;
    color: #ffffff;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.5);
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.showcase h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
}

.showcase p {
    font-size: 1.5rem;
}

#showcase-heading,
#showcase-description {
    transition: opacity 0.5s ease;
}

.btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    color: #ffffff;
    background-color: #7289da;
    border: none;
    cursor: pointer;
    margin-top: 1rem;
    text-transform: uppercase;
    border-radius: 5px;
    font-weight: 600;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.btn:hover {
    background-color: #5869a6;
    color: #23272a;
    transition: background-color 0.3s ease;
}

.features-section {
    text-align: center;
    padding: 2rem 0;
}

.features-section h2 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.feature {
    background: #23272a;
    color: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    max-width: 300px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.feature h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.feature p {
    font-size: 1rem;
    color: #ffffff;
}

.header {
    background-color: #23272a;
    padding: 20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
}

.header nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 25px;
    font-size: 17px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.header nav a:hover {
    color: #7289da;
}

.head-container {
    max-width: 900px;
    margin: 50px auto;
    background: #2c2f33;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

h1, h2, h3 {
    color: #ffffff;
    font-weight: 600;
}

p {
    line-height: 1.8;
    color: #99aab5;
    font-size: 16px;
}

ul {
    margin-left: 20px;
    color: #ffffff;
    font-size: 16px;
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header nav a {
        margin: 10px 0;
    }

    .container {
        padding: 20px;
    }
}

footer {
    background-color: #23272a;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
}

html {
    scroll-behavior: smooth;
}