/* FutuCopy Modern Theme */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Primary Brand Colors */
    --primary-color: #4f46e5; /* Indigo 600 */
    --primary-hover: #4338ca; /* Indigo 700 */
    --primary-light: #818cf8; /* Indigo 400 */
    --primary-bg: #eef2ff;    /* Indigo 50 */

    /* Secondary Colors */
    --secondary-color: #10b981; /* Emerald 500 */
    --secondary-hover: #059669; /* Emerald 600 */
    --secondary-light: #d1fae5; /* Emerald 100 */

    /* Accent Colors */
    --accent-purple: #8b5cf6; /* Violet 500 */
    --accent-pink: #ec4899;   /* Pink 500 */
    --accent-blue: #3b82f6;   /* Blue 500 */

    /* Neutral Colors */
    --dark-900: #111827; /* Gray 900 */
    --dark-800: #1f2937; /* Gray 800 */
    --dark-700: #374151; /* Gray 700 */
    --dark-600: #4b5563; /* Gray 600 */
    --dark-500: #6b7280; /* Gray 500 */
    --dark-400: #9ca3af; /* Gray 400 */
    --dark-300: #d1d5db; /* Gray 300 */
    --dark-200: #e5e7eb; /* Gray 200 */
    --dark-100: #f3f4f6; /* Gray 100 */
    --dark-50:  #f9fafb; /* Gray 50 */

    /* Functional Colors */
    --background: #ffffff;
    --background-alt: #f9fafb;
    --surface: #ffffff;
    --border: #e5e7eb;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-tertiary: #9ca3af;
    --text-light: #f9fafb;
    --text-on-primary: #ffffff;

    /* Status Colors */
    --error: #ef4444;
    --error-bg: #fee2e2;
    --success: #10b981;
    --success-bg: #d1fae5;

    /* Spacing */
    --container-max-width: 1280px;
    --container-padding: 2rem;
    --header-height: 80px;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --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-colored: 0 10px 25px -5px rgba(79, 70, 229, 0.4); /* Indigo shadow */

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    height: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text-secondary);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; letter-spacing: -0.025em; }
h2 { font-size: 2.25rem; letter-spacing: -0.025em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================================
   Layout Utilities
   ========================================= */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background-color: var(--background-alt);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mb-8 { margin-bottom: 4rem; }

.mt-4 { margin-top: 1.5rem; }

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
}

/* Dark mode navbar for specific pages if needed, 
   but we'll default to light/clean for modern look 
   or stick to dark if that's the brand preference. 
   Let's go with a Modern Dark/Glassy Navbar to match the "Trading" vibe */
.navbar {
    background: rgba(17, 24, 39, 0.85); /* Dark base */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.navbar.scrolled {
    background: rgba(17, 24, 39, 0.95);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.nav-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    /* Invert for dark navbar */
    filter: brightness(0) invert(1); 
}

.nav-brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: -0.025em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--dark-300);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: white;
}

.nav-menu a.active {
    color: white;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 1px;
}

.nav-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.2;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 6px rgba(79, 70, 229, 0.25);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(79, 70, 229, 0.35);
    color: white;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-2px);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-disabled {
    background: var(--dark-600);
    color: var(--dark-400);
    cursor: not-allowed;
    pointer-events: none;
}

.btn-trial {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.25);
}

.btn-trial:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 12px rgba(16, 185, 129, 0.35);
    color: white;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    background: var(--dark-900);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 20%, rgba(79, 70, 229, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1;
}

.hero-content {
    color: white;
}

.hero-title {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff 0%, #a5b4fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1rem;
    color: var(--dark-300);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions .btn {
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.hero-image-wrapper {
    position: relative;
    perspective: 1000px;
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-image:hover {
    transform: rotateY(0) rotateX(0) scale(1.02);
}

/* =========================================
   Page Headers (Internal Pages)
   ========================================= */
.page-header {
    background: linear-gradient(to bottom, var(--dark-800), var(--dark-700));
    color: white;
    padding: calc(var(--header-height) + 4rem) 0 4rem;
    text-align: center;
    position: relative;
}

.page-header h1 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--dark-300);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.main-content {
    padding: 4rem 0;
    flex-grow: 1;
}

/* =========================================
   Features / Content Sections
   ========================================= */
.feature-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-grid.reversed {
    direction: rtl; /* Quick hack for swapping columns, reset in children */
}

.feature-grid.reversed > * {
    direction: ltr;
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.feature-img-container {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    width: fit-content;
    isolation: isolate;
    direction: ltr;
}

.feature-img-container img,
.feature-img-container video {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-xl);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.feature-img-container img:hover {
    transform: scale(1.02);
}

/* Gradient Backgrounds for Features */
.bg-gradient-1 { background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%); }
.bg-gradient-2 { background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); }

/* =========================================
   Cards
   ========================================= */
.card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.pricing-card {
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-colored);
}

