/* ===========================================================
   RobuxGen – style.css
   Vibrant, colorful, playful Roblox-themed UI
   Animated backgrounds, floating shapes, fun patterns
   Childlike & impressive design for young gamers
   =========================================================== */

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent
}

*:focus {
    outline: none
}

::selection {
    background: rgba(0, 176, 111, .3);
    color: #fff
}

button,
[role="button"] {
    -webkit-tap-highlight-color: transparent;
    outline: none;
    user-select: none;
    -webkit-user-select: none;
    cursor: pointer
}

:root {
    --bg: #eef4ff;
    --card: #ffffff;
    --card-alt: #f7f9fc;
    --border: #dde5f0;
    --border-lt: #c8d4e8;
    --green: #00b06f;
    --green-h: #009960;
    --green-bg: rgba(0, 176, 111, .10);
    --red: #e2231a;
    --red-bg: rgba(226, 35, 26, .10);
    --yellow: #f5a623;
    --yellow-bg: rgba(245, 166, 35, .10);
    --blue: #1a8cff;
    --blue-bg: rgba(26, 140, 255, .10);
    --purple: #8b5cf6;
    --purple-bg: rgba(139, 92, 246, .10);
    --pink: #ec4899;
    --txt: #2d3748;
    --txt2: #64748b;
    --txt3: #94a3b8;
    --white: #ffffff;
    --dark: #1a202c;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0, 0, 0, .08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, .12);
    --shadow-color: 0 4px 20px rgba(26, 140, 255, .15);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--txt);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-top: 60px;
    --font-display: 'Fredoka One', 'Nunito', cursive;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-world {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            #667eea 0%,
            #764ba2 25%,
            #f093fb 50%,
            #4facfe 75%,
            #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: .06;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%
    }

    25% {
        background-position: 100% 0%
    }

    50% {
        background-position: 100% 100%
    }

    75% {
        background-position: 0% 100%
    }
}

.bg-dots {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(26, 140, 255, .12) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    animation: dotsFloat 20s linear infinite;
}

@keyframes dotsFloat {
    0% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(28px, 28px)
    }
}

/* ===== FLOATING SHAPES ===== */
.floating-shapes {
    position: absolute;
    inset: 0;
}

.shape {
    position: absolute;
    border-radius: 6px;
    opacity: .35;
    animation: shapeFloat linear infinite;
}

/* Each shape: different color, size, position, speed, rotation */
.shape-1 {
    width: 30px;
    height: 30px;
    background: var(--red);
    top: 8%;
    left: 5%;
    animation-duration: 18s;
    animation-delay: 0s;
}

.shape-2 {
    width: 22px;
    height: 22px;
    background: var(--green);
    top: 15%;
    right: 8%;
    animation-duration: 22s;
    animation-delay: -3s;
    border-radius: 50%;
}

.shape-3 {
    width: 40px;
    height: 40px;
    background: var(--blue);
    top: 35%;
    left: 3%;
    animation-duration: 25s;
    animation-delay: -5s;
}

.shape-4 {
    width: 18px;
    height: 18px;
    background: var(--yellow);
    top: 50%;
    right: 6%;
    animation-duration: 20s;
    animation-delay: -8s;
    border-radius: 50%;
}

.shape-5 {
    width: 35px;
    height: 35px;
    background: var(--purple);
    top: 65%;
    left: 7%;
    animation-duration: 24s;
    animation-delay: -2s;
}

.shape-6 {
    width: 24px;
    height: 24px;
    background: var(--pink);
    top: 80%;
    right: 10%;
    animation-duration: 19s;
    animation-delay: -6s;
    border-radius: 50%;
}

.shape-7 {
    width: 28px;
    height: 28px;
    background: var(--green);
    top: 25%;
    left: 90%;
    animation-duration: 21s;
    animation-delay: -1s;
}

