:root {
    --game-purple: #8b5cf6;
    --game-blue: #00d9ff;
    --game-pink: #ff3cac;
    --game-dark: #070812;
    --game-card: rgba(15, 17, 35, .88);
    --game-border: rgba(139, 92, 246, .35);
    --white: #ffffff;
    --muted: #9699ae;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: "Poppins", sans-serif;
    background:
        radial-gradient(circle at 15% 20%, rgba(139, 92, 246, .18), transparent 28%),
        radial-gradient(circle at 85% 75%, rgba(0, 217, 255, .12), transparent 28%),
        #070812;
    color: #fff;
    overflow-x: hidden;
}

/* ==============================
           BACKGROUND
        ============================== */

.gaming-register-page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.gaming-register-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 55px 55px;
    mask-image: linear-gradient(to bottom, #000, transparent);
    pointer-events: none;
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(5px);
    pointer-events: none;
}

.glow-one {
    width: 430px;
    height: 430px;
    top: -180px;
    left: -160px;
    background: rgba(139, 92, 246, .15);
}

.glow-two {
    width: 500px;
    height: 500px;
    right: -220px;
    bottom: -230px;
    background: rgba(0, 217, 255, .12);
}

/* ==============================
           NAVBAR
        ============================== */
a.gaming-logo img {
    max-width: 70px;
}

.gaming-navbar {
    position: relative;
    z-index: 10;
    padding: 25px 0;
}



.back-home {
    color: #aaaec1;
    text-decoration: none;
    font-size: 13px;
    transition: .3s;
}

.back-home:hover {
    color: #fff;
}

/* ==============================
           MAIN
        ============================== */

.gaming-register-main {
    min-height: calc(100vh - 95px);
    display: flex;
    align-items: center;
    padding: 30px 0 70px;
    position: relative;
    z-index: 2;
}

/* ==============================
           LEFT SIDE
        ============================== */

.register-intro {
    padding-right: 35px;
}

.intro-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 14px;
    border: 1px solid rgba(0, 217, 255, .2);
    background: rgba(0, 217, 255, .06);
    border-radius: 50px;
    color: var(--game-blue);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
}

.intro-tag .live-dot {
    width: 7px;
    height: 7px;
    background: var(--game-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--game-blue);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .35;
        transform: scale(.7);
    }
}

.register-title {
    font-family: "Orbitron", sans-serif;
    font-weight: 900;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.register-title span {
    background: linear-gradient(90deg,
            var(--game-purple),
            var(--game-blue),
            var(--game-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientMove 4s linear infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.register-description {
    color: #9295a9;
    max-width: 480px;
    font-size: 14px;
    line-height: 1.9;
    margin-bottom: 30px;
}



/* ==============================
           REGISTER CARD
        ============================== */

.register-wrapper {
    position: relative;
}

.register-card {
    position: relative;
    padding: 38px;
    border-radius: 24px;
    background: var(--game-card);
    border: 1px solid var(--game-border);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .45),
        0 0 50px rgba(139, 92, 246, .07);
    overflow: hidden;
}

.register-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent,
            var(--game-purple),
            var(--game-blue),
            transparent);
    box-shadow: 0 0 18px var(--game-purple);
}

.card-corner {
    position: absolute;
    width: 65px;
    height: 65px;
    border: 1px solid rgba(0, 217, 255, .15);
}

.corner-top {
    top: 0;
    right: 0;
    border-left: 0;
    border-bottom: 0;
    border-radius: 0 24px 0 0;
}

.corner-bottom {
    bottom: 0;
    left: 0;
    border-right: 0;
    border-top: 0;
    border-radius: 0 0 0 24px;
}

.register-head {
    margin-bottom: 28px;
}

.register-mini-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    margin-bottom: 17px;
    background: linear-gradient(135deg,
            rgba(139, 92, 246, .2),
            rgba(0, 217, 255, .12));
    border: 1px solid rgba(139, 92, 246, .3);
    color: var(--game-blue);
}

.register-head h2 {
    font-family: "Orbitron", sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 7px;
}

.register-head p {
    color: #7f8296;
    font-size: 12px;
    margin: 0;
}

/* ==============================
           FORM
        ============================== */

.gaming-form-group {
    margin-bottom: 17px;
}

.gaming-form-label {
    display: block;
    color: #b7bac9;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.gaming-input-wrap {
    position: relative;
}

.gaming-input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #64687d;
    font-size: 13px;
    z-index: 2;
    transition: .3s;
}

