@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --bg: #050505;
    --card: rgba(255,255,255,0.04);
    --border: rgba(255,255,255,0.08);
    --text: #ffffff;
    --muted: #8f8f95;
    --accent: #7c3aed;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
}

body {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

/* BACKGROUND */

body::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top, rgba(124,58,237,0.20), transparent 40%),
        radial-gradient(circle at bottom, rgba(124,58,237,0.10), transparent 35%),
        #050505;

    z-index: 0;
}

body::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../img/background.png");
    background-size: 260px;

    opacity: 0.035;

    animation: moveBg 90s linear infinite;

    z-index: 0;
}

@keyframes moveBg {
    from {
        transform: translate(0px, 0px);
    }

    to {
        transform: translate(-400px, -400px);
    }
}

/* CARD */

.ORLP {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 760px;

    padding: 70px 60px;

    border: 1px solid var(--border);

    background: var(--card);

    backdrop-filter: blur(30px);

    border-radius: 40px;

    text-align: center;

    overflow: hidden;

    box-shadow:
        0 0 80px rgba(124,58,237,0.12),
        inset 0 0 0 1px rgba(255,255,255,0.03);
}

/* TOP GLOW */

.ORLP::before {
    content: "";

    position: absolute;

    top: -120px;
    left: 50%;

    transform: translateX(-50%);

    width: 400px;
    height: 400px;

    background: rgba(124,58,237,0.18);

    filter: blur(140px);

    z-index: -1;
}

/* LOGO */

.ORLP_Logo {
    width: 130px;

    margin-bottom: 30px;

    pointer-events: none;

    filter:
        drop-shadow(0 0 25px rgba(124,58,237,0.5));

    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* TITLES */

.ORLP h1 {
    font-size: 42px;
    font-weight: 900;

    letter-spacing: -2px;

    margin-bottom: 12px;

    background: linear-gradient(
        to bottom,
        #ffffff,
        #b4b4b4
    );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    color: var(--muted);

    font-size: 15px;

    line-height: 1.7;

    margin-bottom: 45px;
}

/* MAIN TEXT */

.main-text {
    font-size: 34px;

    font-weight: 800;

    line-height: 1.1;

    margin-bottom: 22px;
}

.main-text span {
    color: var(--accent);
}

/* DESCRIPTION */

.description {
    max-width: 550px;

    margin: 0 auto;

    color: #b3b3ba;

    font-size: 17px;

    line-height: 1.8;
}

/* DISCORD BUTTON */

.discord-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 38px;

    padding: 16px 34px;

    border-radius: 999px;

    background: linear-gradient(
        135deg,
        #7c3aed,
        #5b21b6
    );

    color: white;

    text-decoration: none;

    font-weight: 700;

    letter-spacing: 1px;

    box-shadow:
        0 10px 40px rgba(124,58,237,0.35);

    transition: 0.35s ease;
}

.discord-btn:hover {
    transform: translateY(-4px) scale(1.02);

    box-shadow:
        0 15px 60px rgba(124,58,237,0.45);
}

/* LINKS */

.links {
    margin-top: 45px;

    display: flex;

    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;

    color: rgba(255,255,255,0.15);
}

.links a {
    color: #8f8f95;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    transition: 0.25s ease;
}

.links a:hover {
    color: white;
}

/* DISCLAIMER */

.bottom-text {
    margin-top: 50px;

    color: rgba(255,255,255,0.25);

    font-size: 13px;

    line-height: 1.8;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .ORLP {
        padding: 55px 28px;
        border-radius: 28px;
    }

    .ORLP_Logo {
        width: 95px;
    }

    .ORLP h1 {
        font-size: 30px;
    }

    .main-text {
        font-size: 26px;
    }

    .description {
        font-size: 15px;
    }

    .discord-btn {
        width: 100%;
    }

    .links {
        gap: 10px;
    }
}