/* =============================================
   GEARSPINNEDSMP — Premium Steampunk Gaming Theme
   ============================================= */

:root {
    --bg-color: #1B2631;
    --bg-surface: #151D26;
    --bg-elevated: #21618C;
    --text-primary: #F4F6F7;
    --text-secondary: rgba(244, 246, 247, 0.9);
    --text-muted: rgba(244, 246, 247, 0.6);
    --accent-green: #E67E22;
    --accent-hover: #D35400;
    --accent-green-dim: rgba(230, 126, 34, 0.12);
    --accent-green-glow: rgba(230, 126, 34, 0.35);
    --accent-purple: #5DADE2;
    --accent-purple-dim: rgba(93, 173, 226, 0.15);
    --accent-blue: #2E86C1;
    --accent-brass: #F39C12;
    --card-bg: rgba(244, 246, 247, 0.03);
    --card-border: rgba(244, 246, 247, 0.08);
    
    --font-heading: 'VT323', monospace;
    --font-body: 'Inter', sans-serif;
    
    --radius-sm: 20px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.35s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ---- Typography ---- */
h1 {
    font-family: var(--font-heading);
    font-size: clamp(4.5rem, 10vw, 7.5rem);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 80px rgba(230, 126, 34, 0.15), 0 2px 0 rgba(0,0,0,0.3);
}

h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1;
    text-transform: uppercase;
    margin: 0.5rem 0 1rem;
    color: #fff;
}

h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
}

/* ---- Scroll Animations ---- */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
                transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

.slide-left { opacity: 0; transform: translateX(-50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right { opacity: 0; transform: translateX(50px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.slide-right.visible { opacity: 1; transform: translateX(0); }
.scale-in { opacity: 0; transform: scale(0.9); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.scale-in.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.25s; }
.delay-3 { transition-delay: 0.4s; }
.delay-4 { transition-delay: 0.55s; }

/* ---- Navbar (floating) ---- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 2rem;
    margin: 0 auto;
    width: 85%;
    max-width: 1200px;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 50px;
    background: rgba(27, 38, 49, 0.55);
    backdrop-filter: blur(24px) saturate(1.5);
    -webkit-backdrop-filter: blur(24px) saturate(1.5);
    position: fixed;
    top: 0.8rem;
    left: 0;
    right: 0;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 1.2rem 2rem;
    top: 0.5rem;
    background: rgba(27, 38, 49, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(230, 126, 34, 0.04);
}

/* Left: nav links */
.nav-left {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex: 1;
}

.nav-left a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.8rem 1.2rem;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-left a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 6px var(--accent-green);
}

.nav-left a.active::after,
.nav-left a:hover::after {
    width: 50%;
}

.nav-left a.active,
.nav-left a:hover {
    color: var(--text-primary);
}

/* Center: logo (small) */
.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.logo-img {
    width: 28px;
    height: 28px;
    border-radius: 3px;
}

.logo span {
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(230, 126, 34, 0.35);
}

/* Right: Discord button */
.nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}

.discord-btn {
    background: linear-gradient(135deg, #5865F2, #4752C4) !important;
    color: #fff !important;
    padding: 0.55rem 1.2rem !important;
    border-radius: var(--radius-sm) !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    transition: var(--transition) !important;
    box-shadow: 0 2px 15px rgba(88, 101, 242, 0.25);
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    text-decoration: none !important;
}

.discord-btn::after { display: none !important; }

.discord-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(88, 101, 242, 0.5) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 0.4rem 0.7rem;
    border-radius: var(--radius-sm);
    z-index: 101;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10rem 5% 7rem;
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    overflow: hidden;
    gap: 2rem;
    background-color: transparent !important;
}

/* Ambient gradients on the LEFT */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, var(--bg-color) 0%, rgba(27, 38, 49, 0.8) 35%, transparent 65%),
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(230, 126, 34, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 30% 20%, rgba(93, 173, 226, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 5% 90%, rgba(230, 126, 34, 0.04) 0%, transparent 30%);
    z-index: 3;
    pointer-events: none;
}

/* 3D Model Container */
.hero-3d-model {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: block;
    cursor: grab;
}
.hero-3d-model:active { cursor: grabbing; }

.hero-content {
    max-width: 800px;
    width: 55%;
    position: relative;
    z-index: 5;
    pointer-events: none; /* Text and background above 3D model shouldn't block grabs, except buttons */
}
.hero-content a,
.hero-content button {
    pointer-events: auto;
}

/* Urgency badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.2rem;
    margin-bottom: 2rem;
    background: rgba(230, 126, 34, 0.08);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--accent-green);
    text-transform: uppercase;
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.1); }
    50% { box-shadow: 0 0 0 8px rgba(230, 126, 34, 0); }
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-green);
    display: inline-block;
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
    font-weight: 400;
}

.subtitle strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* ---- Buttons ---- */
.cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.primary-btn {
    background: linear-gradient(135deg, var(--accent-green), #D35400);
    color: #000;
    border: none;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    text-decoration: none;
    cursor: pointer;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    transition: var(--transition);
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--accent-green-glow);
    letter-spacing: 0.5px;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    transition: 0.6s;
}

.primary-btn:hover::before { left: 100%; }
.primary-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 35px var(--accent-green-glow);
}
.primary-btn:active { transform: translateY(-1px) scale(0.99); }