.shape-8 {
    width: 20px;
    height: 20px;
    background: var(--red);
    top: 45%;
    left: 92%;
    animation-duration: 17s;
    animation-delay: -4s;
    border-radius: 50%;
}

.shape-9 {
    width: 32px;
    height: 32px;
    background: var(--yellow);
    top: 70%;
    left: 2%;
    animation-duration: 23s;
    animation-delay: -7s;
}

.shape-10 {
    width: 16px;
    height: 16px;
    background: var(--blue);
    top: 90%;
    left: 15%;
    animation-duration: 16s;
    animation-delay: -9s;
    border-radius: 50%;
}

.shape-11 {
    width: 26px;
    height: 26px;
    background: var(--purple);
    top: 12%;
    left: 50%;
    animation-duration: 20s;
    animation-delay: -3s;
}

.shape-12 {
    width: 22px;
    height: 22px;
    background: var(--pink);
    top: 55%;
    left: 45%;
    animation-duration: 26s;
    animation-delay: -10s;
    border-radius: 50%;
}

@keyframes shapeFloat {
    0% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }

    25% {
        transform: translateY(-40px) rotate(90deg) scale(1.1);
    }

    50% {
        transform: translateY(-15px) rotate(180deg) scale(.95);
    }

    75% {
        transform: translateY(-55px) rotate(270deg) scale(1.05);
    }

    100% {
        transform: translateY(0px) rotate(360deg) scale(1);
    }
}

/* ===== NAV BAR ===== */
.roblox-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(26, 140, 255, .15);
    z-index: 100;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 20px rgba(26, 140, 255, .1);
}

.nav-inner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px
}

/* Roblox tilted square logo */
.roblox-tilt-logo {
    width: 34px;
    height: 34px;
    margin-right: 6px;
    position: relative;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

.tilt-outer {
    position: absolute;
    inset: 0;
    background: var(--red);
    border-radius: 6px;
    transform: rotate(15deg);
    box-shadow: 0 3px 12px rgba(226, 35, 26, .35);
}

.tilt-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 13px;
    background: #fff;
    border-radius: 3px;
    transform: translate(-50%, -50%) rotate(15deg);
}

.nav-brand-svg {
    height: 18px;
    width: auto;
    color: var(--dark);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 14px
}

.nav-stat {
    font-size: 12px;
    color: var(--txt2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-stat i {
    color: var(--green);
    font-size: 11px
}

.nav-robux {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--green) 0%, #00d68f 100%);
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 3px 12px rgba(0, 176, 111, .35);
    animation: robuxPulse 2s ease-in-out infinite;
}

@keyframes robuxPulse {

    0%,
    100% {
        box-shadow: 0 3px 12px rgba(0, 176, 111, .35)
    }

    50% {
        box-shadow: 0 3px 20px rgba(0, 176, 111, .55)
    }
}

.nav-robux i {
    font-size: 11px
}

/* ===== SCREENS ===== */
.screen {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 1;
}

.screen.active {
    opacity: 1;
    visibility: visible
}

.container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 24px 16px 40px;
    position: relative;
    z-index: 2;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    margin-bottom: 24px
}

.hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 14px;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFloat 4s ease-in-out infinite;
    position: relative;
}

.hero-rblx-logo {
    width: 64px;
    height: 64px;
    position: relative;
    filter: drop-shadow(0 6px 20px rgba(226, 35, 26, .45));
}

.hero-rblx-logo .tilt-outer {
    position: absolute;
    inset: 0;
    background: var(--red);
    border-radius: 10px;
    transform: rotate(15deg);
}

.hero-rblx-logo .tilt-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 5px;
    transform: translate(-50%, -50%) rotate(15deg);
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

.hero h1 {
    font-size: 26px;
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--dark);
    margin-bottom: 8px
}

.rainbow-text {
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue), var(--purple));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: rainbowSlide 4s linear infinite;
}

@keyframes rainbowSlide {
    0% {
        background-position: 0% center
    }

    100% {
        background-position: 200% center
    }
}

