:root{
  --bg:#0b0f14;--surface:#121822;--surface2:#0f1520;--text:#e5e7eb;--muted:#94a3b8;--primary:#86efac;--ring:rgba(255,255,255,.08);
  /* palette inspired by screenshot */
  --gold:#f6cf4d; --gold-deep:#b9870a; --green:#24d466; --pink:#e118c9; --cyan:#19d6e1; --badge:#0a0f16;
}
*{box-sizing:border-box}html{color-scheme:dark}body{margin:0;color:var(--text);font:16px/1.5 system-ui,Segoe UI,Roboto,Helvetica,Arial,sans-serif}
.container{max-width:1120px;margin:0 auto;padding:16px}
.row{display:flex;align-items:center}.between{justify-content:space-between}.wrap{flex-wrap:wrap}.gap{gap:12px}
.site-header{position:sticky;top:0;z-index:50;background:color-mix(in oklab,var(--surface) 88%, transparent);backdrop-filter:saturate(120%) blur(8px);border-bottom:1px solid var(--ring)}
.brand{font-weight:600;color:var(--primary);text-decoration:none}
.nav a{color:var(--muted);text-decoration:none;margin-left:14px}.nav a:hover{color:#fff}
 .panel{border:3px solid #303030;border-radius:12px;padding:18px;margin:16px 0}
 .btn{border:1px solid rgba(255,255,255,.12);background:transparent;color:var(--text);padding:10px 14px;border-radius:10px;text-decoration:none;cursor:pointer;font-weight:700}
 .btn:hover{background:rgba(255,255,255,.04)}
 .btn.green{background:linear-gradient(180deg,#00ff11 0%, #00cc10 100%);color:#0b0f14;border-color:#00990c}
 .btn.gold{background:linear-gradient(180deg,#feb500 0%, #d89a00 100%);color:#0b0f14;border-color:#b9870a}
 .btn.pink{background:linear-gradient(180deg,#ee00ff 0%, #bf00cc 100%);color:#0b0f14;border-color:#8a0099}
 .btn.green:hover,.btn.gold:hover,.btn.pink:hover{filter:brightness(.95)}
.input{background:#0a0f16;border:1px solid var(--ring);color:var(--text);padding:8px 10px;border-radius:8px}
.grid{display:grid;gap:12px;margin-top:12px;grid-template-columns:repeat(2,1fr);justify-items:center}
@media(min-width:420px){.grid{grid-template-columns:repeat(2,1fr)}}
@media(min-width:768px){.grid{grid-template-columns:repeat(3,1fr)}}
@media(min-width:1024px){.grid{grid-template-columns:repeat(5,1fr)}}
.card{background:linear-gradient(180deg,var(--gold) 0%, #f0b52a 60%, #e6a81a 100%);border:2px solid var(--gold-deep);border-radius:14px;padding:12px;box-shadow:0 6px 0 0 #7a5a07 inset}
.card h3{margin:0 0 4px 0;color:#1a1a1a;text-shadow:0 1px 0 rgba(255,255,255,.5)}
.card .row{align-items:center}
.card .sub{color:#0b3d9a;font-weight:700}
.pill{display:inline-flex;align-items:center;gap:6px;border-radius:10px;padding:8px 12px;font-weight:800;color:#0d0f12;box-shadow:inset 0 -3px rgba(0,0,0,.15)}
.pill.green{background:var(--green)}
.pill.pink{background:var(--pink);color:#101114}
.pill.cyan{background:var(--cyan)}
.pill.small{padding:6px 10px;font-size:13px}
.gift{width:44px;height:40px;border-radius:10px;background:var(--cyan);display:inline-flex;align-items:center;justify-content:center;color:#102;box-shadow:inset 0 -3px rgba(0,0,0,.15);cursor:pointer}
.gift:hover{filter:brightness(.95)}
.qty{color:#1a1a1a;font-weight:700}
.badge{font-size:12px;color:var(--muted)}
.rarity-common{color:#374151}.rarity-uncommon{color:#10b981}.rarity-rare{color:#3b82f6}.rarity-epic{color:#a855f7}.rarity-legendary{color:#f59e0b}.rarity-mythic{color:#ef4444}.rarity-godly{color:#8b5cf6;background:linear-gradient(45deg,#ff0000,#ff7f00,#ffff00,#00ff00,#0000ff,#4b0082,#9400d3);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}.rarity-secret{color:#fbbf24}
.meta{display:flex;justify-content:space-between;margin-top:8px}
.muted{color:var(--muted)}.mt{margin-top:8px}
.site-footer{border-top:1px solid var(--ring);background:color-mix(in oklab,var(--surface) 80%, transparent);padding:18px 0;margin-top:24px}

/* Section styles */
.section {
  margin: 20px 0;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--primary);
  text-align: center;
  border-bottom: 2px solid var(--ring);
  padding-bottom: 8px;
}

/* Last Seen Tables */
.lastseen-section {
  margin: 16px 0;
}

.lastseen-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: var(--primary);
  text-align: center;
}

/* Fix footer positioning for all pages */
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.seo-copy{color:var(--muted);font-size:13px;margin-top:16px}

/* New item tile design */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&display=swap');

.item-tile {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    background: linear-gradient(to bottom, #ffc900, #ffae00);
    width: 200px;
    padding: 15px;
    border-radius: 15px;
    border: 3px solid #ffffff;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.item-tile:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    border-color: #00ffff;
}

.item-tile::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 70%);
}

.item-image {
    width: 100px;
    height: auto;
    filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.4));
    margin-bottom: 8px;
}

.item-name {
    font-size: 20px;
    font-weight: 700;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    margin: 0;
}

.item-rarity {
    font-size: 16px;
    color: #00ffff;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    margin: 0 0 10px 0;
    font-weight: 600;
}

/* Rarity colors */
.item-rarity.common { color: #9ca3af; }
.item-rarity.uncommon { color: #10b981; }
.item-rarity.rare { color: #3b82f6; }
.item-rarity.epic { color: #a855f7; }
.item-rarity.legendary { color: #f59e0b; }
.item-rarity.mythic { color: #ee00ff; }
.item-rarity.secret { color: #000000; }
/* Rainbow text for Godly */
.item-rarity.godly {
    background: linear-gradient(90deg, #ff0000, #ffa500, #ffff00, #00ff00, #00ffff, #0000ff, #8b00ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.item-stock-container {
    background-color: rgba(0, 0, 0, 0.45);
    padding: 4px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 8px rgba(0,0,0,0.5);
}

.item-stock {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    margin: 0;
}

.price-container {
    display: flex;
    gap: 6px;
    width: 100%;
    margin-top: auto;
}

.price-button {
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.price-usd {
    background-color: #00ff00;
    border: 2px solid #008000;
    flex-grow: 1;
}

.price-robux {
    background-color: #ff00ff;
    border: 2px solid #800080;
}

.robux-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 24px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-item h3 {
    color: var(--primary);
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Background mosaic pattern */
body {
    background-image: url('./images/bg.png') !important;
    background-repeat: repeat !important;
    background-attachment: fixed !important;
    background-size: auto !important;
}

.panel {
    background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.3) 100%), 
                url('./images/bg.png') !important;
    background-repeat: repeat !important;
    background-size: auto !important;
    border: 3px solid #303030;
    border-radius: 12px;
    padding: 18px;
    margin: 16px 0;
    position: relative;
}

.panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('./images/bg.png') !important;
    background-repeat: repeat !important;
    background-size: auto !important;
    opacity: 0.1;
    border-radius: 12px;
    z-index: -1;
}

/* Panel header with Live Stock button */
.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

/* Countdown timer positioning */
.countdown-timer {
    margin-top: 16px;
    background-color: #ffba00;
    border: 2px solid #cc9500;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 8px;
    width: auto;
}

/* Live Stock Button */
.live-stock-btn {
    background-color: #00ff00;
    border: 2px solid #008000;
    border-radius: 8px;
    padding: 6px 10px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.2s ease;
}

.live-stock-btn:hover {
    background-color: #00cc00;
    transform: translateY(-1px);
}

/* Countdown Timer styles are now in .countdown-timer above */

.countdown-label {
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.countdown-time {
    font-size: 16px;
    font-weight: 700;
    color: white;
    font-family: 'Courier New', monospace;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

/* Last Seen Table */
.lastseen-table{width:100%;border-collapse:collapse;margin-top:8px;table-layout:fixed}
.lastseen-table th,.lastseen-table td{border:1px solid rgba(255,255,255,.12);padding:8px;text-align:left}
.lastseen-table th{background:rgba(255,255,255,.06)}
.lastseen-table th:nth-child(1),.lastseen-table td:nth-child(1){width:35%}
.lastseen-table th:nth-child(2),.lastseen-table td:nth-child(2){width:20%}
.lastseen-table th:nth-child(3),.lastseen-table td:nth-child(3){width:20%}
.lastseen-table th:nth-child(4),.lastseen-table td:nth-child(4){width:25%}
.lastseen-badge.in{color:#10b981;font-weight:700}
.lastseen-badge.out{color:#f59e0b;font-weight:700}

/* Section Headers */
.section-header{margin:20px 0 10px 0;border-bottom:2px solid var(--primary);padding-bottom:8px}
.section-title{color:var(--primary);font-size:24px;font-weight:700;margin:0;text-shadow:0 0 10px rgba(134,239,172,0.3)}

/* Responsive design */
@media (max-width: 768px) {
    .panel-header {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .status-row {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .countdown-timer {
        flex-direction: column;
        gap: 4px;
    }
}

