/* General Page Styling */
body {
    margin: 0;
    padding: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(120deg, #FFD700, #000, #FFD700);
    background-size: 200% 200%;
    animation: gradientAnimation 10s ease infinite; /* Gradient animation */
    color: white;
    display: flex;
    flex-direction: column; /* Stack elements vertically */
    align-items: center;
    justify-content: center; /* Center elements vertically */
    min-height: 100vh; /* Minimum height of the viewport */
    text-align: center;
    position: relative; /* Allows particles to position relative to body */
    overflow-x: hidden; /* Prevents horizontal scroll */
}

/* Centered Content Container */
.container {
    text-align: center;
    padding: 20px;
    z-index: 10; /* Ensures content stays above other elements */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh; /* Takes full viewport height to center vertically */
}

/* Logo Styling */
.logo {
    width: 250px; /* Adjust the width to fit your design */
    max-width: 100%; /* Ensures logo is responsive */
    height: auto; /* Maintains aspect ratio */
    margin-bottom: -45px;
}

/* Main Text Styling */
.main-text {
    font-size: 2.5em;
    margin: 20px 0;
    letter-spacing: 2px;
}

.main-text span {
    color: #FFD700;
}

/* Paragraph Styling */
p {
    margin: 20px 0;
    font-size: 1.1em;
}

/* Hyperlink Styling */
a {
    color: #FFD700;
    font-weight: bolder;
    text-decoration: none;
}

/* Button Styling */
.button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 20px;
    background-color: #FFD700;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #ffffff77;
}

/* Gradient Background Animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Floating Particle Styling */
.floating-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: particleAnimation 20s linear infinite;
}

/* Floating Particle Animation */
@keyframes particleAnimation {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translate(100vw, 100vh);
        opacity: 0;
    }
}

/* Additional Animation for Text (Optional) */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.floating-text {
    animation: float 3s ease-in-out infinite;
    opacity: 0.1;
    font-size: 5em;
    position: absolute;
    color: #ffffff;
}

/* Discord Widget Styling */
.discord-widget {
    margin-top: -20vh; /* Creates space above the widget, below the main content */
    padding: 10px;
    width: 350px; /* Adjust the width to fit your design */
    height: 500px; /* Adjust the height to fit your design */
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensures content fits within the rounded corners */
}