.hero p {
    font-size: 14px;
    color: var(--txt2);
    line-height: 1.5;
    margin-bottom: 14px
}

.hero-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    transition: transform .2s;
}

.tag:hover {
    transform: scale(1.05)
}

.tag-green {
    background: var(--green-bg);
    color: var(--green);
    border: 1.5px solid rgba(0, 176, 111, .25);
}

.tag-green i {
    color: var(--green)
}

.tag-yellow {
    background: var(--yellow-bg);
    color: #b67a00;
    border: 1.5px solid rgba(245, 166, 35, .25);
}

.tag-yellow i {
    color: var(--yellow)
}

.tag-blue {
    background: var(--blue-bg);
    color: var(--blue);
    border: 1.5px solid rgba(26, 140, 255, .25);
}

.tag-blue i {
    color: var(--blue)
}

/* ===== CARD ===== */
.rblx-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    transition: transform .3s ease, box-shadow .3s ease;
    position: relative;
}

/* Rainbow top bar accent */
.rblx-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue), var(--purple));
    z-index: 5;
}

.card-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: var(--card-alt);
    border-bottom: 1.5px solid var(--border);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--dark);
}

.card-bar i {
    color: var(--blue);
    font-size: 14px
}

.card-bar-success {
    background: linear-gradient(135deg, rgba(0, 176, 111, .08), rgba(0, 214, 143, .08));
}

.card-bar-success i {
    color: var(--green)
}

.card-bar-back {
    gap: 8px
}

.bar-user {
    margin-left: auto;
    font-size: 12px;
    color: var(--txt2);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.card-content {
    padding: 20px 18px
}

/* ===== BACK BUTTON ===== */
.btn-back {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--txt2);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s ease;
    flex-shrink: 0;
}

.btn-back:hover {
    background: var(--blue-bg);
    color: var(--blue);
    border-color: rgba(26, 140, 255, .3);
}

/* ===== FIELD / INPUT ===== */
.field-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--txt2);
    margin-bottom: 8px;
}

.rblx-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    height: 50px;
    background: var(--card-alt);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s ease;
}

.rblx-input:focus-within {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(26, 140, 255, .12);
    background: var(--white);
}

.rblx-input i {
    color: var(--txt3);
    font-size: 14px;
    flex-shrink: 0
}

.rblx-input input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    color: var(--dark);
    font-size: 1em;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}

.rblx-input input::placeholder {
    color: var(--txt3)
}

.input-hint {
    font-size: 11px;
    color: var(--txt3);
    margin-top: 6px;
    padding-left: 2px;
    transition: color .2s
}

.input-hint.error {
    color: var(--red)
}

.input-hint.success {
    color: var(--green)
}

/* ===== SERVICE CARDS ===== */
.svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px
}

.svc-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--card-alt);
    border: 2px solid var(--border);
    cursor: pointer;
    transition: all .25s ease;
    position: relative;
}

.svc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.svc-card.selected {
    border-color: var(--green);
    background: var(--green-bg);
    box-shadow: 0 4px 16px rgba(0, 176, 111, .15);
}

