/**
 * home.css - RPOOL.NET Home Page Styles
 * Premium Dark Theme — matching RPool Store design
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ═══ Verified Badge ═══ */
.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #1d9bf0;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
    flex-shrink: 0;
    position: relative;
    top: -1px;
}
.verified-badge i {
    font-size: 9px;
    color: #fff;
    line-height: 1;
}
.verified-badge-sm {
    width: 14px;
    height: 14px;
}
.verified-badge-sm i {
    font-size: 8px;
}
.verified-badge-lg {
    width: 20px;
    height: 20px;
}
.verified-badge-lg i {
    font-size: 11px;
}

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a28;
    --bg-card-hover: #222236;
    --accent: #6c5ce7;
    --accent-light: #a29bfe;
    --accent-glow: rgba(108,92,231,0.3);
    --success: #00b894;
    --danger: #ff6b6b;
    --warning: #feca57;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6c6c80;
    --border: rgba(255,255,255,0.06);
    --border-hover: rgba(108,92,231,0.4);
    --gradient-1: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    --gradient-2: linear-gradient(135deg, #fd79a8 0%, #e17055 100%);
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 8px 32px rgba(0,0,0,0.4);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.6);
    --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; }
img, video, iframe, embed, object { max-width: 100%; height: auto; }

html {
    background: var(--bg-primary) !important;
    min-height: 100vh;
    overflow-x: clip;
}

body {
    background: var(--bg-primary) !important;
    color: var(--text-primary) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

