/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: rgba(68, 241, 166, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000403;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(68, 241, 166, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
    background: rgba(68, 241, 166, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(68, 241, 166, 0.3);
    color: #000403;
}

.back-to-top .arrow-up {
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .back-to-top .arrow-up {
        font-size: 1.3rem;
    }
}

html {
    background-color: #0a0a0a;
    font-size: 16px;
    min-width: 320px;
    overflow-x: hidden;
    overflow-y: scroll;
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    min-height: 100vh;
}

@font-face {
    font-family: "PT Mono";
    src: local("PT Mono"), local("PTMono-Regular"), url(/assets/fonts/PTMono-Regular.79c58af.woff2) format("woff2");
    font-display: swap;
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "PT Mono";
    src: local("PT Mono Bold"), local("PTMono-Bold"), url(/assets/fonts/PTMono-Bold.bb387bb.woff2) format("woff2");
    font-display: swap;
    font-weight: 700;
    font-style: normal;
}

/* Layout */
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: radial-gradient(ellipse at top, #1a1a1a 0%, #0a0a0a 50%, #000000 100%);
    background-attachment: fixed;
    max-width: 100vw;
    overflow-x: hidden;
    position: relative;
}

.wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(68, 241, 166, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(68, 241, 166, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* Page container for overall layout control */
.page-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    padding: 0 2rem;
    backdrop-filter: blur(0.5px);
}

.main-content {
    flex: 1;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Wide container with reasonable max-width */
.container-wide {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Fluid container with side margins */
.container-fluid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 3rem 0;
}

/* Typography */
.title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.title.is-primary {
    background: linear-gradient(135deg, #44f1a6 0%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    color: #a1a1aa;
    line-height: 1.4;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.subtitle.is-large {
    font-size: 1rem;
    font-weight: 500;
    color: #d4d4d8;
    margin-bottom: 0.75rem;
}

/* Links */
a {
    color: #44f1a6;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    color: #2dd4bf;
    text-shadow: 0 0 8px rgba(68, 241, 166, 0.3);
}

strong {
    background: linear-gradient(135deg, #44f1a6 0%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Grid system */
.columns {
    display: flex;
    flex-wrap: wrap;
    margin: -1rem;
    gap: 0;
}

.column {
    flex: 1;
    padding: 1rem;
    min-width: 0; /* Prevent flex items from overflowing */
}

.is-half {
    flex: 0 0 50%;
}

.is-one-third {
    flex: 0 0 33.333%;
}

.is-two-thirds {
    flex: 0 0 66.666%;
}

.is-one-quarter {
    flex: 0 0 25%;
}

.is-three-quarters {
    flex: 0 0 75%;
}

.is-vcentered {
    align-items: center;
}

.is-centered {
    justify-content: center;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    letter-spacing: -0.01em;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s;
}

.button:hover::before {
    left: 100%;
}

.button .icon + span,
.button span + .icon {
    margin-left: 0.5rem;
}

.button .icon:first-child {
    margin-left: 0;
    margin-right: 0.5rem;
}

.button.is-primary {
    background: linear-gradient(135deg, #44f1a6 0%, #2dd4bf 100%);
    color: #000000;
    box-shadow: 0 4px 20px rgba(68, 241, 166, 0.3);
}

.button.is-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(68, 241, 166, 0.4);
}

.button.is-outlined {
    background: rgba(10, 10, 10, 0.8);
    border-color: #44f1a6;
    color: #44f1a6;
    backdrop-filter: blur(10px);
}

.button.is-outlined:hover {
    background: linear-gradient(135deg, #44f1a6 0%, #2dd4bf 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(68, 241, 166, 0.3);
}



.button.is-icon {
    width: 3.5rem;
    height: 3.5rem;
    padding: 0;
    background-color: transparent;
    border: none;
    color: #b5b5b5;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.button.is-icon .icon {
    color: #b5b5b5;
}

.button.is-icon .icon i {
    width: 1.5rem;
    height: 1.5rem;
    background-color: #b5b5b5;
}

.button.is-icon:hover {
    color: #44f1a6;
}

.button.is-icon:hover .icon i {
    background-color: #44f1a6;
}

.buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.buttons.is-centered-mobile {
    justify-content: center;
}

/* Field styles */
.field {
    font-size: 0.813rem;
    line-height: 1.5rem;
}

.field:not(:last-child) {
    margin-bottom: 0.75rem;
}

.field ul a {
    word-break: break-word;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.8);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(68, 241, 166, 0.1);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo {
    height: 36px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(68, 241, 166, 0.3));
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu li {
    margin: 0;
    padding: 0;
}

.navbar-item {
    color: #d4d4d8;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.875rem;
    font-weight: 500;
    display: block;
    position: relative;
}

.navbar-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #44f1a6 0%, #2dd4bf 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.navbar-item:hover {
    color: #44f1a6;
    background-color: rgba(68, 241, 166, 0.05);
    transform: translateY(-1px);
}

.navbar-item:hover::before {
    width: 80%;
}

/* Navbar Language Selector */
.navbar-language-selector {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-language-selector .dropdown {
    position: relative;
    display: inline-block;
}

.navbar-language-selector .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid rgba(68, 241, 166, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    min-width: 120px;
    z-index: 1000;
}

.navbar-language-selector .dropdown-content {
    padding: 0.5rem 0;
}

.navbar-language-selector .dropdown-item {
    padding: 0.5rem 1rem;
    color: #d4d4d8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.navbar-language-selector .dropdown-item:hover {
    background-color: rgba(68, 241, 166, 0.1);
    color: #44f1a6;
}

.navbar-language-selector .button.is-icon {
    background: transparent;
    border: none;
    padding: 0.6rem;
    transition: all 0.3s ease;
    min-width: 40px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-language-selector .button.is-icon:hover {
    background: rgba(68, 241, 166, 0.1);
    border-radius: 6px;
    transform: translateY(-1px);
}

/* Larger flag icon for navbar */
.navbar-language-selector 

/* Sections */
.tornado-section {
    padding: 1rem 0;
    position: relative;
}

.tornado-section.main {
    padding: 1rem 0;
    min-height: auto;
    display: flex;
    align-items: center;
    background: radial-gradient(ellipse at center, rgba(68, 241, 166, 0.02) 0%, transparent 70%);
}

/* Reduce Nova section spacing */
/* .tornado-section.nova {
    padding: 1rem 0;
} */

/* Desktop optimizations for compact layout */
@media (min-width: 1024px) {
    .tornado-section.main {
        padding: 1.5rem 0;
        min-height: 45vh;
    }

    /* .tornado-section.nova {
        padding: 1.5rem 0;
    } */

    .tornado-section {
        padding: 1.5rem 0;
    }

    .tornado-section + .tornado-section {
        padding-top: 1.5rem;
    }

    /* Compact title and subtitle spacing on desktop */
    .tornado-section.main h1 {
        margin-bottom: 0.75rem !important;
    }

    /* .tornado-section.nova h2 {
        margin-bottom: 0.75rem !important;
    } */

    .subtitle.is-large {
        margin-bottom: 1rem !important;
    }
}

/* Images */
.image img {
    max-width: 100%;
    height: auto;
}

/* Center images in nova section */
/* .nova .image {
    text-align: center;
}

.nova .image img {
    margin: 0 auto;
    display: block;
    max-width: 200px;
}

/* Reduce spacing between nova image and text */
/* .nova .columns {
    gap: 1rem;
}

.nova .column {
    padding: 0.5rem;
} */

/* Optimize main section image size */
.tornado-section.main .image img {
    max-width: 250px;
    margin: 0 auto;
    display: block;
}

/* Icons */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1rem;
    width: 1rem;
}

.icon.is-small {
    height: 1rem;
    width: 1rem;
}

.icon.is-64px {
    height: 4rem;
    width: 4rem;
}

/* Tornado icon font system */
.trnd {
    height: 1rem;
    width: 1rem;
    display: inline-block;
    background-color: currentColor;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

/* Ensure icons inherit color properly */
.icon .trnd {
    background-color: currentColor;
}

.trnd.trnd-24px {
    height: 1.5rem;
    width: 1.5rem;
}

.stat-box .trnd.trnd-24px {
    height: 2rem;
    width: 2rem;
}

.trnd.trnd-48px {
    height: 3rem;
    width: 3rem;
}

.trnd.trnd-64px {
    height: 4rem;
    width: 4rem;
}

/* Icon definitions */
.trnd-tornado {
    -webkit-mask-image: url(/assets/img/logo.538a65e.svg);
    mask-image: url(/assets/img/logo.538a65e.svg);
}

.trnd-chevron-right {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTYgMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02IDEyTDEwIDhMNiA0IiBzdHJva2U9IiM0NEYxQTYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTYgMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02IDEyTDEwIDhMNiA0IiBzdHJva2U9IiM0NEYxQTYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPgo=);
}

.trnd-plus {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTggMUM4IDAuNDQ3NzE1IDcuNTUyMjggMCA3IDBDNi40NDc3MiAwIDYgMC40NDc3MTYgNiAxVjZIMUMwLjQ0NzcxNSA2IDAgNi40NDc3MiAwIDdDMCA3LjU1MjI4IDAuNDQ3NzE2IDggMSA4SDZWMTNDNiAxMy41NTIzIDYuNDQ3NzEgMTQgNyAxNEM3LjU1MjI4IDE0IDggMTMuNTUyMyA4IDEzVjhIMTNDMTMuNTUyMyA4IDE0IDcuNTUyMjggMTQgN0MxNCA2LjQ0NzcyIDEzLjU1MjMgNiAxMyA2SDhWMVoiIGZpbGw9IiM0NEYxQTYiLz48L3N2Zz4K);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZD0iTTggMUM4IDAuNDQ3NzE1IDcuNTUyMjggMCA3IDBDNi40NDc3MiAwIDYgMC40NDc3MTYgNiAxVjZIMUMwLjQ0NzcxNSA2IDAgNi40NDc3MiAwIDdDMCA3LjU1MjI4IDAuNDQ3NzE2IDggMSA4SDZWMTNDNiAxMy41NTIzIDYuNDQ3NzEgMTQgNyAxNEM3LjU1MjI4IDE0IDggMTMuNTUyMyA4IDEzVjhIMTNDMTMuNTUyMyA4IDE0IDcuNTUyMjggMTQgN0MxNCA2LjQ0NzcyIDEzLjU1MjMgNiAxMyA2SDhWMVoiIGZpbGw9IiM0NEYxQTYiLz48L3N2Zz4K);
}

.trnd-minus {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iIzQ0RjFBNiIgZD0iTTEsNmgxMmMwLjYsMCwxLDAuNCwxLDFsMCwwYzAsMC42LTAuNCwxLTEsMUgxQzAuNCw4LDAsNy42LDAsN2wwLDBDMCw2LjQsMC40LDYsMSw2eiIvPjwvc3ZnPgo=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxNCIgdmlld0JveD0iMCAwIDE0IDE0Ij48cGF0aCBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGNsaXAtcnVsZT0iZXZlbm9kZCIgZmlsbD0iIzQ0RjFBNiIgZD0iTTEsNmgxMmMwLjYsMCwxLDAuNCwxLDFsMCwwYzAsMC42LTAuNCwxLTEsMUgxQzAuNCw4LDAsNy42LDAsN2wwLDBDMCw2LjQsMC40LDYsMSw2eiIvPjwvc3ZnPgo=);
}

/* Statistics icons */
.trnd-eth {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIxIiB3aWR0aD0iMTMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTAgMTEuMDM2IDYuNTEzLTEwLjM5OSA2LjQ4NyAxMC4zNDgtNi40ODcgMy43MjF6bTEzIC43OS02LjQ4NyA4LjgxOC02LjUxMy04Ljc2NyA2LjUxMyAzLjY3eiIgZmlsbD0iIzQ0RjFBNiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+Cg==);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjIxIiB3aWR0aD0iMTMiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0ibTAgMTEuMDM2IDYuNTEzLTEwLjM5OSA2LjQ4NyAxMC4zNDgtNi40ODcgMy43MjF6bTEzIC43OS02LjQ4NyA4LjgxOC02LjUxMy04Ljc2NyA2LjUxMyAzLjY3eiIgZmlsbD0iIzQ0RjFBNiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+Cg==);
}

.trnd-user {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzEiIHZpZXdCb3g9IjAgMCAzMCAzMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS42NjggMTcuMzYzMUM1LjM4NTkgMTguNzczMSAxIDI0LjE0ODYgMSAzMUgwQzAgMjQuMDg5OCA0LjE5NjExIDE4LjU2MTYgMTAuMzE2NyAxNi42ODdDNy43Mjc5OSAxNS4xMDY0IDYgMTIuMjU1IDYgOUM2IDQuMDI5NDQgMTAuMDI5NCAwIDE1IDBDMTkuOTcwNiAwIDI0IDQuMDI5NDQgMjQgOUMyNCAxMi4yNTUgMjIuMjcyIDE1LjEwNjQgMTkuNjgzMyAxNi42ODdDMjUuODAzOSAxOC41NjE2IDMwIDI0LjA4OTggMzAgMzFIMjlDMjkgMjQuMTQ4NiAyNC42MTQxIDE4Ljc3MzEgMTguMzMyIDE3LjM2MzFDMTcuMzAxNSAxNy43NzQgMTYuMTc3MSAxOCAxNSAxOEMxMy44MjI5IDE4IDEyLjY5ODUgMTcuNzc0IDExLjY2OCAxNy4zNjMxWk0xOC4yMzM4IDE2LjMxOTVDMjEuMDQxMiAxNS4wNzczIDIzIDEyLjI2NzQgMjMgOUMyMyA0LjU4MTcyIDE5LjQxODMgMSAxNSAxQzEwLjU4MTcgMSA3IDQuNTgxNzIgNyA5QzcgMTIuMjY3NCA4Ljk1ODgzIDE1LjA3NzMgMTEuNzY2MiAxNi4zMTk1QzEyLjc1NSAxNi43NTcgMTMuODQ5MSAxNyAxNSAxN0MxNi4xNTA5IDE3IDE3LjI0NSAxNi43NTcgMTguMjMzOCAxNi4zMTk1WiIgZmlsbD0iIzQ0RjFBNiIvPgo8L3N2Zz4K);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzEiIHZpZXdCb3g9IjAgMCAzMCAzMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS42NjggMTcuMzYzMUM1LjM4NTkgMTguNzczMSAxIDI0LjE0ODYgMSAzMUgwQzAgMjQuMDg5OCA0LjE5NjExIDE4LjU2MTYgMTAuMzE2NyAxNi42ODdDNy43Mjc5OSAxNS4xMDY0IDYgMTIuMjU1IDYgOUM2IDQuMDI5NDQgMTAuMDI5NCAwIDE1IDBDMTkuOTcwNiAwIDI0IDQuMDI5NDQgMjQgOUMyNCAxMi4yNTUgMjIuMjcyIDE1LjEwNjQgMTkuNjgzMyAxNi42ODdDMjUuODAzOSAxOC41NjE2IDMwIDI0LjA4OTggMzAgMzFIMjlDMjkgMjQuMTQ4NiAyNC42MTQxIDE4Ljc3MzEgMTguMzMyIDE3LjM2MzFDMTcuMzAxNSAxNy43NzQgMTYuMTc3MSAxOCAxNSAxOEMxMy44MjI5IDE4IDEyLjY5ODUgMTcuNzc0IDExLjY2OCAxNy4zNjMxWk0xOC4yMzM4IDE2LjMxOTVDMjEuMDQxMiAxNS4wNzczIDIzIDEyLjI2NzQgMjMgOUMyMyA0LjU4MTcyIDE5LjQxODMgMSAxNSAxQzEwLjU4MTcgMSA3IDQuNTgxNzIgNyA5QzcgMTIuMjY3NCA4Ljk1ODgzIDE1LjA3NzMgMTEuNzY2MiAxNi4zMTk1QzEyLjc1NSAxNi43NTcgMTMuODQ5MSAxNyAxNSAxN0MxNi4xNTA5IDE3IDE3LjI0NSAxNi43NTcgMTguMjMzOCAxNi4zMTk1WiIgZmlsbD0iIzQ0RjFBNiIvPgo8L3N2Zz4K);
}

.trnd-deposit {
    -webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAxOCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3LjUgMTVDMTcuNSAxOS45NzA2IDEzLjk3MDYgMjQgOSAyNEM0LjAyOTQ0IDI0IDAuNSAxOS45NzA2IDAuNSAxNU0xNy41IDE1QzE3LjUgMTEuMDY4NSAxNS41MTM2IDguMjI1NzEgMTIgN00xNy41IDE1VjE4TTAuNSAxNUMwLjUgMTEuMDY4NSAyLjQ4NjQxIDguMjI1NzEgNiA3TTAuNSAxNVYxOE0xNy41IDE4QzE3LjUgMjIuOTcwNiAxMy45NzA2IDI2LjUgOSAyNi41QzQuMDI5NDQgMjYuNSAwLjUgMjIuOTcwNiAwLjUgMThNMTcuNSAxOFYyMUMxNy41IDI1Ljk3MDYgMTMuOTcwNiAyOS41IDkgMjkuNUM0LjAyOTQ0IDI5LjUgMC41IDI1Ljk3MDYgMC41IDIxVjE4TTkgMFYxOU05IDE5TDEzIDE1TTkgMTlMNSAxNSIgc3Ryb2tlPSIjNDRGMUE2Ii8+Cjwvc3ZnPgo=);
    mask-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAxOCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE3LjUgMTVDMTcuNSAxOS45NzA2IDEzLjk3MDYgMjQgOSAyNEM0LjAyOTQ0IDI0IDAuNSAxOS45NzA2IDAuNSAxNU0xNy41IDE1QzE3LjUgMTEuMDY4NSAxNS41MTM2IDguMjI1NzEgMTIgN00xNy41IDE1VjE4TTAuNSAxNUMwLjUgMTEuMDY4NSAyLjQ4NjQxIDguMjI1NzEgNiA3TTAuNSAxNVYxOE0xNy41IDE4QzE3LjUgMjIuOTcwNiAxMy45NzA2IDI2LjUgOSAyNi41QzQuMDI5NDQgMjYuNSAwLjUgMjIuOTcwNiAwLjUgMThNMTcuNSAxOFYyMUMxNy41IDI1Ljk3MDYgMTMuOTcwNiAyOS41IDkgMjkuNUM0LjAyOTQ0IDI5LjUgMC41IDI1Ljk3MDYgMC41IDIxVjE4TTkgMFYxOU05IDE5TDEzIDE1TTkgMTlMNSAxNSIgc3Ryb2tlPSIjNDRGMUE2Ii8+Cjwvc3ZnPgo=);
}

