:root {
    --bg-main: #111214;
    --bg-content: #191B1D;
    --bg-panel: #232527;
    --bg-header: #232527;
    --bg-sidebar: #232527;
    --bg-hover: #393B3D;
    --border-color: #393B3D;
    --text-primary: #FFFFFF;
    --text-secondary: #BDC3C7;
    --text-tertiary: #ADB5B7;
    --blue-accent: #0066FF;
    --blue-hover: #3385FF;
    --robux-gold: #FFD700;
    --sidebar-width: 180px;
    --header-height: 40px;
    --transition: all 0.2s ease;
    --card-bg: #1a1b1e;
    --surface-light: #202225;
    --primary-btn: #335fff;
    --primary-btn-hover: #4771ff;
    --btn-bg: #25272b;
    --btn-hover: #303238;
    --danger-text: #ff6b6b;
    --accent-color: #335fff;
    --border-radius-sm: 6px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --glow-primary: 0 10px 28px rgba(51, 95, 255, 0.28);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: #111214;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.5;
}

#initial-loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #111214;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    transition: opacity 0.5s ease;
}

.loading-content {
    text-align: center;
    max-width: 400px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255,255,255,0.1);
    border-top: 4px solid #3e61ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

#initial-loading-screen h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

#initial-loading-screen p {
    color: #a0a0a0;
    margin-bottom: 20px;
}

.btn-skip {
    background: rgba(255,255,255,0.1);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-skip:hover {
    background: rgba(255,255,255,0.2);
}

.main-header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    padding: 0 12px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    background: var(--bg-header);
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.roblox-logo {
    height: 24px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0;
}

.roblox-mark {
    width: 20px;
    height: 20px;
    display: inline-block;
    background: #fff;
    transform: rotate(45deg);
    position: relative;
}

.roblox-mark::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: var(--bg-header);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.roblox-word {
    line-height: 1;
}

.header-nav {
    display: flex;
    gap: 2px;
}

.nav-tab {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 0 12px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
}

.nav-tab:hover {
    background: rgba(255,255,255,0.05);
}

.nav-tab.active {
    border-bottom-color: white;
}

.header-mid {
    flex: 1;
    max-width: 400px;
    margin: 0 20px;
    position: relative;
}

.header-search {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    padding: 4px 12px 4px 32px;
    color: white;
    font-size: 13px;
}

.search-icon-header {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.header-profile-link { display: flex; align-items: center; gap: 8px; }
.header-user-avatar { width: 24px; height: 24px; border-radius: 50%; background: #232527; }
#header-user-name { font-size: 13px; font-weight: 500; }
.header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    opacity: 0.8;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.icon-btn:hover {
    opacity: 1;
}

.user-stat-group {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 600;
}

.left-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    background: #1a1b1e;
    padding: var(--header-height) 0 20px;
    z-index: 1800;
    overflow-y: auto;
    box-shadow: 1px 0 0 rgba(255,255,255,0.04);
}

.left-sidebar::-webkit-scrollbar { width: 0; }

.sidebar-user {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.sidebar-user-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #444;
    object-fit: cover;
    flex-shrink: 0;
}

.sidebar-user-name {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: #ccc;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 12px;
    text-decoration: none;
    color: #bbb;
    font-size: 12.5px;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.sidebar-item:hover {
    background: rgba(255,255,255,0.06);
    color: #fff;
}

.sidebar-item.active {
    color: #fff;
    font-weight: 600;
}

.sidebar-roblox-plus {
    color: #fff;
}

.sidebar-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.8;
}

.sidebar-badge {
    margin-left: auto;
    background: #555;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 10px;
}

.sidebar-plus-badge {
    margin-left: auto;
    color: #2ecc71;
    font-size: 11px;
    font-weight: 700;
}

.sidebar-footer-card { display: none; }

.content {
    margin-left: var(--sidebar-width);
    padding-top: calc(var(--header-height) + 40px);
    max-width: calc(100% - var(--sidebar-width));
    padding-right: 40px;
    padding-left: 40px;
}

.user-controls {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-admin {
    position: fixed;
    right: 18px;
    bottom: 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);
    width: 28px;
    height: 28px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-admin:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.balance-pill {
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 3px 3px 3px 18px;
    gap: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.robux-display {
    display: flex;
    align-items: center;
    gap: 10px;
}

#balance-value {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.btn-send-action {
    background: #1e1e22;
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-send-action:hover {
    background: #25252a;
    transform: translateY(-1px);
}

.btn-send-action svg {
    opacity: 0.7;
}

.current-user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.03);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.05);
}

.current-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.robux-balance {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 800;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.robux-icon-small {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.robux-icon {
    width: 24px;
    height: 24px;
    display: inline-block;
    vertical-align: middle;
}

.robux-icon-tiny {
    width: 14px;
    height: 14px;
}

.robux-icon-sm {
    width: 32px;
    height: 32px;
}

.robux-icon-xs {
    width: 16px;
    height: 16px;
}

.popular-tag {
    background: #2d2d2d;
    padding: 4px 8px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: #999;
    display: flex;
    align-items: center;
    gap: 4px;
}

.active-btn {
    background: var(--primary-btn) !important;
    color: white !important;
}

.selected-user-card {
    text-align: center;
    margin-bottom: 32px;
}

.selected-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.selected-user-card h3 {
    font-size: 20px;
    font-weight: 700;
}

.selected-user-card p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 16px;
}

.selected-amount-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 24px;
    border-radius: var(--border-radius-md);
    width: fit-content;
    margin: 0 auto;
}

.selected-amount-display span {
    font-size: 24px;
    font-weight: 800;
}

.amount-selection {
    margin-bottom: 32px;
}

.amount-selection h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.amount-btn {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
}

.amount-btn.active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-btn);
}

.modal-footer-text {
    text-align: center;
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 24px;
}

.btn-send,
.btn-request {
    background: var(--btn-bg);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 14px;
}

.btn-send:hover,
.btn-request:hover {
    background: var(--btn-hover);
    transform: translateY(-1px);
}

.content {
    padding-top: 120px;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 100px;
}

.hero-section {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.05;
    margin: 0;
    color: #fff;
}