.price-tag {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1;
    margin: 0.25rem 0;
}

.price-period {
    font-size: 1rem;
    color: var(--text-tertiary);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.features-list {
    list-style: none;
    margin: 1rem 0;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.feature-icon {
    color: var(--success);
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* =========================================
   Forms
   ========================================= */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-700);
}

.form-input, .form-textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--dark-300);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.2s;
    background: var(--dark-50);
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-bg);
    background: white;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* =========================================
   Tables & Tabs (Markets)
   ========================================= */
.tabs-container {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .tabs-container {
        flex-direction: row;
        min-height: 600px;
    }
}

.nav-tabs {
    background: var(--dark-50);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

@media (min-width: 768px) {
    .nav-tabs {
        width: 250px;
        border-right: 1px solid var(--border);
        border-bottom: none;
        flex-shrink: 0;
    }
}

.nav-tab-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    border-radius: var(--radius-md);
    color: var(--dark-600);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 0.5rem;
}

.nav-tab-btn:hover {
    background: var(--dark-200);
    color: var(--dark-800);
}

.nav-tab-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow-md);
}

.tab-content {
    flex-grow: 1;
    padding: 2rem;
    overflow-x: auto;
    min-height: 550px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.table th, .table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.table th {
    background: var(--dark-50);
    color: var(--dark-800);
    font-weight: 700;
    position: sticky;
    top: 0;
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover td {
    background: var(--dark-50);
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
    background: var(--dark-900);
    color: var(--text-tertiary);
    padding: 5rem 0 2rem;
    font-size: 0.95rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-tertiary);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid var(--dark-800);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.875rem;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-grid.reversed {
        direction: ltr; /* Reset for mobile */
    }
    
    .feature-grid.reversed .feature-content {
        order: -1; /* Image first? or Content first? Usually content on top in mobile */
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(17, 24, 39, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-menu .btn {
        margin: 0.5rem 0;
        text-align: center;
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1rem;
    }

    .nav-menu .nav-btn {
        margin-left: 0;
    }

    .mobile-menu-btn { display: block; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        align-items: center;
        display: flex;
        flex-direction: column;
    }
}

/* =========================================
   Animations & Extras
   ========================================= */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Modal */
.fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.fullscreen-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.fullscreen-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

.fullscreen-modal-content img {
    max-height: 90vh;
    max-width: 90vw;
    border-radius: var(--radius-lg);
}

/* Logos Strip */
.logos-label {
    text-align: center;
    font-size: 0.75rem;
    color: var(--dark-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.logos-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.logos-strip img {
    height: 40px;
    width: auto;
}

.logos-strip .coming-soon {
    position: relative;
    opacity: 0.5;
    filter: grayscale(1);
}

.logos-strip .coming-soon::after {
    content: 'Coming Soon';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.65rem;
    color: var(--dark-400);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =========================================
   Supported Platforms - Infinite Scroll
   ========================================= */
.platforms-scroll {
    width: 100%;
    padding: 2rem 0 1.5rem;
    overflow: hidden;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
    background: var(--dark-900);
}

.platforms-scroll::before,
.platforms-scroll::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.platforms-scroll::before {
    left: 0;
    background: linear-gradient(to right, rgba(17, 24, 39, 1) 0%, rgba(17, 24, 39, 0) 100%);
}

.platforms-scroll::after {
    right: 0;
    background: linear-gradient(to left, rgba(17, 24, 39, 1) 0%, rgba(17, 24, 39, 0) 100%);
}

.platforms-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.platforms-title h3 {
    color: var(--dark-400);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.scroll-container {
    display: flex;
    overflow: hidden;
    position: relative;
}

.scroll-track {
    display: flex;
    animation: scroll 25s linear infinite;
    gap: 5rem;
    padding: 0 2.5rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.platform-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    pointer-events: none;
}

.platform-logo img {
    height: 38px;
    width: auto;
    max-width: none;
    will-change: filter, opacity;
}

@media (max-width: 768px) {
    .platforms-scroll {
        padding: 2rem 0 1rem;
    }

    .platforms-scroll::before,
    .platforms-scroll::after {
        width: 80px;
    }

    .scroll-track {
        gap: 3rem;
    }

    .platform-logo {
        padding: 0.5rem 1rem;
    }

    .platform-logo img {
        height: 35px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
}