/* BOTHIDE UNDETECTED CHEATS AND AIMBOT - Enhanced Global Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600&family=JetBrains+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* Enhanced Root Variables */
:root {
    /* Primary Brand Colors - Aura/Dark Theme */
    --aura-cyan: #00d4ff;
    --aura-cyan-light: #33ddff;
    --aura-cyan-dark: #0099cc;
    --aura-purple: #8b5cf6;
    --aura-purple-light: #a78bfa;
    --aura-purple-dark: #7c3aed;

    /* Background Colors - Deep Dark */
    --aura-dark: #0a0a0f;
    --aura-darker: #050508;
    --aura-surface: #111118;
    --aura-surface-light: #1a1a24;

    /* Semantic Colors - Enhanced for Aura Theme */
    --color-success: #00ff88;
    --color-success-light: #33ffaa;
    --color-warning: #ffaa00;
    --color-warning-light: #ffcc33;
    --color-error: #ff3366;
    --color-error-light: #ff6699;
    --color-info: #00d4ff;
    --color-info-light: #33ddff;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e5e5e5;
    --text-muted: #a1a1aa;
    --text-subtle: #71717a;

    /* Typography Scale */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    --font-size-4xl: 2.25rem;     /* 36px */
    --font-size-5xl: 3rem;        /* 48px */
    --font-size-6xl: 3.75rem;     /* 60px */
    --font-size-7xl: 4.5rem;      /* 72px */
    --font-size-8xl: 6rem;        /* 96px */
    --font-size-9xl: 8rem;        /* 128px */

    /* Line Heights */
    --line-height-none: 1;
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;

    /* Letter Spacing */
    --letter-spacing-tighter: -0.05em;
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0em;
    --letter-spacing-wide: 0.025em;
    --letter-spacing-wider: 0.05em;
    --letter-spacing-widest: 0.1em;

    /* Font Families */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-display: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', 'Monaco', 'Cascadia Code', 'Roboto Mono', monospace;

    /* Spacing Scale */
    --space-px: 1px;
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;

    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius-base: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 20px rgba(255, 105, 180, 0.3);
    --shadow-glow-lg: 0 0 40px rgba(255, 105, 180, 0.4);

    /* Transitions */
    --transition-fast: 150ms ease-out;
    --transition-base: 250ms ease-out;
    --transition-slow: 350ms ease-out;
    --transition-bounce: 250ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Enhanced Base Font Settings */
* {
    box-sizing: border-box;
}

html {
    font-size: 16px; /* Improved base font size for better readability */
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    font-weight: 400;
    letter-spacing: var(--letter-spacing-normal);
    color: var(--text-primary);
    background-color: var(--aura-darker);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Enhanced Typography Hierarchy */
h1, h2, h3, h4, h5, h6,
.font-display {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: var(--letter-spacing-tight);
    line-height: var(--line-height-tight);
    color: var(--text-primary);
    margin: 0;
}

h1 { font-size: var(--font-size-4xl); margin-bottom: var(--space-6); }
h2 { font-size: var(--font-size-3xl); margin-bottom: var(--space-5); }
h3 { font-size: var(--font-size-2xl); margin-bottom: var(--space-4); }
h4 { font-size: var(--font-size-xl); margin-bottom: var(--space-3); }
h5 { font-size: var(--font-size-lg); margin-bottom: var(--space-3); }
h6 { font-size: var(--font-size-base); margin-bottom: var(--space-2); }

/* Responsive Typography */
@media (min-width: 640px) {
    h1 { font-size: var(--font-size-5xl); }
    h2 { font-size: var(--font-size-4xl); }
    h3 { font-size: var(--font-size-3xl); }
}

@media (min-width: 1024px) {
    h1 { font-size: var(--font-size-6xl); }
    h2 { font-size: var(--font-size-5xl); }
    h3 { font-size: var(--font-size-4xl); }
}

/* Enhanced Text Size Classes */
.text-xs {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-normal);
}
.text-sm {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
}
.text-base {
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
}
.text-lg {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-normal);
}
.text-xl {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-snug);
}
.text-2xl {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-tight);
}
.text-3xl {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-tight);
}
.text-4xl {
    font-size: var(--font-size-4xl);
    line-height: var(--line-height-tight);
}
.text-5xl {
    font-size: var(--font-size-5xl);
    line-height: var(--line-height-none);
}
.text-6xl {
    font-size: var(--font-size-6xl);
    line-height: var(--line-height-none);
}
.text-7xl {
    font-size: var(--font-size-7xl);
    line-height: var(--line-height-none);
}
.text-8xl {
    font-size: var(--font-size-8xl);
    line-height: var(--line-height-none);
}
.text-9xl {
    font-size: var(--font-size-9xl);
    line-height: var(--line-height-none);
}