.hero-actions-robux {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.donate-pill {
    height: 56px;
    background: #15161d;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 999px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.02), 0 18px 40px rgba(0,0,0,0.24);
}

.content-balance-display {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 25px;
    font-weight: 800;
    background: transparent;
    border: 0;
    padding: 0 0 0 14px;
    border-radius: 0;
    color: #fff;
    letter-spacing: 0;
    line-height: 1;
}

.content-balance-display img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.btn-hero-send {
    height: 36px;
    background: #2b2e3b;
    color: #fff;
    padding: 0 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-hero-send:hover {
    background: #343848;
}

.btn-hero-send svg {
    color: #fff;
    width: 14px;
    height: 14px;
}

.admin-toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 12px 20px;
    display: none; 
    align-items: center;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: slideInRight 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.toast-icon {
    width: 24px;
    height: 24px;
    background: #2ecc71;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.toast-text {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.close-toast {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    padding: 4px;
}

.close-toast:hover {
    color: #fff;
}

.section-label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.bonus-card {
    background: #1a1b1e;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.banner-image-container {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.banner-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.4), var(--card-bg));
}

.banner-content {
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.game-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    object-fit: cover;
}

.game-info .game-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-icon {
    width: 16px;
    height: 16px;
    background: var(--text-secondary);
    color: var(--card-bg);
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.game-bonus {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.package-list {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
}

.package-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.package-item:last-child {
    border-bottom: none;
}

.package-robux {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 120px;
}

.robux-icon {
    width: 24px;
    height: 24px;
}

.robux-amount {
    font-size: 18px;
    font-weight: 800;
}

.package-details {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.base-amount {
    color: var(--text-secondary);
    text-decoration: line-through;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.robux-icon-tiny {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.bonus-tag {
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
}

.btn-price {
    background: #232323;
    color: var(--text-primary);
    padding: 12px 32px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 14px;
    min-width: 120px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.btn-price:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.btn-price.active-btn {
    background: #3e61ff !important;
    border-color: #4d6dff;
    box-shadow: 0 4px 15px rgba(62, 97, 255, 0.3);
}

.packages-section {
    margin-top: 60px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
    letter-spacing: -0.5px;
}

.packages-card {
    background: #1a1b1e;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 4px 24px;
}

.pkg-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pkg-row:last-child {
    border-bottom: none;
}

.pkg-left {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 250px;
}

.pkg-icon {
    width: 28px;
    height: 28px;
}

.pkg-amount {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    margin-left: 4px;
}

.pkg-old {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.4;
    margin-left: 12px;
    position: relative;
}

.pkg-old::after {
    content: '';
    position: absolute;
    left: -2px;
    right: -2px;
    top: 50%;
    height: 2px;
    background: #a0a0a0;
    border-radius: 2px;
}

.pkg-icon-small {
    width: 18px;
    height: 18px;
}

.strike {
    font-size: 18px;
    font-weight: 700;
    color: #a0a0a0;
}

.pkg-mid {
    flex: 1;
    display: flex;
    align-items: center;
}

.pkg-bonus {
    background: rgba(255, 255, 255, 0.08);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #e0e0e0;
}

.pkg-right {
    display: flex;
    justify-content: flex-end;
}

.pkg-btn {
    background: #252528;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 14px 0;
    width: 160px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.pkg-btn:hover {
    background: #2d2d31;
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    width: 100%;
    max-width: 500px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(20px);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-title-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title-group h2 {
    font-size: 18px;
    font-weight: 700;
}

.modal-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.robux-balance-modal {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 14px;
}

.close-modal,
.close-toast {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
    transition: var(--transition);
}

.close-modal:hover,
.close-toast:hover {
    color: var(--text-primary);
    opacity: 0.8;
}

.modal-body {
    padding: 24px;
}

.search-container input {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
    margin-bottom: 24px;
}

.list-label {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}


.friends-list {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
}

.friends-list::-webkit-scrollbar {
    width: 4px;
}

.friends-list::-webkit-scrollbar-track {
    background: transparent;
}

.friends-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.friend-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.friend-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.friend-info {
    display: flex;
    flex-direction: column;
}

.friend-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-color);
}

.friend-name {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.friend-handle {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0.7;
}

.global-tag {
    margin-top: 4px;
    font-size: 9px;
    font-weight: 800;
    color: #3e61ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-section {
    margin-bottom: 24px;
}

.search-section.loading {
    opacity: 0.6;
}

.friends-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.no-results {
    padding: 40px 20px;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px dashed rgba(255,255,255,0.1);
}

.search-loader {
    width: 24px;
    height: 24px;
    border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid #3e61ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 10px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.admin-modal {
    max-width: 840px;
    max-height: 90vh;
    overflow-y: auto;
}

.admin-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.admin-summary-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.admin-metric {
    background: #111318;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 14px;
}

.admin-metric span {
    display: block;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.admin-metric strong {
    display: block;
    color: #fff;
    font-size: 24px;
    line-height: 1;
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.admin-group {
    background: #15171c;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    padding: 16px;
}

.admin-section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.admin-group h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 14px;
}

.input-group {
    margin-bottom: 12px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.input-group label {
    display: block;
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 8px;
}

.input-group input,
.search-add-row input {
    width: 100%;
    background: #0d0e12;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 14px;
}

.btn-save,
.btn-primary {
    background: var(--primary-btn);
    color: white;
    width: 100%;
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-weight: 700;
}

.btn-save:hover,
.btn-primary:hover {
    background: var(--primary-btn-hover);
}

.btn-secondary {
    background: var(--btn-bg);
    color: var(--text-primary);
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-size: 13px;
    flex: 1;
}

.btn-row {
    display: flex;
    gap: 12px;
    margin: 12px 0;
}

.helper-text {
    color: var(--text-secondary);
    font-size: 12px;
}

.search-add-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.search-add-row input {
    flex: 1;
}

.search-add-row button {
    width: auto;
    padding: 0 24px;
}

.saved-friends-list {
    margin-top: 16px;
    display: grid;
    gap: 8px;
}

.saved-friend-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--border-radius-sm);
}

.saved-friend-item span {
    font-size: 14px;
    font-weight: 600;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.saved-friend-item small {
    display: block;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 600;
    margin-top: 2px;
}

.btn-remove {
    background: rgba(255,107,107,0.1);
    color: var(--danger-text);
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    padding: 8px 10px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.compact-check {
    margin: 2px 0 14px;
}

@media (max-width: 760px) {
    .admin-summary-row,
    .admin-grid,
    .input-row {
        grid-template-columns: 1fr;
    }

    .saved-friend-item {
        grid-template-columns: 1fr;
    }
}

.checkbox-container input {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: #000;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
}

.checkbox-container input:checked+.checkmark {
    background: var(--primary-btn);
    border-color: var(--primary-btn);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked+.checkmark:after {
    display: block;
}

.admin-toast {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.toast-icon {
    width: 20px;
    height: 20px;
    background: #ffffff;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.toast-text {
    flex: 1;
    font-size: 14px;
    font-weight: 600;
}

.close-toast {
    background: none;
    color: var(--text-secondary);
    font-size: 18px;
}

.sidebar-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-tertiary);
    padding: 0 16px 8px;
    letter-spacing: 0.5px;
}

.sidebar-friend-item {
    padding: 8px 16px;
    font-size: 13px;
    opacity: 0.85;
}

.sidebar-friend-item:hover {
    opacity: 1;
}

.btn-admin-toggle {
    background: #1a1a1a;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
}

.btn-admin-toggle:hover {
    background: #252525;
    transform: scale(1.05);
}

.admin-group h4 {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    margin-top: 16px;
}

.package-item {
    transition: var(--transition);
}

.package-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

.admin-group {
    background: rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.logo-text {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
}

.roblox-plus-icon {
    width: auto;
    height: 24px;
    object-fit: contain;
    filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.1));
}

.logo-section .roblox-plus-icon {
    height: 28px;
}

.sent-toast {
    position: fixed;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.sent-toast.active {
    top: 24px;
    opacity: 1;
    pointer-events: all;
}

.sent-toast-content {
    background: #1b1c22;
    backdrop-filter: blur(18px);
    border: 1px solid #454750;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 226px;
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.55);

}

@keyframes toastBounce {
    from { transform: translate(-50%, -20px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

.sent-check {
    width: 24px;
    height: 24px;
    background: #2ecc71;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.4);
}

.sent-toast-copy {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.12;
}

.sent-toast-copy strong {
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

#sent-toast-text {
    color: #d7d9e2;
    font-size: 10px;
    font-weight: 800;
    flex: 1;
}

.close-sent-toast {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 16px;
}

.amount-selector {
    margin-bottom: 24px;
}

.amount-presets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.amount-btn {
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.amount-btn:hover {
    background: #252525;
}

.amount-btn.active {
    background: var(--primary-btn);
    border-color: var(--primary-btn);
}

#custom-amount-input {
    width: 100%;
    background: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

#custom-amount-input:focus {
    border-color: var(--primary-btn);
    outline: none;
}

.send-modal {
    width: min(360px, calc(100vw - 28px));
    max-width: 360px;
    overflow: hidden;
    border-radius: 20px;
    background: #191a20;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.send-modal .modal-header {
    padding: 16px 18px 8px;
    border-bottom: 0;
}

.send-modal .modal-title-group {
    gap: 8px;
}

.send-modal .roblox-plus-icon {
    width: 20px;
    height: 20px;
}

.send-modal .modal-title-group h2 {
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
}

.send-modal .modal-header-right {
    gap: 10px;
}

.send-modal .robux-balance-modal {
    gap: 4px;
    color: #e6e8f0;
    font-size: 12px;
}

#modal-step-1 {
    padding: 6px 15px 14px;
}

.send-modal .search-container input {
    height: 36px;
    margin-bottom: 18px;
    padding: 0 9px;
    border: 2px solid #3666ff;
    border-radius: 5px;
    background: #171820;
    color: #f4f5fa;
    font-size: 12px;
    font-weight: 700;
}

.send-modal .search-container input::placeholder {
    color: #bfc2cc;
}

.send-modal .list-label {
    margin-bottom: 8px;
    color: #d9dbe2;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
}

.send-modal .friends-list {
    max-height: 420px;
    padding-right: 0;
}

.send-modal .friend-item {
    min-height: 36px;
    gap: 9px;
    padding: 5px 6px;
    border-radius: 6px;
}

.send-modal .friend-item:hover {
    transform: none;
}

.send-modal .friend-avatar {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
}

.send-modal .friend-info {
    min-width: 0;
}

.send-modal .friend-name {
    overflow: hidden;
    color: #f2f3f7;
    font-size: 11px;
    line-height: 1.1;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#modal-step-2 {
    padding: 34px 30px 16px;
}

#modal-step-2 .selected-user-card {
    margin-bottom: 14px;
}

#modal-step-2 .avatar-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    margin-bottom: 10px;
}

#modal-step-2 .selected-avatar {
    width: 58px;
    height: 58px;
    margin: 0;
    border: 0;
    border-radius: 12px;
    object-fit: contain;
    background: transparent;
}

#modal-step-2 .selected-user-card h3 {
    margin: 0;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 900;
}

#modal-step-2 .amount-step-handle {
    display: none;
}

#modal-step-2 .amount-display-card {
    gap: 8px;
    margin: 8px auto 16px;
}

#modal-step-2 .amount-display-card img {
    width: 20px;
    height: 20px;
    opacity: 0.9;
}

#modal-step-2 .amount-display-card span {
    font-size: 19px;
    line-height: 1;
    font-weight: 900;
    color: #eef0f6;
}

#modal-step-2 .amount-selector {
    margin-bottom: 0;
}

#modal-step-2 .custom-amount-group {
    margin-bottom: 12px;
}

#modal-step-2 #custom-amount-input {
    height: 40px;
    padding: 0 14px;
    border: 1px solid #2d2e35;
    border-radius: 8px;
    background: #28282f;
    color: #fff;
    text-align: left;
    font-size: 14px;
    font-weight: 800;
}

#modal-step-2 #custom-amount-input::placeholder {
    color: #b9bdc8;
}

