/* ═══════════════════════════════════════════════════════════════
   ROBLOX STYLE — Speed Keyboard Escape
   Bold · Chunky · Colorful · Gaming UI · Pink BG + Green Buttons
   ═══════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;600;700;800;900&display=swap');

:root {
    /* Pink background */
    --bg: #ff99cc;
    --bg-light: #fff0f5;
    --card: #ffffff;

    /* Roblox colors */
    --roblox-red: #e2231a;
    --roblox-green: #00b06f;
    --roblox-green-light: #00d483;
    --roblox-blue: #0066ff;
    --roblox-yellow: #ffcc00;
    --roblox-purple: #9b59b6;
    --roblox-orange: #ff8c00;

    /* Text */
    --text: #ffffff;
    --text-light: #e8d5c0;
    --text-muted: #c4956a;

    /* Borders */
    --border: #ffcce0;
    --border-strong: #ff99c0;

    /* Shadows — Roblox chunky style */
    --shadow-roblox: 0 4px 0 #cc1a14;
    --shadow-roblox-sm: 0 3px 0 rgba(0,0,0,0.2);
    --shadow-card: 0 4px 16px rgba(200, 100, 150, 0.15);

    /* Fonts */
    --font-display: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html, body { height: 100%; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ═══════════════ BACKGROUND ═══════════════ */
.site-bg {
    position: fixed; inset: 0; z-index: 0; overflow: hidden;
}

.site-bg-image {
    position: absolute; inset: 0;
    background: #ff99cc;
}

.site-bg-gradient {
    display: none;
}

.site-bg-grid {
    display: none;
}

.site-bg-orbs {
    display: none;
}

/* ═══════════════ LAYOUT ═══════════════ */
.main-container {
    min-height: 100vh;
    padding: 50px 16px 80px;
    position: relative; z-index: 1;
}

.container { max-width: 880px; margin: 0 auto; }

/* ═══════════════ LANG SWITCHER ═══════════════ */
.lang-switcher {
    position: fixed; top: 16px; right: 16px; z-index: 99999;
    background: transparent; border: none; padding: 0;
}

.lang-button {
    background: var(--roblox-yellow);
    border: 3px solid #cc9900;
    border-radius: 12px;
    display: flex; align-items: center; gap: 6px;
    padding: 10px 16px;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #664400;
    box-shadow: 0 4px 0 #cc9900;
    transition: all 0.12s ease;
    white-space: nowrap;
}

.lang-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #cc9900;
}

.lang-button:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #cc9900;
}

.lang-icon { font-size: 16px; }

.lang-select {
    border: none; background: transparent; cursor: pointer; outline: none;
    appearance: none; -webkit-appearance: none;
    position: absolute; top: 0; left: 0;
    width: 100%; height: 100%; opacity: 0; z-index: 10;
}

/* ═══════════════ ANIMATED BACKGROUND ═══════════════ */
.animated-background {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
}

.bg-item-img {
    position: absolute; bottom: -100px;
    animation: floatUp var(--duration) linear infinite;
    animation-delay: var(--delay); opacity: 0.12;
}

.bg-item-img img {
    width: 70px; height: 70px; border-radius: 14px;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

@keyframes floatUp {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.12; }
    50% { opacity: 0.2; }
    100% { transform: translateY(-110vh) rotate(20deg); opacity: 0; }
}

/* ═══════════════ HERO ═══════════════ */
.page-hero { text-align: center; margin-bottom: 40px; }

.hero-logo {
    width: clamp(100px, 20vw, 160px);
    margin: 0 auto 20px;
    border-radius: 20px;
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(200, 80, 140, 0.3);
    animation: heroFloat 2.5s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(26px, 5.5vw, 44px);
    font-weight: 900;
    color: #fff;
    text-shadow:
        -1px -1px 0 #000,
         1px -1px 0 #000,
        -1px  1px 0 #000,
         1px  1px 0 #000,
         0 0 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--roblox-yellow);
    text-shadow: 3px 3px 0 rgba(200, 150, 0, 0.4);
}

.hero-sub {
    font-size: 16px;
    color: #fff;
    margin-top: 14px;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(200, 50, 100, 0.3);
}

.social-proof {
    margin-top: 22px;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px;
    background: var(--roblox-green);
    border: 3px solid #008055;
    border-radius: 50px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 4px 0 #008055;
}

