* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    color: #ffffff;
    overflow: hidden;
    height: 100vh;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background: url('background.jpg') center center / cover no-repeat;
    filter: blur(30px) brightness(0.50) hue-rotate(0deg);
    pointer-events: none;
}



.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
    z-index: 2;
}

.content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out;
}

.title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #fff;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    animation: none;
    text-shadow: none;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.25));
    border-radius: 18px;
    border: 2px solid rgba(157, 175, 255, 0.089);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.buttons-row {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    width: max-content;
    justify-content: center;
}

.btn-large {
    width: 100%;
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 0.2rem;
    align-self: stretch;
}

.buttons-row,
.btn-large {
    min-width: 320px;
    max-width: 100vw;
}

.btn {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.13);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 24px rgba(30, 30, 30, 0.08);
    border-radius: 12px;
    padding: 0.9rem 2rem;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: none;
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
    min-width: 160px;
    gap: 0.5rem;
    text-decoration: none;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.btn::before,
.btn-primary,
.btn-secondary,
.btn-icon {
    background: none !important;
    box-shadow: none !important;
    animation: none !important;
    color: inherit !important;
}

.btn-icon {
    display: none;
}

.btn-discord {
    background: rgba(88, 101, 242, 0.18);
    color: #fff;
    border: 1.5px solid rgba(88, 101, 242, 0.35);
    box-shadow: 0 4px 24px rgba(88, 101, 242, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-discord:hover {
    background: rgba(88, 101, 242, 0.32);
    border: 1.5px solid rgba(88, 101, 242, 0.55);
}

.btn-boutique {
    background: rgba(255, 140, 0, 0.18);
    color: #fff;
    border: 1.5px solid rgba(255, 140, 0, 0.35);
    box-shadow: 0 4px 24px rgba(255, 140, 0, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-boutique:hover {
    background: rgba(255, 140, 0, 0.32);
    border: 1.5px solid rgba(255, 140, 0, 0.55);
}

.footer {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 0.8rem;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.1px;
    color: #ffffff80;
    user-select: none;
    z-index: 1000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 30px rgba(255, 107, 107, 0.5);
    }

    to {
        text-shadow: 0 0 50px rgba(255, 107, 107, 0.8), 0 0 70px rgba(255, 107, 107, 0.4);
    }
}

@media (max-width: 768px) {
    .content {
        max-width: 90vw;
        padding: 1.5rem;
        margin: 1rem;
    }

    .title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .logo {
        width: 90px;
        height: 90px;
    }

    .buttons {
        gap: 1rem;
    }

    .buttons-row {
        flex-direction: column;
        gap: 1rem;
        min-width: auto;
        width: 100%;
    }

    .btn-large {
        min-width: auto;
        width: 100%;
    }

    .btn {
        min-width: auto;
        width: 100%;
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .footer {
        font-size: 0.7rem;
        text-align: center;
        left: 50%;
        bottom: 2vh;
        width: 100%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
        margin: 0.5rem;
        border-radius: 15px;
    }

    .title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .logo {
        width: 80px;
        height: 80px;
        border-radius: 15px;
    }

    .buttons {
        gap: 0.8rem;
    }

    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }

    .logo-container {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 360px) {
    .title {
        font-size: 1.6rem;
    }

    .logo {
        width: 70px;
        height: 70px;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Orientation landscape sur mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .content {
        max-width: 80vw;
        padding: 1rem;
    }

    .title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .logo {
        width: 70px;
        height: 70px;
    }

    .buttons-row {
        flex-direction: row;
        gap: 0.8rem;
    }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}

/* Tablettes */
@media (min-width: 769px) and (max-width: 1024px) {
    .content {
        max-width: 85vw;
        padding: 2rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .buttons-row {
        min-width: 280px;
    }

    .btn {
        min-width: 140px;
    }
}

/* Écrans très larges */
@media (min-width: 1200px) {
    .content {
        max-width: 900px;
    }

    .title {
        font-size: 3.5rem;
    }

    .logo {
        width: 120px;
        height: 120px;
    }
}