#modal-step-2 #custom-amount-input:focus {
    border-color: #4167ff;
    background: #2b2c34;
    box-shadow: 0 0 0 3px rgba(65, 103, 255, 0.18);
}

#modal-step-2 .amount-presets {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px;
    margin-bottom: 0;
}

#modal-step-2 .amount-btn {
    height: 41px;
    min-width: 0;
    padding: 0 9px;
    border: 1px solid #2d2e35;
    border-radius: 7px;
    background: #28282f;
    color: #f2f3f7;
    font-size: 16px;
    font-weight: 900;
    gap: 5px;
    white-space: nowrap;
    transform: none;
}

#modal-step-2 .amount-btn img {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    opacity: 0.9;
}

#modal-step-2 .amount-btn:hover,
#modal-step-2 .amount-btn.active {
    background: #30313a;
    border-color: #4167ff;
    transform: none;
}

#modal-step-2 .modal-actions-row {
    display: block;
    margin-top: 16px;
}

#modal-step-2 .btn-send-final {
    width: 100%;
    height: 39px;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 13px;
}

#modal-step-2 .btn-send-final:hover {
    transform: none;
}

#modal-step-2 #btn-back-to-step1 {
    display: none;
}

#modal-step-2 .modal-footer-text {
    margin-top: 8px;
    color: #989daa;
    font-size: 10px;
    line-height: 1.3;
    font-weight: 800;
}