.svc-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.svc-robux {
    background: linear-gradient(135deg, #00b06f, #00d68f);
    color: #fff
}

.svc-premium {
    background: linear-gradient(135deg, #f5a623, #ffd700);
    color: #fff
}

.svc-items {
    background: linear-gradient(135deg, #1a8cff, #4facfe);
    color: #fff
}

.svc-passes {
    background: linear-gradient(135deg, #e2231a, #ff6b6b);
    color: #fff
}

.svc-txt {
    display: flex;
    flex-direction: column;
    min-width: 0
}

.svc-txt strong {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark)
}

.svc-txt small {
    font-size: 10px;
    color: var(--txt3)
}

.svc-chk {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    opacity: 0;
    transform: scale(0);
    transition: all .3s cubic-bezier(.18, .89, .32, 1.28);
    box-shadow: 0 2px 6px rgba(0, 176, 111, .35);
}

.svc-card.selected .svc-chk {
    opacity: 1;
    transform: scale(1)
}

/* ===== BUTTONS ===== */
.rblx-btn {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 400;
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all .25s ease;
    position: relative;
}

.rblx-btn.green {
    background: linear-gradient(135deg, var(--green) 0%, #00d68f 100%);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(0, 176, 111, .35);
    border-radius: 14px;
}

.rblx-btn.green:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 176, 111, .45);
}

.rblx-btn.green:active:not(:disabled) {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(0, 176, 111, .3);
}

.rblx-btn.green:disabled {
    opacity: .4;
    cursor: not-allowed;
    box-shadow: none;
}

.rblx-btn.outline {
    background: transparent;
    color: var(--txt);
    border: 2px solid var(--border);
    border-radius: 14px;
}

.rblx-btn.outline:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: var(--blue-bg);
}

.btn-verify {
    font-size: 16px;
    padding: 16px 24px;
    position: relative;
    overflow: hidden;
    animation: verifyBounce 2s ease-in-out infinite;
}

@keyframes verifyBounce {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-3px)
    }
}

.btn-verify::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .25), transparent);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% {
        left: -100%
    }

    50% {
        left: 100%
    }

    100% {
        left: 100%
    }
}

/* ===== TESTIMONIALS ===== */
.testi-section {
    margin-top: 4px
}

.testi-label {
    font-size: 12px;
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--txt3);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testi-label i {
    color: var(--yellow);
    font-size: 12px
}

.testi-list {
    display: flex;
    flex-direction: column;
    gap: 8px
}

.testi {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: transform .2s;
}

.testi:hover {
    transform: translateX(4px);
}

.testi-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--border);
    background: var(--card-alt);
    padding: 3px;
}

.testi-body {
    flex: 1;
    min-width: 0
}

.testi-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3px
}

.testi-name {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark)
}

.testi-stars {
    font-size: 11px;
    color: var(--yellow)
}

.testi-body p {
    font-size: 12px;
    color: var(--txt2);
    line-height: 1.4
}

/* ===== SLIDER GROUPS (quantity screen) ===== */
.slider-group {
    padding: 16px;
    margin-bottom: 12px;
    background: var(--card-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
}

.slider-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.slider-lbl {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark)
}

.slider-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.slider-val {
    font-size: 18px;
    font-weight: 800;
    color: var(--green);
    background: var(--green-bg);
    padding: 2px 10px;
    border-radius: 8px;
}

.slider-track {
    position: relative;
    height: 22px;
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.rblx-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    outline: none;
    position: relative;
    z-index: 2;
    cursor: pointer;
    margin: 0;
}

.rblx-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #00d68f);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 176, 111, .35);
    cursor: pointer;
    position: relative;
    z-index: 3;
    transition: transform .15s ease;
}

.rblx-range::-webkit-slider-thumb:hover {
    transform: scale(1.2)
}

.rblx-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #00d68f);
    border: 3px solid var(--white);
    box-shadow: 0 2px 8px rgba(0, 176, 111, .35);
    cursor: pointer;
}

.rblx-range::-moz-range-track {
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    border: none
}

.slider-fill {
    position: absolute;
    top: 50%;
    left: 0;
    height: 6px;
    transform: translateY(-50%);
    border-radius: 6px;
    z-index: 1;
    pointer-events: none;
    background:
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.18) 3px,
            transparent 3px,
            transparent 6px),
        linear-gradient(90deg, var(--green), #00d68f);
    background-size: 8.5px 8.5px, 100% 100%;
    transition: width 0.1s ease;
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--txt3);
    font-weight: 600
}