.social-proof .dot {
    width: 12px; height: 12px; border-radius: 50%;
    background: #fff;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

/* ═══════════════ SHOP PANEL ═══════════════ */
.shop-panel {
    max-width: 700px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    background: var(--card);
    border: 4px solid #fff;
    box-shadow: 0 8px 32px rgba(200, 80, 140, 0.2);
}

/* ═══════════════ SHOP HEADER ═══════════════ */
.shop-header.store-banner {
    background: linear-gradient(180deg, var(--roblox-blue) 0%, #0055cc 100%);
    padding: 18px 22px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px;
    border-bottom: 4px solid #0044aa;
}

.store-banner-left { display: flex; align-items: center; gap: 10px; }

.store-title-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

.store-banner-tabs { display: flex; gap: 8px; }

.store-tab {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 10px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.12s ease;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.15);
}

.store-tab:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.15);
}

.store-tab.active {
    background: var(--roblox-yellow);
    color: #664400;
    border-color: #cc9900;
    box-shadow: 0 3px 0 #cc9900;
}

/* ═══════════════ SHOP ITEMS ═══════════════ */
.shop-items-list {
    display: flex; flex-direction: column; gap: 0; padding: 12px;
}

.shop-item {
    display: flex; align-items: center; justify-content: space-between;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    margin: 6px 0;
    background: #ffffff;
    border: 3px solid #0055cc;
    cursor: pointer;
    transition: all 0.12s ease;
    box-shadow: 0 3px 8px rgba(200, 100, 150, 0.1);
}

.shop-item:hover {
    background: #f0f0f0;
    border-color: var(--roblox-blue);
    box-shadow: 0 4px 16px rgba(0, 102, 255, 0.15);
    transform: translateY(-2px);
}

/* Image Box */
.shop-item-img-box {
    width: 110px; height: 110px; min-width: 110px;
    border-radius: 14px;
    background: #fff;
    border: 3px solid var(--roblox-blue);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; flex-shrink: 0;
    transition: all 0.15s ease;
}

.shop-item:hover .shop-item-img-box {
    border-color: var(--roblox-blue);
    box-shadow: 0 3px 12px rgba(0, 102, 255, 0.3);
}

.shop-item-img-box img {
    width: 90px; height: 90px;
    object-fit: contain; border-radius: 10px;
    transition: transform 0.2s ease;
}

.shop-item:hover .shop-item-img-box img { transform: scale(1.1); }

/* Item Info */
.shop-item-info {
    flex: 1; min-width: 0;
    display: flex; flex-direction: column; gap: 4px;
}

.shop-item-name {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: #000000;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.shop-item-stock {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
}

/* Price Badge — Roblox Robux style */
.shop-item-price {
    display: inline-flex; align-items: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--roblox-green);
    gap: 4px;
}

.robux-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: inline-block;
    background-image: url('../images/robux.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Claim Button — GREEN Roblox style */
.roblox-claim-btn {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 12px;
    border: 3px solid #008055;
    background: linear-gradient(180deg, var(--roblox-green-light) 0%, var(--roblox-green) 100%);
    color: #fff;
    cursor: pointer;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 0 #008055;
    transition: all 0.12s ease;
    flex-shrink: 0;
}

.roblox-claim-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #008055;
    background: linear-gradient(180deg, #00e690 0%, #00cc77 100%);
}

.roblox-claim-btn:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #008055;
}

/* Mobile */
@media (max-width: 480px) {
    .roblox-claim-btn { padding: 12px 24px; font-size: 15px; }
    .shop-item-img-box { width: 80px; height: 80px; min-width: 80px; }
    .shop-item-img-box img { width: 64px; height: 64px; }
    .shop-item-name { font-size: 14px; }
    .shop-item-rarity { font-size: 9px; padding: 5px 8px; }
}

/* ═══════════════ FOOTER ═══════════════ */
.site-footer {
    margin-top: 60px; padding: 30px 16px;
    border-top: 3px solid rgba(255, 255, 255, 0.5);
    text-align: center;
}