#modal-step-2 .amount-selector.needs-amount #custom-amount-input {
    border-color: var(--danger-text);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.14);
    animation: amountNudge 0.18s ease 2;
}

@keyframes amountNudge {
    50% { transform: translateX(3px); }
}

@media (max-width: 400px) {
    #modal-step-2 {
        padding: 34px 24px 18px;
    }

    #modal-step-2 .amount-btn {
        padding: 0 6px;
        font-size: 14px;
        gap: 4px;
    }

    #modal-step-2 .amount-btn img {
        width: 16px;
        height: 16px;
    }
}

#modal-step-confirm {
    padding: 34px 30px 18px;
}

#modal-step-confirm .confirm-transfer-container {
    padding: 0;
}

.confirm-recipient-card {
    margin: 0 10px 18px;
    padding: 22px 12px 24px;
    border-radius: 8px;
    background: #28292f;
    text-align: center;
}

.confirm-recipient-card img {
    width: 58px;
    height: 58px;
    margin: 0 auto 8px;
    display: block;
    border: 0;
    border-radius: 12px;
    object-fit: contain;
    background: transparent;
}

.confirm-recipient-card h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    line-height: 1.1;
    font-weight: 900;
}

.confirm-recipient-card p {
    margin: 2px 0 10px;
    color: #b9bdc8;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 800;
}

.confirm-friend-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: #e3e5ec;
    font-size: 10px;
    line-height: 1.2;
    font-weight: 900;
}

.confirm-amount-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 8px 0 16px;
    color: #fff;
}

.confirm-amount-line img {
    width: 24px;
    height: 24px;
}

.confirm-amount-line span {
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

#modal-step-confirm .modal-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 0;
}

#modal-step-confirm .btn-send-final,
#modal-step-confirm .btn-edit {
    height: 35px;
    padding: 0 14px;
    border-radius: 7px;
    font-size: 12px;
}

#modal-step-confirm .btn-send-final:hover,
#modal-step-confirm .btn-edit:hover {
    transform: none;
}

#modal-step-confirm .btn-edit {
    background: #4a4b54;
    border-color: #4a4b54;
    color: #fff;
}

#modal-step-confirm .modal-footer-text {
    margin-top: 10px;
    color: #a6abb8;
    text-align: left;
    font-size: 10px;
    line-height: 1.35;
    font-weight: 800;
}

.confirm-transfer-container {
    text-align: center;
    padding: 10px 0;
}

.transfer-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
}

.transfer-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.transfer-node img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    background: #000;
}

.transfer-node span {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
}

.transfer-arrow {
    color: var(--primary-btn);
    animation: arrow-sway 1.5s ease-in-out infinite;
}

@keyframes arrow-sway {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.confirm-details h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
}

.confirm-details p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.warning-text {
    color: var(--danger-text) !important;
    font-weight: 700;
    font-size: 12px !important;
    margin-top: 12px;
}

.shimmer-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.progress-bar-container {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    margin-top: 32px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #3e61ff, #7b5fff);
    box-shadow: 0 0 15px rgba(62, 97, 255, 0.5);
    transition: width 3.2s linear;
}

.glow-button {
    box-shadow: 0 0 20px rgba(62, 97, 255, 0.3);
}

.glow-button:hover {
    box-shadow: 0 0 30px rgba(62, 97, 255, 0.5);
    transform: translateY(-2px);
}

.modal-actions-row {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.btn-send-final, .btn-edit {
    flex: 1;
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-send-final {
    background: var(--primary-btn);
    color: white;
}

.btn-send-final:hover {
    background: var(--primary-btn-hover);
    transform: translateY(-2px);
    box-shadow: var(--glow-primary);
}

.btn-edit {
    background: var(--btn-bg);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-edit:hover {
    background: var(--btn-hover);
    transform: translateY(-2px);
}

.processing-container {
    text-align: center;
    padding: 40px 0;
}

.processing-container h3 {
    margin-top: 24px;
    font-size: 24px;
    color: var(--text-primary);
}

.processing-container p {
    color: var(--text-secondary);
    margin-top: 8px;
    font-size: 14px;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 6px solid rgba(255, 255, 255, 0.05);
    border-top: 6px solid var(--primary-btn);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.amount-display-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 20px auto;
    width: fit-content;
}

.amount-display-card span {
    font-size: 28px;
    font-weight: 800;
}

.success-container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 0;
}

.success-check {
    margin-bottom: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-container h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.success-container p {
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 32px;
}
.receipt-details {
    background: var(--surface-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    text-align: left;
    width: 100%;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.receipt-row:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 1px dashed var(--border-color);
}

.receipt-row strong {
    color: var(--text-primary);
}

.status-success {
    color: #2ecc71;
    font-weight: 600;
}

.delivery-warning {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.5;
    background: rgba(243, 156, 18, 0.1);
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(243, 156, 18, 0.2);
    margin-bottom: 24px;
    text-align: left;
}



.ripple-btn {
    position: relative;
    overflow: hidden;
}
.ripple-btn .ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}
@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}


.avatar-glow-ring {
    position: relative;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #3e61ff, #7b5fff);
    animation: ringPulse 2s ease-in-out infinite;
}
.avatar-glow-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: #0a0a0a;
    display: block;
}
@keyframes ringPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(62, 97, 255, 0.4); }
    50% { box-shadow: 0 0 24px rgba(123, 95, 255, 0.7); }
}

.transfer-arrow-anim {
    display: flex;
    align-items: center;
    gap: 0;
    flex-direction: column;
    position: relative;
    width: 70px;
    height: 50px;
    justify-content: center;
}
.arrow-svg {
    display: block;
}
.arrow-dot {
    width: 7px;
    height: 7px;
    background: #3e61ff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    animation: dotTravel 1.4s linear infinite;
    opacity: 0;
}
.arrow-dot:nth-child(1) { animation-delay: 0s; }
.arrow-dot:nth-child(2) { animation-delay: 0.47s; }
.arrow-dot:nth-child(3) { animation-delay: 0.94s; }
@keyframes dotTravel {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: calc(100% - 7px); opacity: 0; }
}

.confirm-amount-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(62,97,255,0.15), rgba(123,95,255,0.1));
    border: 1px solid rgba(62,97,255,0.3);
    border-radius: 50px;
    padding: 10px 28px;
    margin: 20px auto 8px;
    width: fit-content;
    animation: badgePop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.confirm-amount-badge span:first-of-type {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}