/* IP Copy Button */
.ip-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.2rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.ip-btn .ip-icon {
    color: var(--text-muted);
    transition: var(--transition);
    flex-shrink: 0;
}

.ip-btn .ip-hint {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    padding: 0.2rem 0.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    transition: var(--transition);
}

.ip-btn:hover {
    border-color: var(--accent-green);
    background: rgba(230, 126, 34, 0.05);
    box-shadow: 0 0 20px rgba(230, 126, 34, 0.1);
}

.ip-btn:hover .ip-icon { color: var(--accent-green); }
.ip-btn:hover .ip-hint { color: var(--accent-green); background: rgba(230, 126, 34, 0.1); }

.ip-btn.copied {
    border-color: var(--accent-green);
    background: rgba(230, 126, 34, 0.08);
    box-shadow: 0 0 25px rgba(230, 126, 34, 0.15);
}

.ip-btn.copied .ip-icon { color: var(--accent-green); }
.ip-btn.copied .ip-hint { color: #000; background: var(--accent-green); }

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    width: fit-content;
    backdrop-filter: blur(8px);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(230, 126, 34, 0.3);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255,255,255,0.08);
}

/* ===================================
   TIMELINE — CONNECTION INFO SECTION
   =================================== */
.timeline-section {
    padding: 6rem 5% 4rem;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color), var(--bg-surface) 30%, var(--bg-color) 100%);
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.15), rgba(93, 173, 226, 0.2), transparent);
}

.timeline-header {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 4rem;
}

.timeline-header .section-label {
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--accent-green);
}

.timeline-header h2 {
    color: #fff;
}

.timeline-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* The timeline wrapper */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Center dashed line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: repeating-linear-gradient(
        to bottom,
        rgba(230, 126, 34, 0.2) 0px,
        rgba(230, 126, 34, 0.2) 8px,
        transparent 8px,
        transparent 16px
    );
    transform: translateX(-50%);
}

/* Each timeline item */
.timeline-item {
    position: relative;
    width: 50%;
    padding: 0 2.5rem;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Left items — positioned on the left half */
.timeline-left {
    margin-right: auto;
    margin-left: 0;
    text-align: right;
}

/* Right items — positioned on the right half */
.timeline-right {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

/* Dot on the center line */
.timeline-dot {
    position: absolute;
    top: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--accent-green);
    color: var(--accent-green);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.15);
    transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
    background: var(--accent-green);
    color: #000;
    box-shadow: 0 0 25px rgba(230, 126, 34, 0.35);
}

/* Dot positioning */
.timeline-left .timeline-dot {
    right: -20px;
}

.timeline-right .timeline-dot {
    left: -20px;
}

/* Card */
.timeline-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.8rem;
    transition: var(--transition);
    position: relative;
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    width: 20px;
    height: 2px;
    background: rgba(230, 126, 34, 0.15);
}

.timeline-left .timeline-card::before {
    right: -20px;
}

.timeline-right .timeline-card::before {
    left: -20px;
}