/* Enhanced Text Color Classes */
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }
.text-muted { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }

/* Font Weight Classes */
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Letter Spacing Classes */
.tracking-tighter { letter-spacing: var(--letter-spacing-tighter); }
.tracking-tight { letter-spacing: var(--letter-spacing-tight); }
.tracking-normal { letter-spacing: var(--letter-spacing-normal); }
.tracking-wide { letter-spacing: var(--letter-spacing-wide); }
.tracking-wider { letter-spacing: var(--letter-spacing-wider); }
.tracking-widest { letter-spacing: var(--letter-spacing-widest); }

/* Line Height Classes */
.leading-none { line-height: var(--line-height-none); }
.leading-tight { line-height: var(--line-height-tight); }
.leading-snug { line-height: var(--line-height-snug); }
.leading-normal { line-height: var(--line-height-normal); }
.leading-relaxed { line-height: var(--line-height-relaxed); }
.leading-loose { line-height: var(--line-height-loose); }

/* Enhanced Glass Effect - Aura Theme */
.glass-effect {
    background: rgba(0, 212, 255, 0.08);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
}

.glass-effect:hover {
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Gradient Text - Aura Theme */
.gradient-text {
    background: linear-gradient(135deg, var(--aura-cyan), var(--aura-purple), var(--aura-cyan-light));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Enhanced Dewdrop Effect */
.dewdrop {
    position: relative;
    overflow: hidden;
}

.dewdrop::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2), transparent 60%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.dewdrop:hover::before {
    opacity: 1;
}

/* Enhanced Floating Animation */
.floating {
    animation: floating 4s ease-in-out infinite;
}

.floating-slow {
    animation: floating 6s ease-in-out infinite;
}

.floating-fast {
    animation: floating 2s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 1;
    }
}

/* Enhanced Button Styles - Aura Theme */
.btn-primary {
    background: linear-gradient(135deg, var(--aura-cyan), var(--aura-purple));
    color: var(--text-primary);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-lg);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-none);
    letter-spacing: var(--letter-spacing-wide);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    text-transform: uppercase;
    min-height: 44px; /* Accessibility: minimum touch target */
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left var(--transition-slow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--aura-purple), var(--aura-cyan-dark));
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(0, 212, 255, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.btn-primary:focus {
    outline: 2px solid var(--aura-cyan);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--aura-cyan);
    border: 2px solid var(--aura-cyan);
    padding: calc(var(--space-3) - 2px) calc(var(--space-6) - 2px); /* Adjust for border */
    border-radius: var(--radius-lg);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: var(--font-size-base);
    line-height: var(--line-height-none);
    letter-spacing: var(--letter-spacing-wide);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    text-transform: uppercase;
    min-height: 44px; /* Accessibility: minimum touch target */
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--aura-cyan);
    transition: width var(--transition-base);
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--text-primary);
    border-color: var(--aura-cyan);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary:active {
    transform: translateY(0);
}

.btn-secondary:focus {
    outline: 2px solid var(--aura-cyan);
    outline-offset: 2px;
}

/* Button Sizes */
.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--font-size-sm);
    min-height: 36px;
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-size-lg);
    min-height: 52px;
}

.btn-xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--font-size-xl);
    min-height: 60px;
}

/* Button Variants */
.btn-success {
    background: linear-gradient(135deg, var(--color-success), var(--color-success-light));
}

.btn-warning {
    background: linear-gradient(135deg, var(--color-warning), var(--color-warning-light));
}

.btn-error {
    background: linear-gradient(135deg, var(--color-error), var(--color-error-light));
}

.btn-info {
    background: linear-gradient(135deg, var(--color-info), var(--color-info-light));
}

