* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
	min-height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;

    color: white;
    background: url("../img/background.jpeg") no-repeat center center;
    background-size: cover;
}

.overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.3), rgba(0,0,0,0.8));
    z-index: 1;
}

.container {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    gap: 25px;
}

/* 🖼 Logo Animation */
.logo {
    width: 256px;

    /* Animation */
    animation: float 4s ease-in-out infinite;

    /* Glow */
    filter: drop-shadow(0 0 20px rgba(56,189,248,0.6));
}

/* 🔥 FLOAT animation */
@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.03);
    }
    100% {
        transform: translateY(0px) scale(1);
    }
}

.badge i {
    color: #fff;
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

.badge {
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
	color: #fff;
}

/* Title */
h1 {
    margin-top: 20px;
    font-size: 3rem;

    background: linear-gradient(90deg, #fff, #777);
    -webkit-background-clip: text;
    color: transparent;
}

.info-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    max-width: 600px;
    text-align: left;
}

/* badge stays compact */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50%;

    background: rgba(56,189,248,0.2);
    border: 1px solid rgba(56,189,248,0.4);

    white-space: nowrap;
}

/* description */
.desc {
    color: #fff;
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

/* 🔘 Glassy Discord Button */
.btn-discord {
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;
    padding: 14px 26px;
    border-radius: 16px;

    text-decoration: none;
    font-weight: 600;
    color: white;

    background: linear-gradient(
        135deg,
        rgba(56,189,248,0.25),
        rgba(250,204,21,0.25)
    );

    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);

    box-shadow:
        0 0 25px rgba(56,189,248,0.3),
        0 0 25px rgba(250,204,21,0.2);

    transition: 0.3s;
}

.btn-discord:hover {
    transform: translateY(-3px) scale(1.05);
}

/* Icon fix */
.btn-discord i {
    font-size: 18px;
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 600px) {
    body {
        min-height: 100vh;
        height: auto;
        padding: 40px 18px;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        gap: 18px;
    }

    .logo {
        width: min(200px, 85vw);
    }

    .info-row {
        width: 100%;
        max-width: 360px;
        gap: 12px;
        align-items: flex-start;
        justify-content: center;
    }

    .badge {
        width: 38px;
        height: 38px;
        min-width: 38px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        margin-top: 2px;
    }

    .desc {
        font-size: 14px;
        line-height: 1.55;
        text-align: left;
    }

    .btn-discord {
        justify-content: center;
        margin-top: 22px;
        padding: 13px 22px;
    }
}