/* ===== SUMMARY ===== */
.summary-block {
    padding: 14px;
    margin-bottom: 16px;
    background: var(--card-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
}

.summary-head {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 12px;
    color: var(--txt3);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.summary-head i {
    color: var(--blue);
    font-size: 11px
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 6px;
    border: 1px solid var(--border);
}

.summary-row:last-child {
    margin-bottom: 0
}

.sum-label {
    font-size: 13px;
    color: var(--txt2);
    display: flex;
    align-items: center;
    gap: 6px
}

.sum-label i {
    width: 16px;
    text-align: center;
    color: var(--blue)
}

.sum-value {
    font-size: 14px;
    font-weight: 800;
    color: var(--dark)
}

/* ===== LOADING PROFILE ===== */
.ld-profile {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--blue-bg), var(--purple-bg));
    border: 1.5px solid rgba(26, 140, 255, .2);
    border-radius: var(--radius);
}

.ld-avatar {
    width: 72px;
    height: 72px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(26, 140, 255, .3);
    overflow: hidden;
}

.ld-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
}

.ld-avatar-fallback {
    font-size: 28px;
}

.ld-ring {
    position: absolute;
    inset: -5px;
    border: 2.5px solid transparent;
    border-top-color: var(--blue);
    border-right-color: var(--purple);
    border-radius: var(--radius-lg);
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.ld-info {
    display: flex;
    flex-direction: column
}

.ld-name {
    font-size: 16px;
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--dark)
}

.ld-badge {
    font-size: 12px;
    color: var(--green);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px
}

.ld-badge i {
    font-size: 11px
}

/* ===== PROGRESS ===== */
.progress-section {
    margin-bottom: 18px
}

.progress-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px
}

.progress-row span:first-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--txt2)
}

.progress-row span:last-child {
    font-size: 14px;
    font-weight: 800;
    color: var(--blue)
}

.rblx-progress {
    width: 100%;
    height: 14px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 6px;
    overflow: hidden;
}

.rblx-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 6px;
    transition: width .4s ease;
    background:
        repeating-linear-gradient(-45deg,
            rgba(255, 255, 255, .15),
            rgba(255, 255, 255, .15) 6px,
            transparent 6px,
            transparent 12px),
        linear-gradient(90deg, var(--green), var(--blue), var(--purple), var(--green));
    background-size: 17px 17px, 300% 100%;
    animation: progressStripe .6s linear infinite, progressShift 3s linear infinite;
    box-shadow: 0 0 12px rgba(0, 176, 111, .4), 0 0 4px rgba(0, 176, 111, .2);
}

@keyframes progressStripe {
    0% {
        background-position: 0 0, 0% 0%
    }

    100% {
        background-position: 17px 0, 0% 0%
    }
}

@keyframes progressShift {
    0% {
        background-position: 0 0, 0% 0%
    }

    100% {
        background-position: 0 0, 300% 0%
    }
}

.rblx-progress-fill {
    animation: progressCombined 3s linear infinite;
}

@keyframes progressCombined {
    0% {
        background-position: 0 0, 0% 0%
    }

    100% {
        background-position: 85px 0, 300% 0%
    }
}

/* ===== STEPS ===== */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius);
    background: var(--card-alt);
    border: 1.5px solid transparent;
    transition: all .3s ease;
    opacity: .4;
}

.step.active {
    opacity: 1;
    border-color: var(--blue);
    background: var(--blue-bg);
    box-shadow: 0 2px 12px rgba(26, 140, 255, .12);
}

.step.completed {
    opacity: .7;
    border-color: var(--border)
}

.step-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--txt3);
    flex-shrink: 0;
    position: relative;
    transition: all .2s;
}

.step.active .step-dot {
    background: var(--blue-bg);
    color: var(--blue);
    border-color: var(--blue);
}

.step.completed .step-dot {
    background: var(--green-bg);
    color: var(--green);
    border-color: var(--green);
}

/* spinner ring on active step */
.step.active .step-dot::after {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2.5px solid transparent;
    border-top-color: var(--blue);
    border-right-color: var(--purple);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

.step-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0
}