.confirm-amount-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
}
@keyframes badgePop {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}


.shield-anim-wrap {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.shield-icon {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 10px rgba(62, 97, 255, 0.6));
    animation: shieldBob 2s ease-in-out infinite;
}
@keyframes shieldBob {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}
.shield-ring {
    position: absolute;
    border-radius: 50%;
    border: 1.5px solid rgba(62, 97, 255, 0.4);
    animation: ringExpand 2.1s ease-out infinite;
}
.ring-1 { width: 60px; height: 60px; animation-delay: 0s; }
.ring-2 { width: 85px; height: 85px; animation-delay: 0.7s; }
.ring-3 { width: 110px; height: 110px; animation-delay: 1.4s; }
@keyframes ringExpand {
    0% { transform: scale(0.7); opacity: 0.8; }
    100% { transform: scale(1.2); opacity: 0; }
}



.progress-bar-fill {
    position: relative;
}
.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 30px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5));
    animation: barShimmer 1s ease-in-out infinite;
    border-radius: 10px;
}
@keyframes barShimmer {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}


.success-check-anim {
    margin-bottom: 20px;
}
.success-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: drawCircle 0.6s ease-out forwards;
}
.success-tick {
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: drawTick 0.4s ease-out 0.5s forwards;
}
@keyframes drawCircle {
    to { stroke-dashoffset: 0; }
}
@keyframes drawTick {
    to { stroke-dashoffset: 0; }
}

.success-title-anim {
    animation: titleSlideUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s both;
}
@keyframes titleSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.receipt-anim {
    animation: receiptSlideUp 0.5s ease 1s both;
}
@keyframes receiptSlideUp {
    from { transform: translateY(15px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.mono-text {
    font-family: 'Courier New', monospace;
    font-size: 13px;
    color: #7b5fff;
    letter-spacing: 0.5px;
}

.modal-body {
    animation: stepSlideIn 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes stepSlideIn {
    from { transform: translateX(15px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.friend-item {
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.friend-item:hover {
    transform: translateX(4px) scale(1.01);
}

.amount-btn {
    transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.amount-btn.active {
    transform: scale(1.05);
}


.step-dots-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 20px auto 0;
    width: fit-content;
}
.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1.5px solid rgba(255,255,255,0.15);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    flex-shrink: 0;
}
.step-dot.active {
    background: #3e61ff;
    border-color: #3e61ff;
    box-shadow: 0 0 12px rgba(62,97,255,0.7);
    transform: scale(1.25);
}
.step-dot.done {
    background: #2ecc71;
    border-color: #2ecc71;
    box-shadow: 0 0 8px rgba(46,204,113,0.5);
    transform: scale(1);
}
.step-connector {
    width: 32px;
    height: 2px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
    transition: background 0.4s ease;
}
.step-connector.done {
    background: #2ecc71;
}

.processing-subtext {
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.processing-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(62, 97, 255, 0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    animation: bgRotate 10s linear infinite;
}
@keyframes bgRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.processing-container {
    position: relative;
    z-index: 1;
}

.friends-list {
    overflow-x: hidden !important;
}
.friend-item {
    transition: background 0.2s ease, border-color 0.2s ease !important;
    transform: none !important;
}
.friend-item:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.08) !important;
}


.processing-bg-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(62, 97, 255, 0.12) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.processing-bg-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 50px 160px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #fff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 160px 120px, #fff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.15;
    animation: starMove 20s linear infinite;
}

@keyframes starMove {
    from { transform: translateY(0); }
    to { transform: translateY(-200px); }
}

.processing-container {
    position: relative;
    z-index: 2;
}

.friends-list {
    overflow-x: hidden !important;
}
.friend-item {
    transition: background 0.2s ease, border-color 0.2s ease !important;
    transform: none !important;
    position: relative;
}
.friend-item:hover {
    transform: none !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.friend-item::after, .friend-item::before {
    display: none !important;
}


.last-sent-pill {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.2);
    border-radius: 50px;
    padding: 6px 14px;
    margin-right: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    animation: fadeInSlideRight 0.5s ease;
}
.last-sent-content {
    display: flex;
    align-items: center;
    gap: 8px;
}
.status-pulse {
    width: 6px;
    height: 6px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px #2ecc71;
    animation: pulseSmall 1.5s ease-in-out infinite;
}
@keyframes pulseSmall {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}
@keyframes fadeInSlideRight {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.scanning-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(62, 97, 255, 0.5), transparent);
    z-index: 1;
    box-shadow: 0 0 15px rgba(62, 97, 255, 0.4);
    animation: scanMove 4s linear infinite;
}
@keyframes scanMove {
    0% { top: 0; }
    100% { top: 100%; }
}

.processing-recipient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.15);
    opacity: 0.5;
    z-index: 0;
    transition: background-image 0.5s ease;
}

.server-info-tag {
    font-family: 'Courier New', monospace;
    font-size: 10px;
    color: var(--text-secondary);
    opacity: 0.6;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
    letter-spacing: 1px;
}
.server-info-tag .separator { opacity: 0.3; }

:root {
    --bg-main: #101115;
    --bg-header: #191a20;
    --bg-sidebar: #111217;
    --sidebar-width: 289px;
    --header-height: 35px;
    --text-primary: #f7f7f8;
    --text-secondary: #d7d8dc;
    --text-tertiary: #a6aab5;
}

body {
    background:
        radial-gradient(circle at 63% 8%, rgba(255,255,255,0.035), transparent 13%),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        #101115;
    background-size: auto, 28px 28px, 28px 28px, auto;
}

.main-header {
    height: 35px;
    padding: 0 13px;
    background: #191a20;
    border-bottom: 1px solid #2b2d36;
}

.header-container {
    gap: 16px;
}

#sidebar-toggle {
    display: none;
}

.header-left {
    gap: 64px;
    min-width: 780px;
}

.roblox-logo {
    width: 126px;
    margin: 0;
    gap: 0;
    font-size: 24px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -.7px;
    color: #fff;
}

.roblox-logo span:not(.logo-o) {
    display: inline-block;
}

.logo-o {
    width: 17px;
    height: 17px;
    margin: 0 4px;
    display: inline-block;
    background: #fff;
    transform: rotate(14deg) translateY(1px);
    position: relative;
}

.logo-o::after {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    background: #191a20;
    left: 6px;
    top: 6px;
}

.roblox-mark,
.roblox-word {
    display: none;
}

.header-nav {
    gap: 79px;
}

.nav-tab {
    height: 35px;
    padding: 0;
    border: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.nav-tab:hover {
    background: transparent;
}

.header-mid {
    max-width: 475px;
    margin: 0;
}

.header-search {
    height: 28px;
    border-color: #353842;
    background: #1d1e24;
    border-radius: 7px;
    color: #f8f8f8;
    font-size: 16px;
    font-weight: 600;
}

.search-icon-header {
    width: 18px;
    height: 18px;
    opacity: .75;
}

.header-right {
    margin-left: auto;
}

.header-icons {
    gap: 9px;
}

.icon-btn {
    opacity: 1;
}

.icon-btn svg,
.user-stat-group svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.2;
}

.header-profile-link {
    display: none;
}

.header-user-avatar {
    background: #2d303a;
}

.user-stat-group {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    gap: 4px;
}

.user-stat-group img[src$="robux_hollow.png"] {
    filter: brightness(0) invert(1);
    width: 23px;
    height: 23px;
}

#header-dollar-value {
    color: #fff !important;
    font-size: 16px;
    font-weight: 900;
}