.footer-keywords {
    font-size: 12px; color: #c4956a;
    font-weight: 700; line-height: 2;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

/* ═══════════════════════════════════════════════════════════════
   GENERATOR MODAL — Roblox Style
   ═══════════════════════════════════════════════════════════════ */
.gen-modal {
    display: none; position: fixed; inset: 0;
    z-index: 99999; align-items: center; justify-content: center; padding: 16px;
}
.gen-modal.open { display: flex; }

.gen-backdrop {
    position: absolute; inset: 0;
    background: rgba(200, 80, 140, 0.4);
    backdrop-filter: blur(8px);
}

.gen-box {
    position: relative; z-index: 1;
    background: var(--card);
    border: 4px solid #fff;
    border-radius: 20px;
    color: #000000;
    width: 100%; max-width: 420px;
    box-shadow: 0 12px 48px rgba(200, 80, 140, 0.25);
    overflow: hidden;
    animation: modalPop 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ═══════════════ MODAL HEADER ═══════════════ */
.gen-header {
    background: linear-gradient(180deg, var(--roblox-blue) 0%, #0055cc 100%);
    padding: 16px 18px;
    display: flex; align-items: center; justify-content: space-between;
    border-bottom: 4px solid #0044aa;
}

.gen-close {
    background: #ff4444;
    border: 3px solid #cc0000;
    border-radius: 8px;
    width: 36px; height: 36px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 3px 0 #cc0000;
    transition: all 0.12s ease;
}

.gen-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 0 #cc0000;
}

.gen-close:active {
    transform: translateY(2px);
    box-shadow: 0 1px 0 #cc0000;
}

.gen-logo-row { display: flex; align-items: center; gap: 12px; }

.gen-logo-img {
    width: 40px; height: 40px;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    object-fit: contain;
}

.gen-label {
    font-family: var(--font-display);
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-shadow: none;
}

/* ═══════════════ MODAL SCREENS ═══════════════ */
.gen-screen {
    display: none; padding: 22px 18px;
    flex-direction: column; gap: 18px;
}
.gen-screen.active { display: flex; }

/* Screen 1 */
.gen-item-preview {
    display: flex; align-items: center; gap: 14px;
    background: var(--bg-light);
    border-radius: 14px;
    border: 3px solid var(--border);
    padding: 14px;
}

.gen-item-thumb {
    width: 70px; height: 70px;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    border: 3px solid var(--border);
    padding: 6px; flex-shrink: 0;
}

.gen-item-details { flex: 1; min-width: 0; }

.gen-item-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #000000;
}

.gen-item-badge {
    display: inline-block; margin-top: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    background: var(--roblox-green);
    border: 2px solid #008055;
    color: #fff;
    padding: 4px 12px;
    border-radius: 8px;
    box-shadow: 0 3px 0 #008055;
}

.gen-desc {
    font-size: 14px;
    color: #5c3317;
    text-align: center; font-weight: 700;
}

/* Username input */
.gen-input-wrap {
    display: flex; align-items: center; gap: 12px;
    border: 3px solid var(--border);
    border-radius: 12px;
    padding: 0 14px;
    background: #fff;
    transition: all 0.15s ease;
    box-shadow: inset 0 2px 6px rgba(200, 100, 150, 0.08);
}

.gen-input-wrap:focus-within {
    border-color: var(--roblox-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15);
}

.gen-input-icon { font-size: 18px; }

.gen-input {
    flex: 1; border: none; background: transparent;
    padding: 14px 0; font-size: 15px;
    font-family: var(--font-body);
    color: #000000; outline: none; font-weight: 700;
}

.gen-input::placeholder { color: var(--text-muted); }

.gen-error-msg {
    color: var(--roblox-red);
    font-size: 13px; font-weight: 700;
    min-height: 18px;
}

/* Claim button — GREEN */
.gen-btn-primary {
    width: 100%;
    background: linear-gradient(180deg, var(--roblox-green-light) 0%, var(--roblox-green) 100%);
    color: #fff;
    border: 3px solid #008055;
    border-radius: 12px;
    padding: 16px;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 0 #008055;
    transition: all 0.12s ease;
}

.gen-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 0 #008055;
    background: linear-gradient(180deg, #00e690 0%, #00cc77 100%);
}

.gen-btn-primary:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #008055;
}

.gen-security-row {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; color: var(--text-muted);
    font-size: 12px; font-weight: 700;
}

.gen-security-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--roblox-green);
    border: 2px solid #008055;
}

/* ═══════════════ SCREEN 2: PROGRESS ═══════════════ */
.gen-progress-header {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px; padding-bottom: 8px;
}

.avatar-scanner-container {
    width: 100px; height: 100px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 4px solid var(--border);
    position: relative; overflow: hidden;
    margin: 10px auto;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(200, 100, 150, 0.15);
    transition: all 0.3s ease;
}

.avatar-scanner-container.scanning {
    border-color: var(--roblox-blue);
    box-shadow: 0 4px 20px rgba(0, 102, 255, 0.25);
}

.scanner-avatar-img {
    width: 72px; height: 72px;
    object-fit: cover; border-radius: 50%;
    opacity: 0.4; transition: opacity 0.5s;
}

.avatar-scanner-container.scanning .scanner-avatar-img { opacity: 0.8; }