/* Enhanced Form Input Styles - Aura Theme */
.form-input {
    background: rgba(17, 17, 24, 0.6);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: var(--font-size-base);
    line-height: var(--line-height-normal);
    width: 100%;
    min-height: 44px; /* Accessibility: minimum touch target */
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.form-input:focus {
    outline: none;
    border-color: var(--aura-cyan);
    background: rgba(17, 17, 24, 0.8);
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(0, 212, 255, 0.1);
    transform: translateY(-1px);
}

.form-input:hover:not(:focus) {
    border-color: rgba(0, 212, 255, 0.3);
    background: rgba(17, 17, 24, 0.7);
}

.form-input::placeholder {
    color: var(--text-muted);
    font-size: var(--font-size-base);
    opacity: 0.8;
}

.form-input:invalid {
    border-color: var(--color-error);
}

.form-input:invalid:focus {
    box-shadow: var(--shadow-md), 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Form Input Variants */
.form-input-sm {
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-sm);
    min-height: 36px;
}

.form-input-lg {
    padding: var(--space-4) var(--space-5);
    font-size: var(--font-size-lg);
    min-height: 52px;
}

/* Textarea Styles */
.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: var(--line-height-relaxed);
}

/* Select Styles */
.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ff69b4' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right var(--space-3) center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: var(--space-10);
    appearance: none;
}

/* Form Labels */
.form-label {
    display: block;
    font-family: var(--font-sans);
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-2);
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

.form-label.required::after {
    content: ' *';
    color: var(--color-error);
}

/* Form Groups */
.form-group {
    margin-bottom: var(--space-6);
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Form Error States */
.form-error {
    color: var(--color-error);
    font-size: var(--font-size-sm);
    margin-top: var(--space-1);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.form-error::before {
    content: '⚠';
    font-size: var(--font-size-xs);
}

/* Form Success States */
.form-success {
    color: var(--color-success);
    font-size: var(--font-size-sm);
    margin-top: var(--space-1);
    display: flex;
    align-items: center;
    gap: var(--space-1);
}

.form-success::before {
    content: '✓';
    font-size: var(--font-size-xs);
}

/* Enhanced Card Styles - Aura Theme */
.card {
    background: rgba(0, 212, 255, 0.08);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    background: rgba(0, 212, 255, 0.12);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: var(--shadow-xl), 0 0 20px rgba(0, 212, 255, 0.3);
}

.card:hover::before {
    opacity: 1;
}

/* Card Variants */
.card-compact {
    padding: var(--space-4);
}

.card-spacious {
    padding: var(--space-8);
}

.card-flat {
    box-shadow: none;
    border: 2px solid rgba(255, 105, 180, 0.2);
}

.card-elevated {
    box-shadow: var(--shadow-2xl);
}

/* Navigation Styles - Aura Theme */
.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-link:hover {
    color: var(--aura-cyan);
}

.nav-link.active {
    color: var(--aura-cyan);
    font-weight: 600;
}

/* Table Styles */
.table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}

.table th {
    background: rgba(0, 212, 255, 0.2);
    padding: 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.table td {
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

/* Badge Styles */
.badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-success { background: #00ff88; color: white; }
.badge-warning { background: #ffaa00; color: white; }
.badge-error { background: #ff3366; color: white; }
.badge-info { background: #00d4ff; color: white; }
.badge-purple { background: var(--aura-purple); color: white; }
.badge-cyan { background: var(--aura-cyan); color: white; }

/* Code Blocks */
.code-block {
    background: #1a1a2e;
    border: 1px solid #333;
    border-radius: 0.5rem;
    padding: 1rem;
    overflow-x: auto;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Responsive Typography */
@media (max-width: 768px) {
    * {
        font-size: 13px; /* Even smaller on mobile */
    }

    .text-4xl { font-size: 1.7rem; line-height: 2rem; }
    .text-5xl { font-size: 2rem; line-height: 2.3rem; }
    .text-6xl { font-size: 2.3rem; line-height: 2.6rem; }
    .text-7xl { font-size: 2.6rem; line-height: 2.9rem; }
}

/* Scrollbar Styling - Aura Theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--aura-darker);
}

::-webkit-scrollbar-thumb {
    background: var(--aura-cyan);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--aura-purple);
}

/* Selection Styling - Aura Theme */
::selection {
    background: var(--aura-cyan);
    color: white;
}

::-moz-selection {
    background: var(--aura-cyan);
    color: white;
}

/* Focus Styles - Aura Theme */
*:focus {
    outline: 2px solid var(--aura-cyan);
    outline-offset: 2px;
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Print Styles */
@media print {
    .glass-effect {
        background: white !important;
        border: 1px solid #ccc !important;
    }

    .gradient-text {
        color: #333 !important;
        -webkit-text-fill-color: #333 !important;
    }
}

/* Custom utilities for products page */
.line-clamp-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Background animation utilities */
.bg-size-200 {
    background-size: 200% 200%;
}

.bg-pos-0 {
    background-position: 0% 50%;
}

.bg-pos-100 {
    background-position: 100% 50%;
}