.timeline-item:hover .timeline-card {
    border-color: rgba(230, 126, 34, 0.15);
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.timeline-card h4 {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.timeline-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

.timeline-card code {
    background: rgba(230, 126, 34, 0.08);
    color: var(--accent-green);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    border: 1px solid rgba(230, 126, 34, 0.1);
}

.timeline-code {
    display: inline-block;
    margin-top: 0.6rem;
    padding: 0.5rem 1rem !important;
    font-size: 1.15rem !important;
    letter-spacing: 0.5px;
}

.timeline-card a {
    color: var(--accent-blue);
    text-decoration: none;
    border-bottom: 1px dotted rgba(46, 134, 193, 0.3);
    transition: var(--transition);
}

.timeline-card a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.warning-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.6rem;
    padding: 0.4rem 0.8rem;
    background: rgba(255, 68, 68, 0.08);
    border: 1px solid rgba(255, 68, 68, 0.15);
    border-radius: var(--radius-sm);
    color: #ff6666;
    font-size: 0.8rem;
    font-weight: 700;
}

.warning-badge svg {
    color: #ff6666;
    flex-shrink: 0;
}

/* Bluemap bar — centered below timeline */
.bluemap-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    max-width: 500px;
    margin: 3rem auto 0;
    background: rgba(46, 134, 193, 0.04);
    border: 1px solid rgba(46, 134, 193, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--text-muted);
}

.bluemap-bar span {
    color: var(--accent-blue);
    font-weight: 700;
}

.bluemap-bar a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.bluemap-bar a:hover {
    color: var(--accent-blue);
    text-shadow: 0 0 8px rgba(46, 134, 193, 0.3);
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: 6rem 5% 8rem;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-surface) 50%, var(--bg-color) 100%);
}

.features::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.2), rgba(93, 173, 226, 0.3), transparent);
}

.features-header {
    margin-bottom: 3rem;
}

.section-label {
    color: var(--accent-purple);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.3rem;
}

.features-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 500px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    max-width: 1000px;
}

.feature-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.005));
    padding: 1.8rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 1.3rem;
    align-items: flex-start;
}

/* Steampunk accent bar */
.feature-card-accent {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-brass), var(--accent-green), var(--accent-brass));
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.4),
        0 0 30px rgba(230, 126, 34, 0.04),
        inset 0 0 30px rgba(255,255,255,0.01);
    border-color: rgba(230, 126, 34, 0.15);
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015));
}

.feature-card:hover .feature-card-accent {
    opacity: 1;
}

.feature-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.3);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    border-color: rgba(230, 126, 34, 0.2);
    box-shadow: 0 0 15px rgba(230, 126, 34, 0.12);
    transform: scale(1.05);
}

.feature-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.05) saturate(1.1);
}

/* ===================================
   FEATURES SECTION (BENTO GRID)
   =================================== */
.bento-features {
    padding: 6rem 5% 8rem;
    position: relative;
    background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-surface) 50%, var(--bg-color) 100%);
    font-family: var(--font-body);
}

.bento-features::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.2), rgba(93, 173, 226, 0.3), transparent);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto 5rem;
}

@media (min-width: 900px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.bento-card {
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bento-card:hover {
    transform: translateY(-5px);
}

/* Dark Card */
.bento-dark {
    background: linear-gradient(145deg, #21618C, #1B2631);
    border: 1px solid rgba(255,255,255,0.05);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    justify-content: space-between;
}
.bento-dark .bento-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem;
}
.bento-dark .bento-text {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}
.bento-dark .bento-text strong {
    color: #fff;
}
.bento-toggle-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}
.bento-toggle {
    width: 50px; height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}
.bento-toggle.active {
    background: #E67E22;
}
.bento-toggle .toggle-knob {
    width: 24px; height: 24px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px; left: 2px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.bento-toggle.active .toggle-knob {
    transform: translateX(22px);
}

/* Image Card */
.bento-image {
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    min-height: 350px;
}
.bento-pill {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    z-index: 2;
}

/* Light Card */
.bento-light {
    background: #F4F6F7;
    color: #1B2631;
    box-shadow: 0 15px 35px rgba(255,255,255,0.05);
}
.bento-light .bento-large-num {
    font-family: var(--font-body);
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: #1B2631;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.bento-light .bento-subtitle {
    font-weight: 700;
    font-size: 1.15rem;
    color: #21618C;
    margin-bottom: 0.5rem;
}
.bento-light .bento-text-sm {
    font-size: 0.95rem;
    color: #21618C;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.bento-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
}
.stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6C757D;
}
.stat-row .stat-label {
    width: 100px;
    color: inherit;
}
.stat-dots {
    display: flex;
    gap: 5px;
    flex: 1;
    margin: 0 1rem;
}
.stat-dots .dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(93, 173, 226, 0.3);
}
.stat-dots .dot.active {
    background: #E67E22;
}
.stat-num {
    width: 35px;
    text-align: right;
    color: #6c757d;
}