.scanner-laser {
    position: absolute; width: 100%; height: 4px;
    background: var(--roblox-blue);
    box-shadow: 0 0 12px var(--roblox-blue);
    top: 0; left: 0; opacity: 0;
}

.avatar-scanner-container.scanning .scanner-laser {
    opacity: 1;
    animation: laser-sweep 1.5s ease-in-out infinite;
}

@keyframes laser-sweep {
    0%, 100% { top: 0%; }
    50% { top: 100%; }
}

.gen-progress-label {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--roblox-blue);
    text-align: center;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

/* Steps */
.gen-steps { display: flex; flex-direction: column; gap: 8px; }

.gen-step {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--bg-light);
    border: 3px solid var(--border);
    transition: all 0.2s ease;
}

.gen-step.active {
    background: #e6f3ff;
    border-color: var(--roblox-blue);
    box-shadow: 0 3px 12px rgba(0, 102, 255, 0.1);
}

.gen-step.done {
    background: #e6faf0;
    border-color: var(--roblox-green);
}

.gen-step-icon {
    width: 32px; height: 32px;
    border-radius: 8px;
    background: #fff;
    border: 3px solid var(--border);
    color: var(--text-muted);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.gen-step.active .gen-step-icon {
    background: var(--roblox-blue);
    border-color: #0044aa;
    color: #fff;
    box-shadow: 0 3px 0 #0044aa;
}

.gen-step.done .gen-step-icon {
    background: var(--roblox-green);
    border-color: #008055;
    color: #fff;
    box-shadow: 0 3px 0 #008055;
}

.gen-step-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #000000;
}

.gen-step-sub {
    font-size: 12px;
    color: #555555;
    margin-top: 2px;
    font-weight: 700;
}

.gen-step.done .gen-step-sub { color: var(--roblox-green); }

/* Progress bar */
.gen-progress-bar-wrap {
    background: var(--bg-light);
    height: 12px; overflow: hidden;
    border-radius: 10px;
    border: 3px solid var(--border);
}

.gen-progress-bar {
    height: 100%; width: 0%;
    background: linear-gradient(90deg, var(--roblox-blue), var(--roblox-green));
    border-radius: 10px;
    transition: width 0.5s ease;
    box-shadow: 0 0 8px rgba(0, 102, 255, 0.3);
}

/* ═══════════════ SCREEN 3: CLAIM ═══════════════ */
.gen-transfer-panel {
    display: flex; align-items: center; justify-content: space-between;
    background: var(--bg-light);
    border-radius: 14px;
    border: 3px solid var(--border);
    padding: 18px;
    margin-bottom: 14px;
}

.transfer-node {
    display: flex; flex-direction: column;
    align-items: center; gap: 8px; flex: 1;
}

.transfer-avatar-wrap, .transfer-item-wrap { position: relative; }

.transfer-avatar-img, .transfer-item-img {
    width: 56px; height: 56px;
    border-radius: 12px;
    border: 3px solid var(--border);
    background: #fff;
    object-fit: contain;
}

.transfer-status-indicator {
    position: absolute; bottom: -4px; right: -4px;
    width: 16px; height: 16px;
    border-radius: 50%; border: 3px solid #fff;
}

.transfer-status-indicator.online {
    background: var(--roblox-green);
    box-shadow: 0 2px 0 #008055;
}

.transfer-status-indicator.pending {
    background: var(--roblox-yellow);
    box-shadow: 0 2px 0 #cc9900;
    animation: pulse 1.5s ease-in-out infinite;
}

.transfer-username, .transfer-item-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: #000000;
}

.transfer-badge {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 8px;
}

.online-badge {
    background: #e6faf0;
    border: 2px solid var(--roblox-green);
    color: var(--roblox-green);
    box-shadow: 0 2px 0 #008055;
}

.pending-badge {
    background: #fff8e0;
    border: 2px solid var(--roblox-yellow);
    color: #997700;
    box-shadow: 0 2px 0 #cc9900;
}

.transfer-path {
    flex: 0 0 50px; height: 3px;
    background: var(--border);
    border-radius: 10px;
    position: relative;
}

.transfer-pulse {
    position: absolute; top: -5px; left: 0;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--roblox-blue);
    border: 2px solid #fff;
    box-shadow: 0 2px 0 #0044aa;
    animation: transferPulse 1.5s ease-in-out infinite;
}

@keyframes transferPulse {
    0% { left: 0%; }
    50% { left: 85%; }
    100% { left: 0%; }
}

.gen-success-sub {
    text-align: center; font-size: 13px;
    color: var(--roblox-green); font-weight: 700; line-height: 1.6;
}

