* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #2e1c47, #47494f);
    color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.header-section {
    text-align: center;
    padding: 20px;
}

.logo {
    font-size: 36px;
    font-weight: bold;
}

.nav-bar {
    margin-top: 10px;
}

.nav-links {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-button {
    text-decoration: none;
    padding: 10px 20px;
    background-color: #4caf50;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #45a049;
}

.main-section, .about-section, .features-section, .owners-section, .discord-section {
    text-align: center;
    margin: 40px 0;
}

h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.owner-profile {
    margin: 20px 0;
}

.owner-image {
    width: 150px;
    height: auto;
    border-radius: 10px;
}

.cta-button, .discord-link {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    border-radius: 5px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s, transform 0.3s;
}

.cta-button:hover, .discord-link:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

footer {
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin: 5px 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-in forwards;
}

.animate-slide-up {
    animation: slideIn 0.5s ease-in forwards;
}

.animate-bounce {
    animation: bounce 0.5s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}