/* Social media icons */
.trnd-stats {
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 0a1 1 0 00-1 1v18a1 1 0 102 0V1a1 1 0 00-1-1zM8 6a1 1 0 112 0v13a1 1 0 11-2 0V6zM5 8a1 1 0 00-1 1v10a1 1 0 102 0V9a1 1 0 00-1-1zM0 13a1 1 0 112 0v6a1 1 0 11-2 0v-6zM0 23a1 1 0 011-1h20a1 1 0 110 2H1a1 1 0 01-1-1zM16 9a1 1 0 112 0v10a1 1 0 11-2 0V9zM21 5a1 1 0 00-1 1v13a1 1 0 102 0V6a1 1 0 00-1-1z' fill='%23838BAD'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='22' height='24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 0a1 1 0 00-1 1v18a1 1 0 102 0V1a1 1 0 00-1-1zM8 6a1 1 0 112 0v13a1 1 0 11-2 0V6zM5 8a1 1 0 00-1 1v10a1 1 0 102 0V9a1 1 0 00-1-1zM0 13a1 1 0 112 0v6a1 1 0 11-2 0v-6zM0 23a1 1 0 011-1h20a1 1 0 110 2H1a1 1 0 01-1-1zM16 9a1 1 0 112 0v10a1 1 0 11-2 0V9zM21 5a1 1 0 00-1 1v13a1 1 0 102 0V6a1 1 0 00-1-1z' fill='%23838BAD'/%3E%3C/svg%3E");
}

