:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #eff6ff;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border: #e2e8f0;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --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);
    
    --container-width: 1200px;
    --radius: 12px;
}

/* ============================================================================
   GLOBAL STYLES
   ============================================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

/* ============================================================================
   BETA BANNER
   ============================================================================ */

.beta-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.beta-banner svg {
    flex-shrink: 0;
}

.beta-banner span {
    line-height: 1.4;
}

@media (max-width: 600px) {
    .beta-banner {
        padding: 10px 0;
        font-size: 12px;
    }
    
    .beta-banner .container {
        padding: 0 15px;
    }
    
    .beta-banner span {
        line-height: 1.5;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-primary {
    color: var(--primary);
}

.section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.fullpage {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-light {
    background-color: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary);
    margin: 0 auto;
    border-radius: 2px;
}

.navbar {
    position: sticky;
    top: 29px;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links .discord-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    color: white !important;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.nav-links .discord-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
    color: white !important;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-main);
}

.hero {
    position: relative;
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #1e293b 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.75rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 24px;
}

.description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-twitch {
    background-color: #6441a5;
    color: white;
}

.btn-twitch:hover {
    background-color: #503484;
}

.btn-tiktok {
    background-color: #000000;
    color: white;
}

.btn-tiktok:hover {
    background-color: #333333;
}

.btn-twitter {
    background-color: #1DA1F2;
    color: white;
}

.btn-twitter:hover {
    background-color: #1a8cd8;
}

.btn-instagram {
    background: linear-gradient(135deg, #E1306C 0%, #C13584 50%, #833AB4 100%);
    color: white;
}

.btn-instagram:hover {
    background: linear-gradient(135deg, #C13584 0%, #833AB4 50%, #5B51D8 100%);
}

.bg-shape {
    position: absolute;
    z-index: 1;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.bg-shape-1 {
    width: 400px;
    height: 400px;
    background-color: var(--primary);
    top: -100px;
    left: -100px;
}

.bg-shape-2 {
    width: 500px;
    height: 500px;
    background-color: #8b5cf6;
    top: 200px;
    right: -100px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
}

.icon-box i {
    width: 28px;
    height: 28px;
}

.icon-fast { background-color: #f59e0b; }
.icon-safe { background-color: #10b981; }
.icon-free { background-color: var(--primary); }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.steps-container {
    position: relative;
    padding: 20px 0;
}

.step-line {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    z-index: 1;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.step-item {
    text-align: center;
    cursor: default;
    transition: all 0.3s ease;
}

.step-circle {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.step-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.step-item:hover h3 {
    color: var(--primary);
}

.step-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stats-section {
    background-color: var(--primary);
    padding: 40px 0;
    color: white;
    overflow: hidden;
    position: relative;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    display: flex;
    align-items: center;
    height: 100%;
}

.marquee-content {
    display: inline-flex;
    animation: scroll 30s linear infinite;
    gap: 80px;
    padding-left: 0;
    width: max-content;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

.stat-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
    font-weight: 500;
}

.faq-container {
    max-width: 800px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
}

.accordion-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.accordion-header {
    width: 100%;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-icon {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-item.active .accordion-header {
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-body {
    padding: 0 24px 24px;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--bg-light);
    padding-top: 16px;
}

.footer {
    background-color: #0f172a;
    color: #94a3b8;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: white;
    display: block;
    margin-bottom: 16px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-links a {
    color: #94a3b8;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 30px;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .hero h1 { font-size: 3rem; }
    .subtitle { font-size: 1.4rem; }
    .description { font-size: 1.05rem; padding: 0 20px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand { margin-bottom: 30px; }
    .social-links { justify-content: center; }
    .steps-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .step-line { display: none; }
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    /* Tablet optimizations */
    .nav-links { 
        gap: 16px; 
        font-size: 0.9rem;
    }
    
    .nav-links .discord-link {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
    
    .premium-badge, .btn-login {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-buttons {
        gap: 12px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    /* Navigation */
    .nav-links { display: none; } 
    .mobile-menu-btn { display: block; }
    
    /* Hero Section */
    .hero { padding: 60px 0; }
    .hero h1 { font-size: 2.5rem; line-height: 1.2; }
    .subtitle { font-size: 1.2rem; }
    .description { font-size: 1rem; padding: 0 10px; }
    .hero-buttons { flex-direction: column; width: 100%; padding: 0 20px; }
    .btn { width: 100%; justify-content: center; }
    
    /* Steps */
    .steps-grid { grid-template-columns: 1fr; }
    
    /* Features */
    .features-grid { grid-template-columns: 1fr; padding: 0 20px; }
    .feature-card { padding: 30px 20px; }
    
    /* Stats */
    .stat-value { font-size: 2.5rem; }
    .stat-label { font-size: 0.8rem; }
    
    /* FAQ */
    .faq-container { padding: 0 20px; }
    .accordion-header { padding: 20px 16px; font-size: 1rem; }
    .accordion-body { padding: 0 16px 20px; }
    
    /* Section Headers */
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.75rem; }
    .section-header p { font-size: 1rem; }
    
    /* Live Order Counter */
    .live-stats { margin-top: 24px; }
    .live-stats span { font-size: 12px; }
    #live-order-count { font-size: 20px; }
    
    /* Premium Badge & Login */
    .premium-badge { padding: 6px 12px; font-size: 12px; }
    .btn-login, .btn-logout { padding: 6px 12px; font-size: 13px; }
    #premium-status-nav { gap: 8px; }
    
    /* Support Box */
    .support-box { left: 10px !important; bottom: 10px !important; padding: 12px 16px; }
    .support-text { font-size: 13px; }
    .gift-icon svg { width: 24px; height: 24px; }
    
    /* Container padding */
    .container { padding: 0 15px; }
    
    /* Footer */
    .footer { padding: 60px 0 20px; }
    .footer-col h4 { font-size: 1rem; }
    .footer-col a { font-size: 0.9rem; }
    
    /* Modals - Mobile Friendly */
    .modal-content {
        width: 95%;
        max-width: 95%;
        margin: 10px;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
    
    /* Form inputs - Touch friendly */
    .form-input {
        padding: 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .btn-submit {
        padding: 18px;
        font-size: 1rem;
    }
    
    /* SweetAlert2 Mobile Adjustments */
    .swal2-popup {
        width: 90% !important;
        padding: 20px !important;
    }
    
    .swal2-title {
        font-size: 1.5rem !important;
    }
    
    .swal2-html-container {
        font-size: 0.95rem !important;
    }
    
    .swal2-input {
        font-size: 16px !important; /* Prevents zoom on iOS */
        padding: 12px !important;
    }
    
    /* Buttons - Touch friendly */
    button, .btn, a {
        min-height: 44px; /* iOS recommended touch target */
    }
    
    /* Orbs - Reduce on mobile for performance */
    .bg-shape {
        opacity: 0.2;
        filter: blur(60px);
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--border);
    transform: rotate(90deg);
}

.modal-header {
    padding: 40px 40px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.modal-header h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--text-muted);
}

.modal-body {
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-help {
    display: block;
    margin-top: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.alert {
    padding: 16px;
    border-radius: var(--radius);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-success {
    background-color: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.alert-error {
    background-color: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert-info {
    background-color: var(--primary-light);
    color: var(--primary-dark);
    border: 1px solid #93c5fd;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: var(--primary);
    color: white;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover:not(:disabled) {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    width: 100%;
    padding: 16px;
    background-color: var(--bg-light);
    color: var(--text-main);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 12px;
}

.btn-secondary:hover {
    background-color: var(--border);
}

.user-profile {
    text-align: center;
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.user-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 16px;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
}

.user-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.user-handle {
    color: var(--text-muted);
    font-size: 1rem;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.cooldown-timer {
    text-align: center;
    padding: 40px;
}

.cooldown-time {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    margin: 24px 0;
}

.success-icon {
    font-size: 5rem;
    color: #10b981;
    margin-bottom: 24px;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.loading-overlay.active {
    display: flex;
}

.loading-dots {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.loading-dots .dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    animation: dotPulse 1.4s infinite ease-in-out both;
}

.loading-dots .dot:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots .dot:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes dotPulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}


/* ============================================================================
   SUPPORT BOX STYLES
   ============================================================================ */

.support-popup .swal2-popup {
    border-radius: 24px !important;
}

.support-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(102, 126, 234, 0.4);
}


/* ============================================================================
   TERMS MODAL
   ============================================================================ */

.terms-modal {
    border-radius: 24px !important;
}

.terms-modal-content {
    padding: 0 !important;
    margin: 0 !important;
}

.terms-modal .swal2-html-container {
    overflow: visible !important;
}


/* ============================================================================
   PREMIUM SYSTEM STYLES
   ============================================================================ */

.premium-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
}

.premium-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.btn-login, .btn-logout {
    padding: 8px 16px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-login {
    background: white;
    color: #1e293b;
    border: 2px solid #e2e8f0;
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.btn-logout {
    background: #ef4444;
    color: white;
    margin-left: 12px;
}

.btn-logout:hover {
    background: #dc2626;
}

.premium-tier-badge {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 8px;
}
