* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5091f3;
    --primary-dark: #3a6cc4;
    --secondary-color: #5865F2;
    --bg-dark: #0a0414;
    --bg-card: #1a0f2e;
    --text-light: #ffffff;
    --text-muted: #a0a0b8;
    --accent-red: #ff4757;
    --gradient-start: #2c09c7;
    --gradient-end: #12023f;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a0a2e 100%);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: rgba(26, 15, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(80, 145, 243, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    font-family: 'Bungee', cursive;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.nav-brand:hover {
    color: var(--text-light);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-color);
}


/*Invitation Bot*/

.titre1, .titre2, .titre3, .texte {
    max-width: 900px;
    padding: 0 10px;
}

.titre1 { 
    font-size: 2rem;
     color: white;
    margin-left: 160px;
    margin-top: 80px;
}

.titre2 { 
    font-size: 1.6rem; 
    color: #5091f3; 
    margin-left: 200px;
    margin-top: 80px;
}

.titre3 { 
    font-size: 1.4rem; 
    font-weight: bold; 
    color: white; 
    margin-left: 220px;
    margin-top: 80px;
}

.texte { 
    font-size: 1rem; 
    color: white; 
    margin-left: 240px;
    margin-top: 20px;
}


.button-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.invite-button {
    background: #5865F2;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 15px 25px;
    margin: 10px;
}

.invite-button:hover {
    background: #4752c4;
}

img {
    max-width: 90%;
    height: auto;
    margin: 30px auto;
    display: block;
    filter: drop-shadow(0 0 0.75rem rgb(33, 78, 226));
    border-radius: 10%;
}


.special {
    color: red;
}

.useless {
    font-style: italic;
}

.contacts {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 30px;
}

.contact-icon {
    width: 200px;
    height: 200px;
    transition: transform 0.2s;
}

.contact-icon:hover {
    transform: scale(1.2);
}





/* Footer */

footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: linear-gradient(to bottom, #2c09c7, #12023f);
    padding: 30px 10px;
    color: white;
    text-align: center;
    position: absolute;
    bottom: 0;
    width: 100%;
}

footer .left {
    display: flex;
    margin-right: 150px;
    gap: 150px;
}

footer .right {
    display: flex;
    margin-left: 150px;
    gap: 150px;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .topbar {
        flex-direction: column;
        gap: 1rem;
    }

    .titre1 {
        font-size: 2rem;
    }

    .titre2 {
        font-size: 1.5rem;
    }

    .texte {
        font-size: 1rem;
        padding: 0 1rem;
    }

    img {
        max-width: 90%;
    }
}