.trnd-discourse {
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath d='M225.9 32C103.3 32 0 130.5 0 252.1 0 256 .1 480 .1 480l225.8-.2c122.7 0 222.1-102.3 222.1-223.9C448 134.3 348.6 32 225.9 32zM224 384c-19.4 0-37.9-4.3-54.4-12.1L88.5 392l22.9-75c-9.8-18.1-15.4-38.9-15.4-61 0-70.7 57.3-128 128-128s128 57.3 128 128-57.3 128-128 128z'/%3E%3C/svg%3E");
}

.trnd-medium {
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M71.5 142.3c.6-5.9-1.7-11.8-6.1-15.8L20.3 72.1V64h140.2l108.4 237.7L364.2 64h133.7v8.1l-38.6 37c-3.3 2.5-5 6.7-4.3 10.8v272c-.7 4.1 1 8.3 4.3 10.8l37.7 37v8.1H307.3v-8.1l39.1-37.9c3.8-3.8 3.8-5 3.8-10.8V171.2L241.5 447.1h-14.7L100.4 171.2v184.9c-1.1 7.8 1.5 15.6 7 21.2l50.8 61.6v8.1h-144v-8L65 377.3c5.4-5.6 7.9-13.5 6.5-21.2V142.3z'/%3E%3C/svg%3E");
}