/* Facts Section */
.facts-section {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 60px;
}
.facts-title {
    font-family: var(--font-body);
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
}
.facts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .facts-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.fact-item h4 {
    font-family: var(--font-body);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}
.fact-item p {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.feature-card-text h3 {
    font-size: 1.7rem;
    margin-bottom: 0.4rem;
    color: var(--accent-green);
    transition: var(--transition);
}

.feature-card:hover .feature-card-text h3 {
    text-shadow: 0 0 12px rgba(230, 126, 34, 0.25);
}

.feature-card-text p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ===================================
   RULES PAGE
   =================================== */
.rules-container {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rules-section {
    background: var(--bg-surface);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.rules-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    border-color: rgba(93, 173, 226, 0.2);
}

.rules-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
}

.rules-section h3 {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    max-width: 75%;
}

.rules-section h3 span {
    display: block;
    font-size: 0.85rem !important;
    font-weight: 400;
    margin-top: 0.3rem;
    color: var(--text-muted) !important;
}

.rules-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rules-section ul { 
    list-style: none;
    flex-grow: 1;
    margin-bottom: 2rem;
    padding: 0;
}

.rules-section li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.2rem;
}

.rules-section li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: var(--accent-blue);
    opacity: 0.7;
}

.rules-learn-more {
    margin-top: auto;
    color: var(--accent-purple);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.rules-learn-more:hover {
    opacity: 0.8;
}

.rules-learn-more span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-purple-dim);
    color: var(--accent-purple);
    font-size: 0.9rem;
}

/* ===================================
   DONATE TIER CARDS
   =================================== */
.donate-tiers {
    margin: 3rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.tier-card {
    background: rgba(15, 10, 28, 0.7);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: all 0.4s var(--ease);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(138, 43, 226, 0.25);
    border-color: rgba(138, 43, 226, 0.4);
}

.tier-card::before, .tier-card::after { display: none !important; }

.tier-top {
    background: rgba(255,255,255,0.03);
    border-radius: 12px;
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-card.featured .tier-top,
.tier-card.tier-angel .tier-top,
.tier-card.tier-god .tier-top {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, rgba(255, 153, 0, 0.05) 100%);
    border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.tier-card h3 {
    color: var(--text-primary) !important;
    font-size: 1.1rem;
    font-family: var(--font-body);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.tier-badge {
    position: absolute;
    top: -18px;
    left: 18px;
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: linear-gradient(135deg, #FF6B00 0%, #FF9900 100%);
    color: #FFF;
    font-size: 0.70rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4);
}

.tier-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-body);
    line-height: 1;
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    text-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.tier-price-period {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-body);
}

.tier-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    min-height: 2.5rem;
    line-height: 1.5;
}

.tier-card .primary-btn {
    width: 100%;
    background: rgba(255,255,255,0.08) !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 500;
    padding: 0.9rem 1.5rem;
    border-radius: 8px;
    box-shadow: none !important;
    transition: all 0.3s;
    margin-top: auto;
    letter-spacing: 0;
}

.tier-card.featured .primary-btn {
    background: linear-gradient(135deg, #FF6B00 0%, #FF9900 100%) !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4) !important;
}

.tier-card .primary-btn:hover {
    background: rgba(255,255,255,0.15) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.4) !important;
}

.tier-card.featured .primary-btn:hover {
    background: linear-gradient(135deg, #FF9900 0%, #FFB84D 100%) !important;
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.6) !important;
}

.tier-card .primary-btn::before {
    display: none !important;
}

.tier-bottom {
    padding: 1.5rem 1.2rem;
    background: transparent;
    border-radius: 0 0 16px 16px;
    flex-grow: 1;
}

.tier-features {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}

.tier-features li {
    padding: 0.4rem 0;
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    border: none;
}

.tier-features li:hover {
    color: #fff;
}

.tier-features li::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    text-align: center;
    padding: 2.5rem 5%;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.2);
    border-top: 1px solid rgba(255,255,255,0.03);
    margin-top: auto;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
}

/* ===================================
   FLOATING PARTICLES
   =================================== */
.floating-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-green);
    border-radius: 50%;
    opacity: 0;
    animation: float-up linear infinite;
}