.step-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark)
}

.step-status {
    font-size: 11px;
    color: var(--txt3);
    margin-top: 1px
}

.step.active .step-status {
    color: var(--blue)
}

.step.completed .step-status {
    color: var(--green)
}

.step-ok {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #00d68f);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    opacity: 0;
    transform: scale(0);
    transition: all .3s cubic-bezier(.18, .89, .32, 1.28);
    box-shadow: 0 2px 6px rgba(0, 176, 111, .3);
}

.step.completed .step-ok {
    opacity: 1;
    transform: scale(1)
}

/* ===== TERMINAL ===== */
.terminal {
    border-radius: var(--radius);
    overflow: hidden;
    background: #0f1117;
    border: 1.5px solid #2d2f3a;
    margin-bottom: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}

.term-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #1a1c24;
    border-bottom: 1px solid #2d2f3a;
}

.term-dots {
    display: flex;
    gap: 5px
}

.term-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.term-dots span:nth-child(1) {
    background: #ff5f57
}

.term-dots span:nth-child(2) {
    background: #ffbd2e
}

.term-dots span:nth-child(3) {
    background: #28ca41
}

.term-title {
    font-size: 11px;
    color: #666;
    font-family: 'Courier New', monospace
}

.term-body {
    padding: 10px 12px;
    max-height: 130px;
    overflow-y: auto;
    font-family: 'Courier New', monospace;
    font-size: 11px;
    line-height: 1.8;
}

.term-body::-webkit-scrollbar {
    width: 4px
}

.term-body::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px
}

.log-line {
    display: flex;
    gap: 8px;
    animation: logIn .25s ease
}