.trnd-twitter {
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 2.304c-.892.39-1.843.65-2.835.775A4.884 4.884 0 0023.33.365a9.845 9.845 0 01-3.12 1.189A4.935 4.935 0 0016.614 0 4.914 4.914 0 0011.7 4.911c0 .39.033.764.114 1.12C7.721 5.83 4.103 3.875 1.67.895a4.935 4.935 0 00-.673 2.482c0 1.7.877 3.208 2.185 4.08A4.867 4.867 0 01.96 6.853v.054c0 2.386 1.706 4.367 3.942 4.824-.4.11-.837.162-1.29.162-.315 0-.633-.018-.932-.084.638 1.944 2.447 3.374 4.598 3.42a9.9 9.9 0 01-6.1 2.094c-.404 0-.791-.018-1.178-.067a13.873 13.873 0 007.548 2.203c9.054 0 14.004-7.484 14.004-13.971a12.5 12.5 0 00-.018-.635A9.804 9.804 0 0024 2.303z' fill='%23838BAD'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M24 2.304c-.892.39-1.843.65-2.835.775A4.884 4.884 0 0023.33.365a9.845 9.845 0 01-3.12 1.189A4.935 4.935 0 0016.614 0 4.914 4.914 0 0011.7 4.911c0 .39.033.764.114 1.12C7.721 5.83 4.103 3.875 1.67.895a4.935 4.935 0 00-.673 2.482c0 1.7.877 3.208 2.185 4.08A4.867 4.867 0 01.96 6.853v.054c0 2.386 1.706 4.367 3.942 4.824-.4.11-.837.162-1.29.162-.315 0-.633-.018-.932-.084.638 1.944 2.447 3.374 4.598 3.42a9.9 9.9 0 01-6.1 2.094c-.404 0-.791-.018-1.178-.067a13.873 13.873 0 007.548 2.203c9.054 0 14.004-7.484 14.004-13.971a12.5 12.5 0 00-.018-.635A9.804 9.804 0 0024 2.303z' fill='%23838BAD'/%3E%3C/svg%3E");
}