.gen-final-card {
    display: flex; align-items: center; gap: 14px;
    background: #e6faf0;
    border: 3px solid var(--roblox-green);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 3px 0 #008055;
}

.gen-final-thumb {
    width: 56px; height: 56px;
    object-fit: contain;
    border-radius: 10px;
    background: #fff;
    border: 3px solid var(--border);
    flex-shrink: 0;
}

.gen-final-info { flex: 1; }

.gen-final-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
}

.gen-final-tag {
    font-size: 12px; color: var(--roblox-green);
    margin-top: 2px; font-weight: 700;
}

/* ═══════════════ OFFERS ═══════════════ */
.offers-loading {
    text-align: center; color: var(--text-muted);
    font-size: 13px; font-weight: 700;
    display: none; margin: 15px 0;
}

.spinner {
    width: 28px; height: 28px;
    border: 3px solid var(--border);
    border-top-color: var(--roblox-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 10px;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

.offer-card {
    display: flex; align-items: center; justify-content: space-between;
    background: #fff;
    border: 3px solid var(--border);
    border-radius: 12px;
    padding: 12px 14px;
    text-decoration: none;
    transition: all 0.12s ease;
    margin-bottom: 8px;
    box-shadow: 0 3px 0 rgba(200, 100, 150, 0.1);
}

.offer-card:hover {
    border-color: var(--roblox-blue);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.12);
    transform: translateY(-2px);
}

.offer-info {
    display: flex; flex-direction: column;
    gap: 3px; text-align: left;
}

.offer-title {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
}

.offer-desc {
    font-size: 11px; color: var(--text-muted);
    font-weight: 700;
}

.offer-action {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border: 2px solid #008055;
    padding: 7px 14px;
    border-radius: 8px;
    background: var(--roblox-green);
    box-shadow: 0 3px 0 #008055;
    transition: all 0.12s ease;
}

.offer-card:hover .offer-action {
    background: var(--roblox-blue);
    border-color: #0044aa;
    box-shadow: 0 3px 0 #0044aa;
}

.cpa-modal-footer {
    margin-top: 14px; padding-top: 14px;
    border-top: 3px solid var(--border);
    display: flex; flex-direction: column;
    gap: 8px; align-items: center;
}

.secure-footer-line {
    display: flex; align-items: center; gap: 8px;
}

.status-dot {
    width: 10px; height: 10px;
    border-radius: 50%; background: var(--roblox-green);
    border: 2px solid #008055;
}

.status-dot.pulsing { animation: pulse 1.5s ease-in-out infinite; }

#cpaStatusText {
    font-size: 12px; color: var(--text-muted);
    font-weight: 700;
}

.gen-expire-note {
    font-size: 13px; color: var(--roblox-orange);
    font-weight: 700;
}

.success-message-box {
    text-align: center; padding: 16px;
    border-radius: 12px;
    border: 3px solid var(--roblox-green);
    background: #e6faf0;
    font-family: var(--font-display);
    font-size: 14px; color: var(--roblox-green);
    font-weight: 700; line-height: 1.7;
    box-shadow: 0 3px 0 #008055;
}

/* ═══════════════ iOS POPUP ═══════════════ */
.ios-popup {
    position: fixed; inset: 0; z-index: 999999;
    display: flex; align-items: center; justify-content: center;
}

.ios-popup-background {
    position: absolute; inset: 0;
    background: rgba(200, 80, 140, 0.5);
    backdrop-filter: blur(8px);
}

.ios-popup-content {
    position: relative; z-index: 1;
    background: var(--card);
    border: 4px solid #fff;
    border-radius: 20px;
    padding: 28px; max-width: 400px;
    text-align: center;
    box-shadow: 0 12px 48px rgba(200, 80, 140, 0.25);
}

.ios-gif-container { margin-bottom: 18px; }

.ios-instruction-gif {
    width: 100%; max-width: 320px;
    border-radius: 14px;
    border: 3px solid var(--border);
}

.ios-instruction-text h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
}

.ios-instruction-text p {
    font-size: 14px; color: var(--text-light);
    line-height: 1.7; font-weight: 700;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 600px) {
    .hero-title { font-size: 26px; }
    .shop-item { padding: 12px; gap: 10px; }
    .gen-box { max-width: 100%; border-radius: 16px; }
    .gen-transfer-panel { flex-direction: column; gap: 14px; }
    .transfer-path { flex: 0 0 2px; width: 3px; height: 36px; }
    .store-tab { font-size: 12px; padding: 8px 14px; }
    .store-title-text { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
}