.wallet-icon {
    width: 22px;
    height: 22px;
    color: #fff;
}

.left-sidebar {
    top: 35px;
    width: 289px;
    height: calc(100vh - 35px);
    padding: 17px 27px 20px;
    background: #111217;
    box-shadow: 1px 0 0 #272933;
}

.sidebar-user {
    padding: 0 0 21px;
    gap: 16px;
}

.sidebar-user-avatar {
    width: 25px;
    height: 25px;
    background: #2b2e38;
}

.sidebar-user-name {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.sidebar-item {
    min-height: 48px;
    padding: 0;
    gap: 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 900;
}

.sidebar-icon {
    width: 23px;
    height: 23px;
    opacity: 1;
    stroke-width: 2.1;
}

.sidebar-badge {
    background: #fff;
    color: #111217;
    padding: 3px 9px;
    font-size: 11px;
    border-radius: 99px;
}

.sidebar-plus-badge {
    display: none;
}

#sidebar-friends-section {
    display: none;
}

.content {
    margin-left: 289px;
    max-width: none;
    width: calc(100% - 289px);
    min-height: 100vh;
    padding: 128px 0 100px;
    background:
        radial-gradient(circle at 61% 2%, rgba(255,255,255,0.045), transparent 12%),
        linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
        #101115;
    background-size: auto, 28px 28px, 28px 28px, auto;
}