.trnd-telegram {
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.417 13.181l-.397 5.584c.568 0 .814-.244 1.11-.537l2.662-2.545 5.519 4.041c1.012.564 1.725.267 1.998-.93L23.93 1.82c.322-1.497-.54-2.082-1.526-1.715L1.115 8.257C-.34 8.821-.318 9.631.866 9.998l5.443 1.693 12.644-7.91c.595-.395 1.136-.177.69.217L9.418 13.181z' fill='%23838BAD'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9.417 13.181l-.397 5.584c.568 0 .814-.244 1.11-.537l2.662-2.545 5.519 4.041c1.012.564 1.725.267 1.998-.93L23.93 1.82c.322-1.497-.54-2.082-1.526-1.715L1.115 8.257C-.34 8.821-.318 9.631.866 9.998l5.443 1.693 12.644-7.91c.595-.395 1.136-.177.69.217L9.418 13.181z' fill='%23838BAD'/%3E%3C/svg%3E");
}

.trnd-github {
    -webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C5.37 0 0 5.28 0 11.792c0 5.211 3.438 9.63 8.205 11.188.6.111.82-.254.82-.567 0-.28-.01-1.022-.015-2.005-3.338.711-4.042-1.582-4.042-1.582-.546-1.361-1.335-1.725-1.335-1.725-1.087-.731.084-.716.084-.716 1.205.082 1.838 1.215 1.838 1.215 1.07 1.803 2.809 1.282 3.495.981.108-.763.417-1.282.76-1.577-2.665-.295-5.466-1.309-5.466-5.827 0-1.287.465-2.339 1.235-3.164-.135-.298-.54-1.497.105-3.121 0 0 1.005-.316 3.3 1.209.96-.262 1.98-.392 3-.398 1.02.006 2.04.136 3 .398 2.28-1.525 3.285-1.209 3.285-1.209.645 1.624.24 2.823.12 3.121.765.825 1.23 1.877 1.23 3.164 0 4.53-2.805 5.527-5.475 5.817.42.354.81 1.077.81 2.182 0 1.578-.015 2.846-.015 3.229 0 .309.21.678.825.56C20.565 21.417 24 16.995 24 11.792 24 5.28 18.627 0 12 0z' fill='%23838BAD'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C5.37 0 0 5.28 0 11.792c0 5.211 3.438 9.63 8.205 11.188.6.111.82-.254.82-.567 0-.28-.01-1.022-.015-2.005-3.338.711-4.042-1.582-4.042-1.582-.546-1.361-1.335-1.725-1.335-1.725-1.087-.731.084-.716.084-.716 1.205.082 1.838 1.215 1.838 1.215 1.07 1.803 2.809 1.282 3.495.981.108-.763.417-1.282.76-1.577-2.665-.295-5.466-1.309-5.466-5.827 0-1.287.465-2.339 1.235-3.164-.135-.298-.54-1.497.105-3.121 0 0 1.005-.316 3.3 1.209.96-.262 1.98-.392 3-.398 1.02.006 2.04.136 3 .398 2.28-1.525 3.285-1.209 3.285-1.209.645 1.624.24 2.823.12 3.121.765.825 1.23 1.877 1.23 3.164 0 4.53-2.805 5.527-5.475 5.817.42.354.81 1.077.81 2.182 0 1.578-.015 2.846-.015 3.229 0 .309.21.678.825.56C20.565 21.417 24 16.995 24 11.792 24 5.28 18.627 0 12 0z' fill='%23838BAD'/%3E%3C/svg%3E");
}