@keyframes float-up {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.5; }
    90% { opacity: 0.15; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.particle:nth-child(1) { left: 8%; animation-duration: 14s; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-duration: 18s; animation-delay: 2s; width: 3px; height: 3px; }
.particle:nth-child(3) { left: 33%; animation-duration: 12s; animation-delay: 4s; }
.particle:nth-child(4) { left: 48%; animation-duration: 20s; animation-delay: 1s; width: 3px; height: 3px; }
.particle:nth-child(5) { left: 62%; animation-duration: 16s; animation-delay: 3s; }
.particle:nth-child(6) { left: 75%; animation-duration: 13s; animation-delay: 5s; width: 3px; height: 3px; }
.particle:nth-child(7) { left: 88%; animation-duration: 19s; animation-delay: 7s; }
.particle:nth-child(8) { left: 42%; animation-duration: 15s; animation-delay: 6s; }
.particle:nth-child(9) { left: 55%; animation-duration: 17s; animation-delay: 8s; width: 3px; height: 3px; }
.particle:nth-child(10) { left: 30%; animation-duration: 21s; animation-delay: 9s; }
.particle:nth-child(11) { left: 5%; animation-duration: 16s; animation-delay: 3.5s; width: 3px; height: 3px; }
.particle:nth-child(12) { left: 68%; animation-duration: 14s; animation-delay: 1.5s; }
.particle:nth-child(13) { left: 82%; animation-duration: 18s; animation-delay: 5.5s; }
.particle:nth-child(14) { left: 15%; animation-duration: 22s; animation-delay: 10s; width: 3px; height: 3px; }
.particle:nth-child(15) { left: 95%; animation-duration: 15s; animation-delay: 4.5s; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.15); }

::selection {
    background: rgba(230, 126, 34, 0.2);
    color: #fff;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .navbar {
        width: 85%;
    }
    .hero-content {
        width: 65%;
    }
}