.gaming-input {
    width: 100%;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 11px;
    background: rgba(255, 255, 255, .035);
    color: #fff;
    padding: 0 45px;
    outline: none;
    font-size: 12px;
    transition: .3s;
}

.gaming-input::placeholder {
    color: #575a6c;
}

.gaming-input:focus {
    border-color: rgba(139, 92, 246, .75);
    background: rgba(139, 92, 246, .055);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .08);
}

.gaming-input:focus+.gaming-input-focus {
    transform: scaleX(1);
}

.gaming-input-wrap:focus-within .gaming-input-icon {
    color: var(--game-blue);
}

.gaming-input-focus {
    position: absolute;
    bottom: 0;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg,
            var(--game-purple),
            var(--game-blue));
    transform: scaleX(0);
    transition: .35s;
}

.password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: transparent;
    color: #64687d;
    cursor: pointer;
    transition: .3s;
    z-index: 5;
}

.password-toggle:hover {
    color: var(--game-blue);
}

/* ==============================
           TERMS
        ============================== */

.gaming-check {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 7px 0 20px;
}

.gaming-check input {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    accent-color: var(--game-purple);
    cursor: pointer;
}

.gaming-check label {
    color: #777b90;
    font-size: 13px;
    line-height: 1.6;
    cursor: pointer;
}

.gaming-check label a {
    color: var(--game-blue);
    text-decoration: none;
}

.forgot-pw a {
    text-decoration: none;
    color: #1bd5ff;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

/* ==============================
           BUTTON
        ============================== */

.gaming-register-btn {
    width: 100%;
    height: 51px;
    border: 0;
    border-radius: 11px;
    position: relative;
    overflow: hidden;
    color: #fff;
    font-family: "Orbitron", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(100deg,
            #7046df,
            #8b5cf6,
            #00aeca);
    box-shadow:
        0 10px 30px rgba(139, 92, 246, .22);
    transition: .35s;
}

.gaming-register-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, .25),
            transparent);
    transform: skewX(-20deg);
    transition: .7s;
}

.gaming-register-btn:hover::before {
    left: 140%;
}

.gaming-register-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 35px rgba(139, 92, 246, .35);
}

.gaming-register-btn i {
    margin-left: 7px;
}

/* ==============================
           LOGIN
        ============================== */

.login-text {
    text-align: center;
    color: #696d80;
    font-size: 11px;
    margin-top: 19px;
}

.login-text a {
    color: var(--game-blue);
    font-weight: 600;
    text-decoration: none;
}

/* ==============================
           FLOATING DECORATIONS
        ============================== */

.floating-shape {
    position: absolute;
    border: 1px solid rgba(139, 92, 246, .18);
    transform: rotate(45deg);
    animation: floatingShape 7s ease-in-out infinite;
}

.shape-one {
    width: 40px;
    height: 40px;
    left: 7%;
    top: 40%;
}

.shape-two {
    width: 25px;
    height: 25px;
    right: 6%;
    top: 23%;
    border-color: rgba(0, 217, 255, .2);
    animation-delay: 2s;
}

.shape-three {
    width: 18px;
    height: 18px;
    right: 28%;
    bottom: 9%;
    border-color: rgba(255, 60, 172, .2);
    animation-delay: 4s;
}

@keyframes floatingShape {

    0%,
    100% {
        transform: rotate(45deg) translateY(0);
    }

    50% {
        transform: rotate(135deg) translateY(-18px);
    }
}

/* ==============================
           RESPONSIVE
        ============================== */

@media(max-width: 991px) {

    .gaming-register-main {
        padding-top: 20px;
    }

    .register-intro {
        padding-right: 0;
        margin-bottom: 45px;
        text-align: center;
    }

    .register-description {
        margin-left: auto;
        margin-right: auto;
    }

    .gaming-features {
        justify-content: center;
    }

    .register-title {
        font-size: 46px;
    }

}

@media(max-width: 575px) {

    .gaming-navbar {
        padding: 18px 0;
    }


    .back-home {
        font-size: 11px;
    }

    .gaming-register-main {
        padding: 15px 0 40px;
    }

    .register-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .register-description {
        font-size: 12px;
        line-height: 1.8;
    }

    .register-card {
        padding: 25px 18px;
        border-radius: 18px;
    }

    .register-head h2 {
        font-size: 20px;
    }

    .gaming-feature {
        font-size: 9px;
        padding: 8px 10px;
    }

    .gaming-features {
        gap: 7px;
    }

}

.eye-icon {
    position: absolute;
    right: 18px;
    top: 16px;
}