/* Flag icons removed - using text-only design */
/* Footer specific styles */
.footer .dropdown {
    position: relative;
    display: inline-block;
}

.footer .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 20;
    background-color: #333;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    min-width: 120px;
}

.footer .dropdown-content {
    padding: 0.5rem 0;
}

.footer .dropdown-item {
    padding: 0.5rem 1rem;
    color: #b5b5b5;
    cursor: pointer;
}

.footer .dropdown-item:hover {
    background-color: #444;
    color: #44f1a6;
}

.footer .background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

/* Network icons */
.network {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem 0.75rem;
    border-radius: 10px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(68, 241, 166, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.network::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(68, 241, 166, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.network:hover::before {
    opacity: 1;
}

.network:hover {
    background: linear-gradient(145deg, rgba(68, 241, 166, 0.08), rgba(68, 241, 166, 0.02));
    border-color: rgba(68, 241, 166, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(68, 241, 166, 0.1);
}

.network-icon {
    margin-bottom: 0.75rem;
    transition: transform 0.4s ease;
}

.network:hover .network-icon {
    transform: scale(1.05);
}

.network-name {
    font-size: 0.8rem;
    color: #44f1a6;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Networks grid layout */
.networks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

/* Network icon backgrounds */
.network i {
    display: block;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.network.ethereum i { background-image: url(/assets/img/ethereum.36f2977.svg); }
.network.bsc i { background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNjQgNjQiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xOC4wODQxIDIyLjY4NzFMMzIuMDYwMiA4LjcwNzJMNDYuMDM2MyAyMi42ODcxTDQxLjM3NjkgMjcuMzQ2NEwzMi40MTM2IDE4LjM4N0wzMi4wNjAyIDE4LjAzMzdMMzEuNzA2NyAxOC4zODdMMjIuNzQzNCAyNy4zNDY0TDE4LjA4NDEgMjIuNjg3MVpNMzEuNzA2NyA0NS42MTNMMzIuMDYwMiA0NS45NjYzTDMyLjQxMzYgNDUuNjEzTDQxLjM3NjkgMzYuNjUzNkw0Ni4wMzYzIDQxLjMxMjlMMzIuMDYwMiA1NS4yOTI4TDE4LjA4NDEgNDEuMzEyOUwyMi43NDM0IDM2LjY1MzZMMzEuNzA2NyA0NS42MTNaTTguNzA3MzcgMzIuMDE2M0wxMy4zNjYzIDI3LjM2NDNMMTguMDI1MiAzMi4wMTYzTDEzLjM2NjMgMzYuNjc1Mkw4LjcwNzM3IDMyLjAxNjNaTTM2LjY1ODkgMzIuMDE2M0wzMiAzNi42NzUyTDI3LjM0MTEgMzIuMDE2M0wzMiAyNy4zNjQzTDM2LjY1ODkgMzIuMDE2M1pNNTAuNjMzNyAyNy4zNTY4TDU1LjI5MjkgMzIuMDE2TDUwLjYzMzcgMzYuNjc1Mkw0NS45NzQ1IDMyLjAxNkw1MC42MzM3IDI3LjM1NjhaIiBmaWxsPSIjMUQzRjMwIiBzdHJva2U9IiM0NEYxQTYiLz4KPC9zdmc+Cg==); }
.network.polygon i { background-image: url(/assets/img/polygon.fb520be.svg); }
.network.optimism i { background-image: url(/assets/img/optimism.d90cdda.svg); }
.network.arbitrum i { background-image: url(/assets/img/arbitrum.d26664e.svg); }
.network.gnosis i { background-image: url(/assets/img/gnosis.11e7073.svg); }
.network.avalanche i { background-image: url(/assets/img/avalanche.962c821.svg); }
.network.goerli i { background-image: url(/assets/img/goerli.e159e82.svg); }

/* Stats */
.stats {
    margin: 2.5rem 0;
}

.stats.columns {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

.is-justify-content-space-between {
    justify-content: space-between;
}

.stats .column.is-block {
    flex: 1;
}

.stat-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border-radius: 10px;
    border: 1px solid rgba(68, 241, 166, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 75px;
    width: 100%;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(68, 241, 166, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box:hover {
    background: linear-gradient(145deg, rgba(68, 241, 166, 0.08), rgba(68, 241, 166, 0.02));
    border-color: rgba(68, 241, 166, 0.4);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(68, 241, 166, 0.1);
}

.stat-box .stat-content {
    flex: 1;
    text-align: left;
    z-index: 1;
    position: relative;
}

.stat-box .icon {
    margin-left: 1rem;
    flex-shrink: 0;
    z-index: 1;
    position: relative;
}

.stat-box .icon i {
    color: #44f1a6;
    filter: drop-shadow(0 0 6px rgba(68, 241, 166, 0.3));
}

.stat-box .value {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #44f1a6 0%, #2dd4bf 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.2rem 0;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.02em;
}

.stat-box .label {
    color: #a1a1aa;
    font-size: 0.75rem;
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.005em;
}

/* FAQ */
.question {
    border-bottom: 1px solid #333;
    margin-bottom: 1rem;
}

.question-title {
    padding: 1rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.question-answer {
    padding: 0 0 1rem 0;
    display: none;
}

.question-answer.open {
    display: block;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 0 3rem 0;
    margin-top: auto;
    font-size: 0.75rem;
    border-top: 1px solid rgba(68, 241, 166, 0.1);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center top, rgba(68, 241, 166, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.footer a,
.footer a:hover {
    color: #a1a1aa;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #44f1a6;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.footer-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.language-divider {
    width: 1px;
    height: 2rem;
    background: linear-gradient(to bottom, transparent, rgba(68, 241, 166, 0.3), transparent);
    margin: 0 0.75rem;
}



/* Products */
.product {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    text-align: center;
    border: 1px solid rgba(68, 241, 166, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(68, 241, 166, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product:hover::before {
    opacity: 1;
}

.product:hover {
    background: linear-gradient(145deg, rgba(68, 241, 166, 0.08), rgba(68, 241, 166, 0.02));
    border-color: rgba(68, 241, 166, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(68, 241, 166, 0.1);
}

.product-body {
    margin-top: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
    position: relative;
}

.product .image {
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
    background: transparent !important;
}

.product figure.image {
    background: transparent !important;
}

.product .image img {
    max-width: 80px;
    margin: 0 auto;
    filter: drop-shadow(0 0 8px rgba(68, 241, 166, 0.2));
    transition: transform 0.4s ease;
    background: transparent !important;
    mix-blend-mode: multiply;
}

.product:hover .image img {
    transform: scale(1.05);
}

.product .title {
    margin-bottom: 0.75rem;
    z-index: 1;
    position: relative;
}

.product .subtitle {
    margin-bottom: 1.25rem;
    flex: 1;
    z-index: 1;
    position: relative;
}

.product a {
    margin-top: auto;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(68, 241, 166, 0.15), rgba(68, 241, 166, 0.05));
    color: #44f1a6;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    border: 1px solid rgba(68, 241, 166, 0.2);
    z-index: 1;
    position: relative;
    letter-spacing: -0.01em;
    font-size: 0.875rem;
}

.product a:hover {
    background: linear-gradient(135deg, #44f1a6 0%, #2dd4bf 100%);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 241, 166, 0.3);
}

/* Hexagon status (simplified) */
.hexagon-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.hex {
    background-color: rgba(68, 241, 166, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #44f1a6;
    text-align: center;
}

/* Work section background */
.work {
    height: 200px;
    background-image: url(/assets/img/work.8855c46.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin: 2rem 0;
}

/* Text improvements */
p {
    line-height: 1.6;
}

/* Section spacing */
.tornado-section + .tornado-section {
    border-top: 1px solid rgba(68, 241, 166, 0.1);
    padding-top: 3rem;
}

/* Better spacing for large screens */
@media (min-width: 1200px) {
    .tornado-section + .tornado-section {
        padding-top: 2rem;
    }

    .tornado-section.main .columns {
        align-items: center;
        min-height: 40vh;
    }

    /* Ensure proper side margins on large screens */
    body {
        margin: 0;
        padding: 0;
    }

    .page-container {
        box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    }
}

/* Visual improvements for content spacing */
.content-spacing {
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 768px) {
    .content-spacing {
        padding: 0 2rem;
    }
}

@media (min-width: 1200px) {
    .content-spacing {
        padding: 0 3rem;
    }
}

/* Hover effects and animations */
.network {
    transition: transform 0.2s ease;
}

.network:hover {
    transform: translateY(-5px);
}

.product {
    transition: all 0.2s ease;
}

.product:hover {
    transform: translateY(-2px);
    border: 1px solid rgba(68, 241, 166, 0.3);
}

/* Modern animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(68, 241, 166, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(68, 241, 166, 0.5);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.tornado-section {
    animation: fadeInUp 0.8s ease-out;
}

.tornado-section.main .column:first-child {
    animation: slideInLeft 1s ease-out 0.2s both;
}

.tornado-section.main .column:last-child {
    animation: slideInRight 1s ease-out 0.4s both;
}

.title.is-primary {
    animation: glow 3s ease-in-out infinite;
}

.tornado-section.main .image img {
    animation: float 6s ease-in-out infinite;
}

/* Scroll-triggered animations */
@media (prefers-reduced-motion: no-preference) {
    .network {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .network:nth-child(1) { animation-delay: 0.1s; }
    .network:nth-child(2) { animation-delay: 0.2s; }
    .network:nth-child(3) { animation-delay: 0.3s; }
    .network:nth-child(4) { animation-delay: 0.4s; }
    .network:nth-child(5) { animation-delay: 0.5s; }
    .network:nth-child(6) { animation-delay: 0.6s; }
    .network:nth-child(7) { animation-delay: 0.7s; }
    .network:nth-child(8) { animation-delay: 0.8s; }

    .stat-box {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .stat-box:nth-child(1) { animation-delay: 0.2s; }
    .stat-box:nth-child(2) { animation-delay: 0.4s; }
    .stat-box:nth-child(3) { animation-delay: 0.6s; }

    .product {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .product:nth-child(1) { animation-delay: 0.2s; }
    .product:nth-child(2) { animation-delay: 0.4s; }
    .product:nth-child(3) { animation-delay: 0.6s; }
    .product:nth-child(4) { animation-delay: 0.8s; }
}

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsive Design */

/* Large screens (1400px and up) */
@media (min-width: 1400px) {
    .page-container {
        max-width: 1500px;
        padding: 0 4rem;
    }

    .container {
        max-width: 1000px;
        padding: 0 4rem;
    }

    .container-wide {
        max-width: 1200px;
        padding: 0 5rem;
    }

    .container-fluid {
        max-width: 1300px;
        padding: 0 5rem;
    }

    .navbar-container {
        max-width: 1200px;
        padding: 0 5rem;
    }

    .tornado-section.main {
        min-height: 50vh;
    }

    .networks-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

/* Extra large screens (1600px and up) */
@media (min-width: 1600px) {
    .page-container {
        max-width: 1600px;
        padding: 0 6rem;
    }

    .container {
        max-width: 1000px;
        padding: 0 5rem;
    }

    .container-wide {
        max-width: 1200px;
        padding: 0 6rem;
    }

    .container-fluid {
        max-width: 1300px;
        padding: 0 6rem;
    }

    .navbar-container {
        max-width: 1200px;
        padding: 0 6rem;
    }
}

/* Ultra wide screens (1920px and up) */
@media (min-width: 1920px) {
    .page-container {
        max-width: 1700px;
        padding: 0 8rem;
    }

    .container {
        max-width: 1100px;
        padding: 0 6rem;
    }

    .container-wide {
        max-width: 1300px;
        padding: 0 8rem;
    }

    .container-fluid {
        max-width: 1400px;
        padding: 0 8rem;
    }

    .navbar-container {
        max-width: 1300px;
        padding: 0 8rem;
    }
}

/* Medium-large screens (1024px to 1399px) */
@media (max-width: 1399px) and (min-width: 1024px) {
    .page-container {
        max-width: 1300px;
        padding: 0 3rem;
    }

    .container {
        max-width: 900px;
        padding: 0 3rem;
    }

    .container-wide {
        max-width: 1000px;
        padding: 0 4rem;
    }

    .container-fluid {
        max-width: 1100px;
        padding: 0 4rem;
    }

    .navbar-container {
        max-width: 1000px;
        padding: 0 4rem;
    }

    .networks-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet landscape (768px to 1023px) */
@media (max-width: 1023px) and (min-width: 768px) {
    .container, .container-wide, .container-fluid {
        max-width: 900px;
        padding: 0 2rem;
    }

    .navbar-container {
        max-width: 900px;
        padding: 0 2rem;
    }

    .networks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tornado-section.main {
        min-height: 45vh;
    }
}

/* Medium screens (768px to 1023px) */
@media (max-width: 1023px) {
    .stat-box .value {
        font-size: 1.5rem;
    }
}

/* Mobile and small tablets (767px and below) */
@media (max-width: 767px) {
    html {
        font-size: 16px;
    }

    .columns {
        flex-direction: column;
        margin: -0.75rem;
    }

    .column {
        padding: 0.75rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .navbar-menu {
        display: none;
    }

    .navbar-right {
        gap: 1rem;
    }

    .navbar-language-selector .dropdown-menu {
        right: -10px;
        min-width: 100px;
    }

    .stats.columns {
        flex-direction: column;
        gap: 2.5rem;
    }

    .stats .column.is-block {
        flex: none;
    }

    .buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .buttons.is-centered-mobile {
        justify-content: center;
    }

    .buttons.is-centered-mobile:not(.has-addons) .button:not(.is-fullwidth) {
        margin-left: 0.25rem;
        margin-right: 0.25rem;
    }

    .container, .container-wide, .container-fluid {
        max-width: 100%;
        padding: 0 1.5rem;
        margin: 0 auto;
    }

    .page-container {
        padding: 0 1.5rem;
    }

    .navbar-container {
        max-width: 100%;
        padding: 0 1.5rem;
        margin: 0 auto;
    }

    .title {
        font-size: 1.75rem;
        margin-bottom: 1.25rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .tornado-section {
        padding: 1.5rem 0;
    }

    .tornado-section.main {
        min-height: auto;
        padding: 1rem 0;
    }

    .tornado-section.main h1 {
        font-size: 1.5rem !important;
    }

    .product {
        padding: 2rem 1.5rem;
    }

    .product .image img {
        max-width: 100px;
    }

    .networks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .network {
        padding: 1.5rem 1rem;
    }

    .stat-box {
        padding: 1.25rem 1.5rem;
        height: 80px;
    }

    .stat-box .value {
        font-size: 1.25rem;
    }

    .button {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

    /* Footer responsive */
    .footer-buttons {
        gap: 0.75rem;
    }

    .language-divider {
        display: none;
    }
}

/* Extra small screens (480px and below) */
@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .container, .container-wide, .container-fluid {
        padding: 0 1rem;
        margin: 0 auto;
    }

    .page-container {
        padding: 0 1rem;
    }

    .navbar-container {
        padding: 0 1rem;
    }

    .title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
    }

    .subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .tornado-section {
        padding: 2rem 0;
    }

    .tornado-section.main {
        padding: 2.5rem 0;
    }

    .tornado-section.main h1 {
        font-size: 2rem !important;
    }

    .tornado-section.main h2 {
        font-size: 1.75rem !important;
    }

    .product {
        padding: 1.5rem 1rem;
    }

    .product .image img {
        max-width: 80px;
    }

    .stat-box {
        padding: 1.25rem 1.5rem;
        height: 85px;
    }

    .stat-box .value {
        font-size: 1.25rem;
    }

    .button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .network {
        padding: 1.25rem 0.75rem;
    }
}