@media (max-width: 900px) {
    .navbar {
        width: 95%;
        padding: 0.6rem 1rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .hero-3d-model {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-width: none;
        order: unset;
        margin-bottom: 0;
    }

    .hero-content {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-stats {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 5% 4rem;
        min-height: 100vh;
        min-height: 100dvh;
    }

    .cta-group { flex-direction: column; align-items: stretch; }
    .ip-btn { justify-content: center; }
    
    .nav-left {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(27, 38, 49, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        z-index: 100;
    }
    
    .nav-left.open { display: flex; }
    .nav-left a { font-size: 1.3rem; padding: 0.8rem 2rem; }
    .nav-right { display: none; }
    .mobile-menu-btn { display: block; }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .donate-tiers { grid-template-columns: 1fr; }
    .rules-section { padding: 1.5rem; }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.2rem 1.5rem;
        padding: 1rem;
    }
    
    .hero-stats .stat-item:last-child {
        flex: 1 1 100%;
        flex-direction: row;
        justify-content: center;
        gap: 0.8rem;
        align-items: baseline;
    }
    
    .hero-stats .stat-divider:nth-of-type(2) {
        display: none;
    }

    /* Timeline mobile: single column */
    .timeline-item {
        width: 100%;
        padding-left: 3.5rem;
        padding-right: 0;
        text-align: left;
    }

    .timeline-left,
    .timeline-right {
        margin-left: 0;
        margin-right: 0;
        text-align: left;
    }

    .timeline-line {
        left: 18px;
    }

    .timeline-left .timeline-dot,
    .timeline-right .timeline-dot {
        left: -2px;
        right: auto;
    }

    .timeline-card::before {
        display: none;
    }
}







/* ---- GLOBAL MOBILE ENHANCEMENTS ---- */
@media (max-width: 900px) {
    /* Heading scale down */
    h1 {
        font-size: clamp(3rem, 10vw, 4.5rem) !important;
    }
    h2 {
        font-size: clamp(2.2rem, 8vw, 3rem) !important;
    }

    /* Fix hero cards clipping text with absolute images */
    .hero-card {
        padding: 3rem 2rem !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2.5rem;
    }
    
    .hero-card .hero-content {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-card .subtitle {
        margin: 0 auto;
    }
    
    .hero-card .hero-image {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        justify-content: center !important;
        margin-top: 1rem;
    }

    .hero-card .hero-image img {
        max-width: 260px !important;
        /* Let it sit flat on mobile */
        transform: translateY(0) !important;
    }
    
    /* Add dark overlay to ensure text visibility and fill mobile screen */
    .hero { 
        background: linear-gradient(rgba(10, 5, 20, 0.75), rgba(10, 5, 20, 0.75)), url('../galaxy.jpg') no-repeat center center / cover !important; 
        min-height: 100vh !important;
        min-height: 100dvh !important;
    }
    .hero::before { display: none !important; }
    
    /* Bento Box Optimizations */
    .bento-card {
        padding: 2rem !important;
    }
    
    /* Fix squished stat rows on small mobile */
    .stat-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    .stat-row .stat-label {
        width: 100% !important;
        text-align: left;
    }
    .stat-row .stat-dots {
        margin: 0 !important;
        justify-content: flex-start;
    }
    .stat-row .stat-num {
        text-align: right;
    }
}

@media (max-width: 500px) {
    /* Keep 2-column facts but smaller text */
    .facts-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
    .fact-item h4 {
        font-size: 2rem !important;
    }
    
    h1 { font-size: 2.5rem !important; }
    h2 { font-size: 2rem !important; }
    
    .bento-card { padding: 1.5rem !important; }
    .hero-card { padding: 2.5rem 1.5rem !important; }
}

/* ---- CUSTOM MENU & HORIZONTAL SCROLLING ENHANCEMENTS ---- */
@media (max-width: 900px) {
    .navbar {
        background: transparent !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        box-shadow: none !important;
        border: none !important;
        position: fixed !important; /* Anchor for drop-down AND float over hero */
    }
    .navbar::before {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: rgba(27, 38, 49, 0.55);
        border: 1px solid rgba(255,255,255,0.06);
        backdrop-filter: blur(24px) saturate(1.5);
        -webkit-backdrop-filter: blur(24px) saturate(1.5);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(230, 126, 34, 0.04);
        z-index: -1;
        transition: background 0.3s ease;
    }
    .navbar.scrolled::before {
        background: rgba(27, 38, 49, 0.9);
    }

    .nav-left {
        /* Clean Mobile Dropdown */
        position: absolute !important;
        inset: auto !important;
        top: calc(100% + 0.5rem) !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(27, 38, 49, 0.55) !important;
        backdrop-filter: blur(24px) saturate(1.5) !important;
        -webkit-backdrop-filter: blur(24px) saturate(1.5) !important;
        border-radius: 24px !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5) !important;
        padding: 0.8rem !important;

        display: none;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.4rem !important;
        z-index: 1000 !important;

        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease !important;
    }

    .nav-left.open {
        display: flex !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .nav-left a {
        background: transparent !important;
        border: 1px solid transparent !important;
        text-align: center !important;
        border-radius: 50px !important;
        padding: 0.8rem 1rem !important;
        font-size: 1.1rem !important;
        font-weight: 500 !important;
        color: var(--text-muted) !important;
        transition: all 0.2s ease !important;
    }

    .nav-left a:hover, .nav-left a.active {
        background: rgba(255, 255, 255, 0.05) !important;
        color: var(--text-primary) !important;
        border-color: rgba(255, 255, 255, 0.1) !important;
    }

    .nav-left a::after {
        display: none !important;
    }

    /* Horizontal Scrolling for "Why Join Us" bento cards */
    .bento-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;

        max-width: 100vw !important;
        /* Increase bottom padding to prevent scrollbar overlapping cards */
        padding: 1rem 5vw 3rem !important;
        margin: 0 -5vw;
        gap: 1.5rem !important;
        scroll-padding-left: 5vw;
        -webkit-overflow-scrolling: touch;
    }

    /* Add an explicit spacer at the end so the last card doesn't touch the right edge */
    .bento-grid::after {
        content: "";
        flex: 0 0 5vw;
        display: block;
    }

    .bento-grid::-webkit-scrollbar {
        height: 4px;
    }
    .bento-grid::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.02);
        margin: 0 5vw;
    }
    .bento-grid::-webkit-scrollbar-thumb {
        background: rgba(230, 126, 34, 0.4);
        border-radius: 4px;
    }

    .bento-card {
        flex: 0 0 82% !important;
        /* Snap to start with left margin for clean carousel peek */
        scroll-snap-align: start !important;
        min-width: 270px;
        margin-left: 0 !important;
    }
}