.hero-section,
.bonus-section,
.packages-section {
    width: 753px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section {
    margin-bottom: 57px;
}

.hero-content-wrapper {
    display: block;
    position: relative;
}

.hero-title {
    text-align: center;
    font-size: 57px;
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-actions-robux {
    position: absolute;
    top: 51px;
    right: 0;
    z-index: 3;
}

.donate-pill {
    height: 58px;
    min-width: 197px;
    background: #171922;
    border: 0;
    border-radius: 999px;
    padding: 7px 19px 7px 20px;
    gap: 15px;
    box-shadow: none;
}

.content-balance-display {
    gap: 8px;
    padding: 0;
    font-size: 30px;
    font-weight: 900;
}

.content-balance-display img {
    width: 24px;
    height: 24px;
}

.btn-hero-send {
    height: 34px;
    padding: 0 14px;
    background: #2e313d;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
}

.btn-hero-send svg {
    width: 13px;
    height: 13px;
}

.section-label {
    color: #fff;
    font-size: 29px;
    line-height: 1;
    font-weight: 900;
    margin-bottom: 14px;
}

.bonus-card {
    width: 753px;
    background: #18191f;
    border: 1px solid #30333d;
    border-radius: 7px;
    overflow: hidden;
}

.banner-image-container {
    height: 111px;
    background:
        radial-gradient(circle at 39% 25%, rgba(255,255,255,.04), transparent 24%),
        linear-gradient(90deg, #191a20, #111217);
}

.banner-bg {
    opacity: .1;
}

.banner-content {
    padding: 16px 20px;
    margin-top: -111px;
    height: 111px;
    align-items: flex-start;
}

.game-icon {
    width: 80px;
    height: 57px;
    border-radius: 0;
    border: 0;
    box-shadow: none;
    object-fit: contain;
}

.game-info .game-name {
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 900;
}

.game-bonus {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.package-list {
    padding: 15px 20px 0;
    background: #191a20;
}

.package-item {
    min-height: 60px;
    padding: 0;
    border: 0;
    display: grid;
    grid-template-columns: 154px minmax(250px, 1fr) 200px;
    gap: 16px;
    align-items: center;
}

.package-robux {
    width: auto;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-robux .robux-icon,
.pkg-icon,
.pkg-icon-small,
.base-amount img,
.robux-icon-tiny {
    filter: brightness(0) invert(1);
}

.package-amount {
    color: #fff;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
    white-space: nowrap;
}

.package-details {
    min-width: 0;
    display: grid;
    grid-template-columns: 100px 112px 1fr;
    align-items: center;
    gap: 10px;
}

.base-amount {
    color: #73798a;
    font-size: 22px;
    font-weight: 900;
    white-space: nowrap;
    min-width: 0;
}

.bonus-tag {
    background: #30333d;
    color: #fff;
    border-radius: 9px;
    padding: 4px 9px;
    font-size: 12px;
    font-weight: 900;
    width: max-content;
    white-space: nowrap;
}

.btn-price {
    min-width: 200px;
    height: 40px;
    background: #30333d;
    border: 0;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    padding: 0;
}

.packages-section {
    display: none;
}

.btn-admin {
    right: 12px;
    bottom: 12px;
    width: 34px;
    height: 34px;
    background: #2b2e38;
    color: #fff;
    border-color: #444854;
    font-size: 18px;
    z-index: 6000;
}

.header-icons .btn-admin {
    position: static;
    width: 24px;
    height: 24px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #fff;
    z-index: auto;
    font-size: inherit;
}

.header-icons .btn-admin:hover {
    background: transparent;
    color: #fff;
}

.sidebar-nav {
    min-height: calc(100vh - 112px);
    display: flex;
    flex-direction: column;
}

.sidebar-roblox-plus {
    position: relative;
}

.sidebar-roblox-plus .sidebar-icon {
    width: 32px;
    height: 32px;
}

.sidebar-plus-badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: auto;
    border-radius: 999px;
    background: #f4f4f5;
    color: transparent;
    font-size: 0;
    font-weight: 900;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
    flex: 0 0 18px;
}

.sidebar-plus-badge::before {
    content: "\2713";
    color: #121318;
    font-size: 12px;
    line-height: 1;
    transform: translateY(-0.5px);
}

.sidebar-footer-card {
    display: block;
    margin-top: auto;
    padding: 13px 14px;
    border: 1px solid #2f333d;
    border-radius: 8px;
    background: #171922;
    color: #fff;
}

.owned-plus-top,
.owned-plus-status {
    display: flex;
    align-items: center;
}

.owned-plus-top {
    gap: 11px;
}

.owned-plus-icon {
    width: 24px;
    height: 24px;
    flex: 0 0 24px;
}

.owned-plus-copy {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.owned-plus-copy strong {
    font-size: 14px;
    line-height: 1.15;
    font-weight: 900;
}

.owned-plus-copy span {
    color: #b7bbc6;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 800;
}

.owned-plus-status {
    margin-top: 12px;
    gap: 8px;
    color: #dfe3ec;
    font-size: 12px;
    font-weight: 800;
}

.owned-status-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #121318;
    font-size: 11px;
    font-weight: 900;
    flex: 0 0 16px;
}

html,
body {
    min-height: 100%;
    overflow-y: auto;
}

.packages-section {
    display: block;
    margin-top: 32px;
}

.section-title {
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.2px;
    margin: 0 0 15px;
}

.icon-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.packages-card {
    width: 753px;
    background: #121319;
    border: 1px solid #2a2d35;
    border-radius: 7px;
    padding: 8px 20px;
    overflow: hidden;
}

.pkg-row {
    min-height: 53px;
    padding: 0;
    border: 0;
    display: grid;
    grid-template-columns: 178px minmax(160px, 1fr) 200px;
    align-items: center;
    gap: 16px;
}

.pkg-left {
    width: auto;
    min-width: 0;
    gap: 9px;
}

.pkg-icon,
.pkg-icon-small {
    filter: brightness(0) invert(1);
}

.pkg-icon {
    width: 24px;
    height: 24px;
}

.pkg-amount {
    color: #fff;
    font-size: 25px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -0.6px;
    margin-left: 0;
}

.pkg-old {
    margin-left: 0;
    gap: 4px;
    opacity: 1;
}

.pkg-old::after {
    height: 2px;
    background: #6f7482;
}

.pkg-icon-small {
    width: 17px;
    height: 17px;
    opacity: .55;
}

.strike {
    color: #747a8a;
    font-size: 20px;
    line-height: 1;
    font-weight: 900;
}

.pkg-mid {
    min-width: 0;
}

.pkg-bonus {
    background: #30333d;
    color: #fff;
    border-radius: 9px;
    padding: 4px 9px;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    white-space: nowrap;
}

.pkg-right {
    justify-content: flex-end;
}

.pkg-btn {
    width: 200px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: #30333d;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    box-shadow: none;
}

.roblox-info-section {
    width: 753px;
    margin: 35px auto 0;
}

.plus-benefits-card {
    width: 753px;
    padding: 20px 20px 18px;
    border: 1px solid #2a2d35;
    border-radius: 7px;
    background: #121319;
}

.plus-benefits-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 16px;
}

.plus-benefits-icon {
    width: 22px;
    height: 22px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 43px;
    row-gap: 15px;
}

.benefit-item {
    min-height: 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 800;
}

.benefit-item svg,
.benefit-robux {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #fff;
}

.benefit-robux {
    filter: brightness(0) invert(1);
}

.plus-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.plus-card-actions button,
.faq-row,
.language-select {
    height: 34px;
    border: 0;
    border-radius: 7px;
    background: #2f323b;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.faq-section {
    margin-top: 35px;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-row {
    width: 100%;
    height: 46px;
    padding: 0 15px 0 14px;
    border: 1px solid #242831;
    background: #121319;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 13px;
}

.faq-row span,
.language-select span {
    color: #d9dce4;
    font-size: 19px;
    line-height: 1;
}

.roblox-footer {
    width: min(842px, calc(100vw - 80px));
    margin: 38px auto 0;
    color: #fff;
    padding-bottom: 6px;
}

.legal-copy {
    max-width: 753px;
    margin: 0 auto;
    color: #f2f3f7;
    font-size: 8px;
    line-height: 1.45;
    font-weight: 700;
}

.footer-links {
    margin-top: 53px;
    padding-bottom: 31px;
    border-bottom: 1px solid #30333b;
    display: flex;
    justify-content: center;
    gap: 23px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #f1f2f5;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.footer-bottom {
    min-height: 50px;
    display: grid;
    grid-template-columns: 207px 1fr;
    align-items: end;
    gap: 30px;
}

.language-select {
    width: 207px;
    padding: 0 12px;
    border: 1px solid #3d414c;
    background: #111217;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
}

.footer-bottom small {
    color: #f0f1f4;
    font-size: 7px;
    line-height: 1.4;
    font-weight: 700;
}

.chat-pill {
    position: fixed;
    right: 18px;
    bottom: 0;
    z-index: 5000;
    height: 28px;
    padding: 0 16px;
    border: 1px solid #2e333b;
    border-bottom: 0;
    border-radius: 7px 7px 0 0;
    background: #161820;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

body {
    background: #101115;
}

.content {
    position: relative;
    background: #101115;
    isolation: isolate;
}

.content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 252px;
    pointer-events: none;
    z-index: 0;
    opacity: .48;
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='312' viewBox='0 0 1440 312' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23fff' stroke-width='.72' stroke-linecap='round'%3E%3Cpath opacity='.09' d='M-30 8C102 36 206-22 351 15c161 41 235 92 394 55 162-37 254-101 417-55 118 33 194 60 308 24'/%3E%3Cpath opacity='.115' d='M-24 34C112 63 214 8 360 43c162 39 238 89 398 52 160-37 250-96 411-50 113 32 194 54 298 21'/%3E%3Cpath opacity='.13' d='M-18 61C122 88 226 39 371 70c160 35 241 80 396 45 162-36 248-86 407-42 107 29 187 48 288 18'/%3E%3Cpath opacity='.14' d='M-12 88C134 112 239 71 384 98c158 30 240 69 392 36 161-35 247-74 405-34 103 26 177 40 277 13'/%3E%3Cpath opacity='.13' d='M-8 116C141 136 253 103 397 126c156 25 238 56 386 26 159-31 247-59 403-24 96 22 170 31 268 8'/%3E%3Cpath opacity='.11' d='M-4 145C151 159 267 136 412 154c153 19 233 41 378 16 157-27 243-43 397-14 89 17 162 21 261 1'/%3E%3Cpath opacity='.085' d='M0 176C156 184 280 169 428 184c149 15 229 25 371 5 151-21 238-25 389-4 86 12 158 13 255-2'/%3E%3Cpath opacity='.06' d='M8 207C161 211 295 203 448 213c145 9 226 11 366-2 143-14 231-10 376 3 83 8 154 6 244-5'/%3E%3Cpath opacity='.045' d='M20 239C169 239 309 236 468 242c145 5 229 3 366-5 137-8 222 2 358 8 81 4 151 2 232-6'/%3E%3Cpath opacity='.055' d='M337-18C312 54 312 122 343 192c19 42 35 76 32 136'/%3E%3Cpath opacity='.08' d='M397-20C370 48 368 116 399 187c20 46 40 79 38 134'/%3E%3Cpath opacity='.105' d='M458-22C429 42 427 111 459 181c23 50 46 84 45 139'/%3E%3Cpath opacity='.13' d='M521-24C493 38 493 106 525 174c25 53 52 89 52 144'/%3E%3Cpath opacity='.14' d='M585-25C560 35 562 101 594 166c28 57 59 94 60 150'/%3E%3Cpath opacity='.125' d='M651-24C631 35 635 95 667 158c31 60 67 98 70 156'/%3E%3Cpath opacity='.1' d='M718-22C704 36 711 91 744 150c34 60 74 99 79 161'/%3E%3Cpath opacity='.075' d='M786-18C781 38 791 88 825 141c38 59 82 97 90 168'/%3E%3Cpath opacity='.055' d='M856-12C858 41 873 87 909 134c40 53 86 90 99 168'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: min(920px, 82vw) 226px;
    background-position: center top;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 72%, transparent 100%);
}

.hero-section,
.bonus-section,
.packages-section,
.roblox-info-section,
.roblox-footer {
    position: relative;
    z-index: 1;
}

.hero-section {
    position: relative;
}

.hero-actions-robux {
    position: absolute;
    top: -77px;
    right: -86px;
    z-index: 3;
}

.bonus-card .banner-image-container {
    height: 112px;
    position: relative;
    overflow: hidden;
    background: #111217;
}

.bonus-card .banner-bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 44%;
    opacity: .72;
    filter: saturate(.96) brightness(.78);
}

.bonus-card .banner-overlay {
    display: block;
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17,18,23,.94) 0%, rgba(17,18,23,.58) 34%, rgba(17,18,23,.16) 100%),
        linear-gradient(180deg, rgba(17,18,23,.12) 0%, rgba(25,26,32,.78) 100%);
}

