/* Font Face Declarations */
@font-face {
    font-family: 'Uni Neue';
    src: url('../fonts/UniNeue-Trial-Thin.woff2') format('woff2'),
        url('../fonts/UniNeue-Trial-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uni Neue';
    src: url('../fonts/UniNeue-Trial-Light.woff2') format('woff2'),
        url('../fonts/UniNeue-Trial-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uni Neue';
    src: url('../fonts/UniNeue-Trial-Regular.woff2') format('woff2'),
        url('../fonts/UniNeue-Trial-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uni Neue';
    src: url('../fonts/UniNeue-Trial-Book.woff2') format('woff2'),
        url('../fonts/UniNeue-Trial-Book.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uni Neue';
    src: url('../fonts/UniNeue-Trial-Bold.woff2') format('woff2'),
        url('../fonts/UniNeue-Trial-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uni Neue';
    src: url('../fonts/UniNeue-Trial-Heavy.woff2') format('woff2'),
        url('../fonts/UniNeue-Trial-Heavy.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Uni Neue';
    src: url('../fonts/UniNeue-Trial-Black.woff2') format('woff2'),
        url('../fonts/UniNeue-Trial-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Uni Neue';
}

/* Mobile-specific fixes */
html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Fix iOS Safari viewport issues */
body {
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    width: 100%;
}

/* Prevent zoom on input focus on iOS */
input,
select,
textarea {
    font-size: 16px;
}

/* Improve touch targets for mobile */
button,
a,
input,
select,
textarea {
    min-height: 44px;
    min-width: 44px;
}

/* Better video handling on mobile */
video {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    max-width: 100%;
    height: auto;
    /* Critical mobile video fixes */
    -webkit-playsinline: true;
    object-fit: cover;
    background-color: transparent;
    /* Prevent video from causing layout issues */
    display: block;
    width: 100%;
}

/* Mobile-specific video optimizations */
@media (max-width: 768px) {
    video {
        /* Reduce video quality on mobile for better performance */
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        /* Ensure videos don't break layout */
        min-height: 0;
        max-height: 100vh;
    }

    /* Hero video specific mobile fixes */
    .hero-video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Diagram videos mobile fixes */
    .diagram video {
        width: 100% !important;
        height: auto !important;
        max-height: 400px;
    }

    /* Handle video loading states on mobile */
    video:not([src]):not([srcset]) {
        background-color: #000;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="40" height="40" viewBox="0 0 40 40"><circle cx="20" cy="20" r="18" fill="none" stroke="%23fff" stroke-width="2" opacity="0.3"/></svg>');
        background-repeat: no-repeat;
        background-position: center;
    }
}

/* Critical mobile fixes */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Prevent mobile layout issues */
img {
    max-width: 100%;
    height: auto;
}

/* Fix mobile container widths */
.container {
    max-width: 100%;

}

/* Accessibility helper class */
.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

body {
    font-family: 'Uni Neue';
    background: #041C18;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

.and-font {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif !important;
}

/* Header styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.header-logo {
    max-width: 149px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #9B6B9B;
}

.header-cta {
    background: #794E89;
    color: white;
    border: none;
    padding: 14px 22px;
    border-radius: 40px;
    min-width: 154px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.header-cta:hover {
    background: #8B5A9B;
    transform: translateY(-2px);
}

.right-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: white;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-menu-btn.active {
    display: none;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(4, 28, 24, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    max-width: 120px;
    height: auto;
}

.close-btn {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
}

.close-btn span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 3px;
    background: transparent;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.close-btn span::before,
.close-btn span::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 2px;
}

.close-btn span::before {
    transform: rotate(45deg);
}

.close-btn span::after {
    transform: rotate(-45deg);
}

.sidebar-links {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.sidebar-links a:hover {
    color: #9B6B9B;
}

.sidebar-cta {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}



/* Hero section */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(4, 28, 24, 0.7); */
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
}

/* Typography - Exact specifications */
.hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 100px;
    color: #D7D7D7;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 21px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid;
    background: transparent;
    color: white;
}

.btn-arrow {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 18px 29px;
    font-size: 15px;
    font-weight: 400;
    max-width: fit-content;
    min-width:249px;
}

.btn-arrow.btn-secondary {
    background: transparent;
    justify-content: space-between;
    border-color: #fff;
}

.btn-secondary {
    background: white;
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.btn-arrow:hover svg {
    transform: translate(2px, -2px);
}



.btn-arrow svg {
    transition: transform 0.3s ease;
}

/* Features section */
.features {
    padding: 2rem 2rem;
    padding-bottom: 0;
    background: #041C18;
    position: relative;
    z-index: 5;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    transform: translateY(40px);
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #00433f58;
    border-radius: 16px;
    max-width: 351px;
    padding: 32px 50px 100px 50px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(121, 78, 137, 0.1), rgba(121, 78, 137, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(121, 78, 137, 0.3);
    box-shadow: 0 20px 40px rgba(121, 78, 137, 0.2);
}

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

.feature-icon {
    max-width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    transform: translateY(0);
    animation: float 3s ease-in-out infinite;
}

.feature-icon:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    animation-play-state: paused;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;

}

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Yield Mechanics section */
.yield-mechanics {
    position: relative;
    padding: 6rem 2rem;
    background: #000;
    overflow: hidden;
}

.yield-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/converted/yieldbg.webp') center/cover;
    z-index: 1;
}

.yield-mechanics .container {
    position: relative;
    z-index: 10;
}

.yield-header {
    text-align: center;
    margin-bottom: 4rem;
}

.yield-title {
    font-size: 46px;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.yield-subtitle {
    font-size: 25px;
    color: #D7D7D7;
    margin-bottom: 80px;
}

.yield-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 10px;
    border-radius: 100px;
    border: 1px solid rgba(97, 195, 185, 0.3);
    margin: auto;
    width: fit-content;
    backdrop-filter: blur(14px) brightness(0.8);
    -webkit-backdrop-filter: blur(14px) brightness(0.8);
    box-shadow:
        inset 0 4px 14px 0 rgba(255, 255, 255, 0.1),
        0 8px 32px rgba(97, 195, 185, 0.2);
    position: relative;
    overflow: hidden;
}



.yield-dropdown {
    display: none;
}

.tab-button {

    padding: 10px 43px;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    border: none;
    transform: translateY(0);
    position: relative;


}


.tab-button.active::after {
    content: "";
    display: block;
    position: absolute;
    width: 85px;
    height: 90px;
    left: 50%;
    transform: translateX(-50%);
    bottom: -35px;
    background-image: url(/assets/images/th.svg);
    color: #fff;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.tab-button:hover {
    transform: translateY(-2px);
    color: rgba(255, 255, 255, 0.8);
}

.tab-button:hover::before {
    left: 100%;
}

.yield-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.diagram {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin: 2rem auto;
    max-width: 1324px;
}

.diagram.active {
    display: block;
    opacity: 1;
}

.diagram img {
    width: 100%;
    height: auto;
}

.diagram video {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
    background: transparent;
    mix-blend-mode: saturation;
    opacity: 0.65;
    filter: brightness(1) contrast(1) saturate(1);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Remove mobile diagram styles - desktop diagrams will now show on mobile */

.protocol-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.column-title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    color: white;
    margin-bottom: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.column-title img {
    max-width: 97px;
}

.yodl-logo {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #794E89, #9B6B9B);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: white;
}

.protocol-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 75px 20px;
    border-radius: 42px;
    background: rgba(12, 43, 40, 0.65);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
}

.protocol-card {
    background: rgba(12, 43, 40, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.001);
    border-radius: 42px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    background: rgba(12, 43, 40, 0.65);
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
}

.protocol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    transition: left 0.6s ease;
}

.protocol-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 255, 0, 0.3);
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.3), 0 8px 20px rgba(0, 255, 0, 0.15);
}

.protocol-card:hover::before {
    left: 100%;
}

.protocol-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    transform: scale(1);
    animation: float 2.5s ease-in-out infinite;
}

.protocol-card:hover .protocol-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.3));
    animation-play-state: paused;
}