@keyframes logIn {
    from {
        opacity: 0;
        transform: translateX(-8px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

.log-ts {
    color: #555;
    flex-shrink: 0
}

.log-info {
    color: #4facfe
}

.log-success {
    color: #4ade80
}

.log-warning {
    color: #ffd700
}

.log-error {
    color: #ff6b6b
}

/* ===== COUNTERS ===== */
.counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px
}

.cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    background: var(--card-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: transform .3s;
}

.cnt:nth-child(1) i {
    color: var(--green)
}

.cnt:nth-child(2) i {
    color: var(--yellow)
}

.cnt:nth-child(3) i {
    color: var(--blue)
}

.cnt i {
    font-size: 18px;
}

.cnt-val {
    font-size: 22px;
    font-weight: 400;
    font-family: var(--font-display);
    color: var(--dark)
}

.cnt-lbl {
    font-size: 10px;
    color: var(--txt3);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
}

/* ===== RESULT ===== */
.result-content {
    text-align: center
}

.result-desc {
    font-size: 13px;
    color: var(--txt2);
    margin-bottom: 20px;
    line-height: 1.5
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 22px
}

.result-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 18px 8px;
    background: var(--card-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: transform .3s;
    animation: resultPop .5s cubic-bezier(.18, .89, .32, 1.28) both;
}

.result-box:nth-child(1) {
    animation-delay: .1s
}

.result-box:nth-child(2) {
    animation-delay: .2s
}

.result-box:nth-child(3) {
    animation-delay: .3s
}

@keyframes resultPop {
    from {
        opacity: 0;
        transform: scale(.8)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

.result-box:nth-child(1) i {
    color: var(--green)
}

.result-box:nth-child(2) i {
    color: var(--yellow)
}

.result-box:nth-child(3) i {
    color: var(--blue)
}

.result-box i {
    font-size: 22px;
}

.result-box:nth-child(1) .result-val {
    color: var(--green)
}

.result-box:nth-child(2) .result-val {
    color: var(--yellow)
}

.result-box:nth-child(3) .result-val {
    color: var(--blue)
}

.result-val {
    font-size: 24px;
    font-weight: 400;
    font-family: var(--font-display);
}

.result-lbl {
    font-size: 10px;
    color: var(--txt3);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 700;
}

.verify-note {
    font-size: 12px;
    color: var(--txt3);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.verify-note i {
    color: var(--green);
    font-size: 11px
}

/* ===== OFFERS ===== */
.offers-desc {
    font-size: 13px;
    color: var(--txt2);
    margin-bottom: 16px
}

.offers-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    gap: 14px;
}

.rblx-spinner {
    width: 38px;
    height: 38px;
    border: 3px solid var(--border);
    border-top-color: var(--blue);
    border-right-color: var(--purple);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

.offers-loading p {
    font-size: 13px;
    color: var(--txt3)
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 2px
}

.offers-list::-webkit-scrollbar {
    width: 4px
}

.offers-list::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    text-decoration: none;
    background: var(--card-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: all .25s ease;
    cursor: pointer;
}

.offer-item:hover {
    border-color: var(--blue);
    background: var(--blue-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 140, 255, .12);
}

.offer-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--white);
    border: 1px solid var(--border);
}

.offer-info {
    flex: 1;
    min-width: 0
}

.offer-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.offer-desc {
    font-size: 11px;
    color: var(--txt3);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.offer-go {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    transition: all .2s;
    box-shadow: 0 2px 8px rgba(26, 140, 255, .3);
}

.offer-item:hover .offer-go {
    transform: scale(1.1) rotate(5deg);
}

.offers-error {
    text-align: center;
    padding: 30px 0
}

.offers-error i {
    font-size: 30px;
    color: var(--red);
    margin-bottom: 10px
}

.offers-error p {
    font-size: 13px;
    color: var(--txt2);
    margin-bottom: 14px
}

.offers-foot {
    margin-top: 14px;
    font-size: 11px;
    color: var(--txt3);
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
}

.offers-foot i {
    font-size: 10px;
    color: var(--blue)
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ===== RESPONSIVE ===== */
@media(max-width:480px) {
    .container {
        padding: 16px 12px 32px
    }

    .hero h1 {
        font-size: 22px
    }

    .hero-icon {
        width: 60px;
        height: 60px;
    }

    .hero-rblx-logo {
        width: 50px;
        height: 50px;
    }

    .card-content {
        padding: 16px 14px
    }

    .svc-grid {
        gap: 8px
    }

    .cnt-val {
        font-size: 18px
    }

    .result-val {
        font-size: 20px
    }

    .nav-stat {
        display: none
    }

    .shape {
        opacity: .2;
    }
}

/* ===== SCROLLBAR GLOBAL ===== */
.screen::-webkit-scrollbar {
    width: 6px
}

.screen::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px
}

.screen::-webkit-scrollbar-thumb:hover {
    background: var(--border-lt)
}

/* ===== POPUP NOTIFICATION ===== */
.rblx-popup {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-120px);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    min-width: 280px;
    max-width: 90vw;
    border-radius: var(--radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .18);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform .4s cubic-bezier(.34, 1.56, .64, 1), opacity .4s ease;
    opacity: 0;
    font-family: 'Nunito', sans-serif;
}

.rblx-popup.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.rblx-popup-error {
    background: linear-gradient(135deg, rgba(226, 35, 26, .92), rgba(180, 20, 14, .95));
    border: 1.5px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.rblx-popup-success {
    background: linear-gradient(135deg, rgba(0, 176, 111, .92), rgba(0, 150, 90, .95));
    border: 1.5px solid rgba(255, 255, 255, .15);
    color: #fff;
}

.rblx-popup-icon {
    font-size: 22px;
    flex-shrink: 0;
    animation: popupIconPulse .5s ease;
}

.rblx-popup-text {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    flex: 1;
}

.rblx-popup-close {
    background: rgba(255, 255, 255, .15);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .2s;
}

.rblx-popup-close:hover {
    background: rgba(255, 255, 255, .3);
}

@keyframes popupIconPulse {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}