.bonus-card .banner-content {
    height: 112px;
    margin-top: -112px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.bonus-card .game-icon {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.18);
    background: #242731;
    box-shadow: 0 12px 28px rgba(0,0,0,.32);
    object-fit: cover;
}

.bonus-card .game-info .game-name {
    margin: 0 0 6px;
    color: #fff;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 900;
}

.bonus-card .game-bonus {
    color: #fff;
    font-size: 16px;
    line-height: 1.15;
    font-weight: 800;
}

#modal-step-3 {
    background: #111217;
}

#modal-step-3 .processing-bg-glow,
#modal-step-3 .processing-recipient-bg,
#modal-step-3 .scanning-line,
#modal-step-3 .server-info-tag,
#modal-step-3 .shield-anim-wrap,
#modal-step-3 .step-dots-container {
    display: none !important;
}

.roblox-processing {
    min-height: 360px;
    padding: 56px 46px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.processing-spinner {
    width: 54px;
    height: 54px;
    border-radius: 999px;
    border: 5px solid #2b2e38;
    border-top-color: #fff;
    position: relative;
    animation: spin .85s linear infinite;
    transition: border-color .42s ease, background .42s ease, transform .55s cubic-bezier(.2, .9, .2, 1);
}

.processing-spinner.complete {
    animation: processingCompletePop .65s cubic-bezier(.18, .89, .32, 1.28) forwards;
    border-color: #fff;
    background: #fff;
}

.processing-check {
    position: absolute;
    inset: 9px;
    width: 28px;
    height: 28px;
    fill: none;
    stroke: #111217;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0;
    transform: scale(.72);
}

.processing-check path {
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
}

.processing-spinner.complete .processing-check {
    animation: processingCheckIn .24s ease .18s forwards;
}

.processing-spinner.complete .processing-check path {
    animation: processingDrawCheck .45s cubic-bezier(.22, 1, .36, 1) .24s forwards;
}

@keyframes processingCompletePop {
    0% { transform: scale(1); }
    52% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

@keyframes processingCheckIn {
    to { opacity: 1; transform: scale(1); }
}

@keyframes processingDrawCheck {
    to { stroke-dashoffset: 0; }
}

.roblox-processing h3 {
    margin: 26px 0 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0;
}

.roblox-processing .processing-subtext {
    min-height: 20px;
    margin: 10px 0 0;
    color: #b9bec9;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.processing-progress {
    width: min(360px, 100%);
    height: 10px;
    margin-top: 28px;
    overflow: hidden;
    border-radius: 999px;
    background: #2b2e38;
}

.processing-progress-fill {
    width: 0%;
    height: 100%;
    border-radius: inherit;
    background: #fff;
    transition: none;
}

.processing-percent {
    margin-top: 10px;
    color: #8e95a3;
    font-size: 12px;
    font-weight: 900;
}

.owned-status-check {
    color: transparent;
    font-size: 0;
}

.owned-status-check::before {
    content: "\2713";
    color: #121318;
    font-size: 11px;
    line-height: 1;
}

.owned-plus-copy span {
    color: #eef0f5;
}

.owned-plus-status {
    color: #c9ced8;
}

.plus-benefits-heading {
    justify-content: space-between;
}

.plus-benefits-heading > span {
    margin-right: auto;
}

.plus-active-badge {
    height: 22px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #121318;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
}

.plus-plan-active {
    border: 1px solid #424652 !important;
    background: #252832 !important;
    color: #fff !important;
}

.plus-plan-active span {
    width: 15px;
    height: 15px;
    margin-right: 7px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #121318;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    line-height: 1;
    font-weight: 900;
}

.faq-row span,
.language-select span {
    width: 18px;
    height: 18px;
    color: transparent;
    font-size: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.faq-row span::before,
.language-select span::before {
    content: "\2304";
    color: #d9dce4;
    font-size: 18px;
    line-height: 1;
}

@media (max-width: 1100px) {
    .header-left {
        min-width: 430px;
        gap: 28px;
    }

    .header-nav {
        gap: 22px;
    }

    .hero-actions-robux {
        right: 0;
    }
}