.protocol-info {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 0.25rem;
}

.status-title {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.protocol-name {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin: 0;
}

.protocol-status {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.protocol-card:hover .status-dot {
    transform: scale(1.2);
}

.protocol-status.active .status-dot {
    background: #00FF00;
    border-color: #00FF00;
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

.protocol-status.inactive .status-dot {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
}

.status-text {
    font-size: 14px;
    color: white;
    font-weight: 500;
    margin-left: 0.25rem;
}

.central-element {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s ease;
    transform: scale(1);
}

.central-element:hover {
    transform: scale(1.05);
}

.central-element img {
    max-width: 400px;
}

.geometric-shape {
    position: relative;
    width: 200px;
    height: 200px;
    transform: rotate(-15deg);
}

.shape-prism {
    position: absolute;
    background: linear-gradient(135deg, #2a2a2a, #4a4a4a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 20px rgba(0, 255, 0, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.y-prism-1 {
    width: 60px;
    height: 90px;
    top: 30px;
    left: 70px;
    transform: rotate(45deg) skew(-15deg);
}

.y-prism-2 {
    width: 80px;
    height: 60px;
    top: 90px;
    left: 40px;
    transform: rotate(-30deg) skew(10deg);
}

.y-prism-3 {
    width: 50px;
    height: 80px;
    top: 60px;
    left: 130px;
    transform: rotate(60deg) skew(-20deg);
}

.y-prism-4 {
    width: 70px;
    height: 40px;
    top: 120px;
    left: 100px;
    transform: rotate(-15deg) skew(15deg);
}



@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

/* Yodlr Section - Video Background */
.yodlr-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(180deg, #041C18 0%, #000000 100%);

}

.yodlr-section2 {
    background: #041C18 !important;
}

.yodlr-overlay {
    position: relative;
    width: 100%;
    min-height: 100vh;
    border-radius: 38px;
    overflow: hidden;
}

.yodlr-overlay video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.yodlr-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 2rem 2rem 4rem 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    justify-content: space-between;
    margin: auto;

}

.justify-between {
    justify-content: space-between !important;
}

.yodlr-bubbles.mb-auto {
    margin-bottom: auto;
}

.yodlr-header {
    text-align: center;

}

.absolute-security {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 1045px;
    left: 50%;
    width: 100%;

}

/* Hide mobile security image on desktop */
.mobile-security {
    display: none;
}

.yodlr-title {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.yodlr-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.yodlr-bubbles {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1040px;
    width: 100%;
}



/* Yodlr Section */
.yodlr-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, #0A2A24 0%, #041C18 100%);
    position: relative;
    overflow: hidden;
}

.yodlr-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.yodlr-title {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.yodlr-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4rem;
}

.yodlr-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.y-shape-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.y-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.y-arm {
    position: absolute;
    width: 60px;
    height: 120px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.y-arm-left {
    top: 0;
    left: 20px;
    transform: rotate(-30deg) skew(-15deg);
}

.y-arm-right {
    top: 0;
    right: 20px;
    transform: rotate(30deg) skew(15deg);
}

.y-stem {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 100px;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.y-highlight {
    position: absolute;
    background: linear-gradient(135deg, #D4AF37, #F4E4BC);
    border-radius: 2px;
}

.y-highlight-left {
    top: 10px;
    left: 25px;
    width: 40px;
    height: 4px;
    transform: rotate(-30deg);
}

.y-highlight-right {
    top: 10px;
    right: 25px;
    width: 40px;
    height: 4px;
    transform: rotate(30deg);
}

.y-glow {
    position: absolute;
    background: linear-gradient(90deg, transparent, #00FFFF, transparent);
    height: 2px;

    animation: glowPulse 3s ease-in-out infinite;
}

.y-glow-1 {
    top: 15px;
    left: 15px;
    width: 50px;
    transform: rotate(-30deg);
    animation-delay: 0s;
}

.y-glow-2 {
    top: 15px;
    right: 15px;
    width: 50px;
    transform: rotate(30deg);
    animation-delay: 1s;
}

.y-glow-3 {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    animation-delay: 2s;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 1;
    }
}

.callout-bubble {
    background: transparent;
    border: 1px solid #fff;
    border-radius: 55px;
    padding: 1rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    /* animation: float 3.5s ease-in-out infinite; */
}

.callout-bubble:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
    animation-play-state: paused;
}

.bubble-text {
    font-size: 20px;
    font-weight: 500;
    color: white;
    white-space: nowrap;
}



/* Yodlr Logo Section */
.yodlr-logo-section {
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #041C18 0%, #000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.yodlr-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.yodlr-logo-container .y-shape {
    position: relative;
    width: 150px;
    height: 150px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

.yodlr-logo-container .y-arm {
    width: 45px;
    height: 90px;
}

.yodlr-logo-container .y-arm-left {
    top: 0;
    left: 15px;
}

.yodlr-logo-container .y-arm-right {
    top: 0;
    right: 15px;
}

.yodlr-logo-container .y-stem {
    width: 30px;
    height: 75px;
}

.yodlr-logo-container .y-highlight {
    height: 3px;
}

.yodlr-logo-container .y-highlight-left {
    top: 8px;
    left: 18px;
    width: 30px;
}

.yodlr-logo-container .y-highlight-right {
    top: 8px;
    right: 18px;
    width: 30px;
}

/* Background elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.metallic-panel {
    position: absolute;
    width: 200px;
    height: 100vh;
    background: linear-gradient(90deg,
            rgba(42, 42, 42, 0.8) 0%,
            rgba(74, 74, 74, 0.4) 50%,
            rgba(42, 42, 42, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metallic-panel.left {
    left: 0;
    transform: skewX(-5deg);
}

.metallic-panel.right {
    right: 0;
    transform: skewX(5deg);
}

.glow-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #794E89, transparent);
    height: 2px;

    animation: glow 3s ease-in-out infinite alternate;
}

.line-1 {
    top: 20%;
    left: 10%;
    right: 10%;
    animation-delay: 0s;
}

.line-2 {
    top: 60%;
    left: 15%;
    right: 15%;
    animation-delay: 1s;
}

.line-3 {
    top: 80%;
    left: 5%;
    right: 5%;
    animation-delay: 2s;
}

@keyframes glow {
    0% {
        opacity: 0.3;
        box-shadow: 0 0 10px rgba(121, 78, 137, 0.5);
    }

    100% {
        opacity: 0.8;
        box-shadow: 0 0 20px rgba(121, 78, 137, 0.8);
    }
}

.updates-section {
    position: relative;
}

.right-spin {
    max-width: 500px;
    width: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    animation: spin 20s linear infinite;
}

.left-spin {
    max-width: 500px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    animation: spin 20s linear infinite reverse;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.updates-section .container {
    z-index: 1;
    position: relative;
}

/* Yodl Ecosystem Section */
.yodl-ecosystem {
    padding: 6rem 2rem;
    background: #041C18;
    position: relative;
    z-index: 5;
}

.ecosystem-header {
    text-align: center;
    margin-bottom: 4rem;
}

.ecosystem-title {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.ecosystem-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.ecosystem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

/* Hide mobile layout on desktop */
.ecosystem-mobile {
    display: none;
}

/* Show desktop layout on desktop */
.ecosystem-desktop {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

/* First row - 5 items */
.ecosystem-row-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

/* Second row - 3 items */
.ecosystem-row-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

/* Third row - 4 items */
.ecosystem-row-3 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.ecosystem-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

}


.ecosystem-item img {
    max-width: fit-content;
    height: 80px;
    width: auto;
}

.ecosystem-item:hover img {
    object-fit: contain;
    width: 100%;
}

/* Responsive design */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        transform: translateY(0px);
        justify-items: center;
    }

    .ecosystem-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    /* Hide desktop layout on mobile */
    .ecosystem-desktop {
        display: none;
    }

    /* Show mobile layout on mobile */
    .ecosystem-mobile {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .ecosystem-mobile-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    /* .ecosystem-item {
        flex: 0 0 calc(50% - 0.5rem);
        max-width: calc(50% - 0.5rem);
        padding: 1rem;
    } */

    .ecosystem-title {
        font-size: 36px;
    }

    .ecosystem-subtitle {
        font-size: 18px;
    }

    .ecosystem-item img {
        height: 60px;
    }
}

@media (max-width: 480px) {

    .ecosystem-row-1,
    .ecosystem-row-2,
    .ecosystem-row-3 {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    /* .ecosystem-item {
        flex: 0 0 calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
        padding: 0.5rem;
    } */

    .ecosystem-item img {
width: 100%;
        max-width: 100%;
        height: 60px;
    }
    .ecosystem-item{
        width:50%;
    }
    .yield-bg{
        background-position: -18.5rem 0rem;
    background-repeat: no-repeat;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        grid-template-columns: 1fr auto auto;
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .btn {
        font-size: 18px;
        padding: 0.875rem 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features {
        padding: 2.5rem 1rem;
    }

    .features-grid {
        display: flex;
        overflow-x: auto;
        gap: 1.5rem;
        margin: 0;
        padding: 40px 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .features-grid::-webkit-scrollbar {
        display: none;
    }

    .features-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .feature-card {
        flex: 0 0 300px;
        scroll-snap-align: start;
        padding: 2rem 1.5rem;
    }

    .yield-mechanics {
        padding: 4rem 1rem;
    }

    .yield-title {
        font-size: 36px;
    }

    .yield-subtitle {
        font-size: 18px;
    }

    .yield-tabs {
        position: relative;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .yield-tabs .tab-button {
        display: none;
    }

    .yield-dropdown {
        display: block;
        width: 100%;
        padding: 15px 20px;
        background: transparent;
        /* border: 1px solid #A4A4A4; */
        /* border-radius: 100px; */
        color: #fff;
        border: none;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        position: relative;
    }

    .yield-dropdown:focus {
        outline: none;
        border-color: #fff;
        box-shadow: none;
    }

    .yield-dropdown option {
        background: #041C18;
        color: #fff;
        padding: 10px;
    }

    .yield-tabs::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
        width: 15px;
        height: 15px;
        background: url('../images/arrdown.png') no-repeat center;
        background-size: contain;
        pointer-events: none;
        z-index: 2;
    }

    .yield-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .central-element {
        order: -1;
    }

    /* Desktop diagrams will now show on mobile - no need for separate mobile diagrams */
    .diagram {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
        margin: 1rem auto;
        max-width: 100%;
        text-align: center;
    }

    .diagram.active {
        display: block !important;
        opacity: 1;
    }

    .diagram video {
        width: 100%;
        height: auto;
        border-radius: 8px;
        object-fit: contain;
        background: transparent;
        mix-blend-mode: saturation;
        opacity: 0.65;
        filter: brightness(1) contrast(1) saturate(1);
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
        display: block;
        min-height: 200px;
        max-height: 400px;
    }

    .geometric-shape {
        width: 150px;
        height: 150px;
    }

    .yodlr-section {
        min-height: 100vh;
    }

    .yodlr-overlay {
        height: 100vh;
        padding: 1rem;
    }

    .yodlr-content {
        padding: 2.5rem 1rem;
    }

    .yodlr-title {
        font-size: 36px;
    }

    .yodlr-subtitle {
        font-size: 18px;
    }



    .callout-bubble {
        padding: 0.75rem 1.5rem;
    }

    .bubble-text {
        font-size: 14px;
    }

    .updates-section {
        padding: 3rem 1rem !important;
        position: relative;
    }

    /* Hide spinning elements on mobile */
    .right-spin,
    .left-spin {
        display: none;
    }



    .updates-title {
        font-size: 36px !important;
        margin-bottom: 120px !important;
    }

    .updates-cards {
        grid-template-columns: 1fr;
        gap: 5rem !important;
    }

    .update-card {
        padding: 5rem 1.5rem !important;
    }

    .card-title {
        font-size: 24px !important;
    }

    .card-description {
        font-size: 16px !important;
    }

    .security-section {
        min-height: 100vh;
    }

    .security-overlay {
        height: 100vh;
        padding: 1rem;
    }

    .security-content {
        padding: 1rem;
    }

    .security-title {
        font-size: 36px;
    }

    .security-shield {
        width: 150px;
        height: 180px;
    }

    .shield-symbol {
        font-size: 36px;
    }

    .hero-style-title {
        font-size: 40px !important;
        margin-bottom: 2rem;
    }

    .hero-style-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-arrow {
        padding: 0.875rem 1.5rem;
        font-size: 16px;
    }

    .footer-container {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        text-align: left;
    }

    .footer-brand {
        align-items: start;
    }

    .footer-logo {
        justify-content: center;
    }

    .partner-label {
        padding: 0.5rem 1rem;
    }

    .partner-logo {
        font-size: 16px;
    }

    .partner-name {
        font-size: 12px;
    }

    /* Adjust partner positioning for mobile */
    .partner-left-1 {
        top: 5%;
        left: -15%;
    }

    .partner-left-2 {
        top: 30%;
        left: -20%;
    }

    .partner-left-3 {
        top: 55%;
        left: -15%;
    }

    .partner-right-1 {
        top: 5%;
        right: -15%;
    }

    .partner-right-2 {
        top: 30%;
        right: -20%;
    }

    .partner-right-3 {
        top: 55%;
        right: -15%;
    }
}

/* Security Section */
.security-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.security-overlay {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(4, 28, 24, 0.7);
}

.security-overlay video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.security-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
}

.security-header {
    text-align: center;
    margin-bottom: 4rem;
}

.security-title {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.security-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    width: 100%;
}

.security-shield {
    position: relative;
    width: 200px;
    height: 240px;
    background: linear-gradient(135deg, #794E89, #9B6B9B);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 0 30px rgba(121, 78, 137, 0.5),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 5;
    transition: all 0.3s ease;
    animation: shieldPulse 3s ease-in-out infinite;
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(121, 78, 137, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.1);
    }

    50% {
        transform: scale(1.02);
        box-shadow: 0 0 40px rgba(121, 78, 137, 0.7), inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes floatCardIcon {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.shield-symbol {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.partner-label {
    position: absolute;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 3;
}

.partner-label:hover {
    background: rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.05);
}

.partner-logo {
    font-size: 18px;
    font-weight: 700;
    color: white;
    min-width: 20px;
    text-align: center;
}

.partner-name {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

/* Partner positioning */
.partner-left-1 {
    top: 5%;
    left: -15%;
}

.partner-left-2 {
    top: 40%;
    left: -20%;
}

.partner-left-3 {
    bottom: 25%;
    left: -15%;
}

.partner-right-1 {
    top: 5%;
    right: -15%;
}

.partner-right-2 {
    top: 40%;
    right: -20%;
}

.partner-right-3 {
    bottom: 25%;
    right: -15%;
}

/* Bottom Video Overlay */
.bottom-video-overlay {
    position: relative;
    width: 80%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background: linear-gradient(180deg, #0A2A24 0%, #000 100%);
}

.bottom-video-overlay video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

@media(min-width:600px) {
    .mobile-only {
        display: none;
    }
}

/* Responsive design for bottom video overlay */
@media (max-width: 768px) {
    .bottom-video-overlay {
        width: 95%;
        height: 100vh;
    }

    .feature-icon {
        max-width: 100px;
    }

    .yodlr-section,
    .yodlr-section .yodlr-content {
        min-height: 500px !important;
                padding-bottom: 0px;
        padding-top: 20px;
    }

    .yodlr-section .yodlr-overlay {
        height: 700px !important;
        min-height: 500px !important
    }

    .yodlr-section {
        padding: 3rem 2rem;
    }
}

/* Hero Style Section */
.hero-style-section {
    position: relative;
    min-height: 100vh;
    background-image: url(../images/converted/bggg.webp);
    background-size: cover;
    display: flex;
    align-items: start;
    justify-content: center;
    overflow: hidden;
    padding-top: 50px;
}

.hero-style-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-style-content {
    text-align: center;
    max-width: 800px;
    padding: 2rem;
    z-index: 3;
}

.hero-style-title {
    font-family: 'Uni Neue', sans-serif;
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 10rem;

}

.hero-style-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

/* Remove animations from yodlr section buttons */
.hero-style-section .btn,
.hero-style-section .btn-arrow {
    animation: none !important;
}



/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    max-width: 140px;
    height: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-heading {
    font-family: 'Uni Neue', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0 0 1rem 0;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

/* Updates & Research Section */
.updates-section {
    padding: 6rem 2rem;
    background: #041C18;
    position: relative;
    z-index: 5;
}

.updates-header {
    text-align: center;
    margin-bottom: 4rem;
}

.updates-title {
    font-size: 48px;
    font-weight: 600;
    color: white;
    margin-bottom: 140px;
}

.updates-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.update-card {
    background-image: url('../images/bg-color.png');
    border-radius: 20px;
    max-width: 351px;
    width: 100%;
    padding: 72px 50px 100px 50px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    margin: auto;
}

.update-card:hover {
    transform: translateY(-8px);
    border-color: rgba(121, 78, 137, 0.3);
    box-shadow: 0 20px 40px rgba(121, 78, 137, 0.2);
}

.update-card:hover .card-icon {
    transform: translateX(-50%) scale(1.1);
    filter: drop-shadow(0 0 15px rgba(121, 78, 137, 0.4));
    animation-play-state: paused;
}

.card-icon {
    width: 102px;
    height: 102px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    top: -51px;
    left: 50%;
    transform: translateX(-50%);
    animation: floatCardIcon 3.5s ease-in-out infinite;
}

.card-icon img {
    width: 100%;
}







@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ethereum-icon {
    background: rgba(59, 130, 246, 0.1);
}

.eth-logo {
    font-size: 32px;
    color: #3B82F6;
    transform: rotate(45deg);
}

.card-title {
    font-size: 33px;
    font-weight: 600;
    color: white;
    margin-bottom: 40px;
    line-height: 1.3;
}

.card-description {
    font-size: 25px;
    line-height: 1.6;
    color: #AEAEAE;
    text-align: center;
}

.updates-cta {
    display: flex;
    justify-content: center;
    text-align: center;
}



/* Responsive design for yodlr section */
@media (max-width: 768px) {
    .yodlr-section {
        min-height: 100vh;
    }

    .yodlr-overlay {
        height: 100vh;
        padding: 1rem;
    }



    .yodlr-title {
        font-size: 36px;
    }

    .yodlr-subtitle {
        font-size: 18px;
    }

    .yodlr-bubbles {
        gap: 5px;

    }

    /* Hide second yodlr-bubbles container on mobile */
    .yodlr-content .yodlr-bubbles:nth-child(3) {
        display: none;
    }

    /* Show mobile-only bubble only on mobile */
    .callout-bubble.mobile-only {
        display: none;
    }

    /* Mobile styles - show mobile-only bubble and hide second container */
    .callout-bubble.mobile-only {
        display: flex;
    }

    .callout-bubble {
        padding: 0.75rem 1.5rem;
        border: 0;
    }

    .bubble-text {
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .card-icon {
        width: 76px;
        height: 76px;
    }

    .yodlr-section--1,
    .yodlr-section--1 .yodlr-overlay {
        min-height: 600px !important;
    }

    .callout-bubble {
        padding: 5px 10px;
        display: flex;
    }

    .bubble-text {
        font-size: 19px;
    }

    .yodlr-bubbles.mb-auto {
        margin-bottom: 0;
    }

    .yodlr-bubbles {
        flex-direction: column;
        margin: 0;
    }

    /* Hide desktop security image and show mobile security image */
    .desktop-security {
        display: none;
    }

    .mobile-security {
        display: block;
        max-width: 400px;
        width: 100%;
    }

    .update-card {
        max-width: 240px;
        padding: 3.5rem 1.5rem !important;
    }

    .card-title {
        margin-bottom: 12px;
    }

    .absolute-security {
        position: absolute;
        top: 100%;
        transform: translate(-50%, -145%);
        max-width: 1045px;
        left: 50%;
        width: 100%;
    }

}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .btn {
        font-size: 16px;
        padding: 0.75rem 1.25rem;
    }
}

/* Additional mobile fixes and optimizations */
@media (max-width: 768px) {

    /* Fix mobile scrolling issues */
    body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
    }

    /* Prevent horizontal scroll */
    .container {
        overflow-x: hidden;
    }

    /* Better mobile video performance */
    video {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        will-change: transform;
    }

    /* Optimize mobile animations */
    * {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Fix mobile menu positioning */
    .mobile-sidebar {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }

    /* Improve mobile touch responsiveness */
    button,
    .btn,
    a {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
        -webkit-touch-callout: none;
        -webkit-user-select: none;
        user-select: none;
    }

    /* Fix iOS Safari bottom bar issue */
    .hero,
    .yodlr-section {
        min-height: 100vh;
    }
}

/* Fix for very small screens */
@media (max-width: 375px) {
    .hero-title {
        font-size: 24px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        font-size: 14px;
        padding: 0.6rem 1rem;
    }
}

/* Landscape mobile fixes */
@media screen and (max-height: 500px) and (orientation: landscape) {
    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-buttons {
        margin-top: 1rem;
    }
}