/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Prevent horizontal overflow on images and media */
img,
video,
iframe,
svg {
    max-width: 100%;
    height: auto;
}

html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Codec Pro', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

/* Navigation Bar */
.navbar {
    background-color: #000000;
    padding: 1rem 0;
    padding-bottom: 0rem;
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000000;
    transform: translateY(-100%);
    animation: slideInFromTop 0.8s ease-out 2.1s forwards;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    backdrop-filter: blur(0px);
    left: 0;
    right: 0;
    box-sizing: border-box;
    overflow: visible;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
    }

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

/* Button Styles */
.button {
    background: linear-gradient(135deg, #1d6b80 0%, #000000 100%);
    border-radius: 0.5em;
    box-shadow:
        inset 0px -6px 18px -6px rgba(3, 15, 20, 0),
        inset rgba(54, 69, 75, 1) -1px -1px 6px 0px,
        inset 12px 0px 12px -6px rgba(3, 15, 20, 0),
        inset -12px 0px 12px -6px rgba(3, 15, 20, 0),
        rgba(54, 69, 75, 1) -1px -1px 6px 0px;
    border: solid 2px #262626;
    cursor: pointer;
    font-size: 20px;
    padding: 0.7em 1.7em;
    outline: none;
    transition: all 0.3s;
    user-select: none;
}

.button:hover {
    box-shadow:
        inset 0px -6px 18px -6px rgba(3, 15, 20, 1),
        inset 0px 6px 18px -6px rgba(3, 15, 20, 1),
        inset 12px 0px 12px -6px rgba(3, 15, 20, 0),
        inset -12px 0px 12px -6px rgba(3, 15, 20, 0),
        -1px -1px 6px 0px rgba(54, 69, 75, 1);
}

.button:active {
    box-shadow:
        inset 0px -12px 12px -6px rgba(3, 15, 20, 1),
        inset 0px 12px 12px -6px rgba(3, 15, 20, 1),
        inset 12px 0px 12px -6px rgba(3, 15, 20, 1),
        inset -12px 0px 12px -6px rgba(3, 15, 20, 1),
        -1px -1px 6px 0px rgba(54, 69, 75, 1);
}

.button .text {
    color: #ffffffbc;
    font-size: 18px;
    font-weight: 400;
    margin: auto;
    transition: all 0.3s;
    width: fit-content;
    font-family: 'Codec Pro', sans-serif;
}

.button:hover .text {
    transform: scale(0.9);
}

.button:active .text {
    transform: scale(0.8);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 520000;
}

.nav-right {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateX(0);
    opacity: 1;
}

.navbar.scrolled .nav-right {
    transform: translateX(150%);
    opacity: 0;
}

.nav-docs-btn {
    font-size: 14px;
    padding: 0.5em 1.2em;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1.5rem;
    flex: 1;
    flex-wrap: wrap;
}

.nav-logo {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transform: translateX(0);
    opacity: 1;
}

.navbar.scrolled .nav-logo {
    transform: translateX(-150%);
    opacity: 0;
}

.nav-logo-img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    border: 1px solid #a7a7a7ab;
    padding: 4px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

.nav-logo-img:hover {
    transform: scale(1.1);
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease, background-color 0.3s ease, padding 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    position: relative;
}

.nav-link:hover {
    color: #1d6b80;
}

.nav-link.active {
    color: #ffffff;
    background: linear-gradient(135deg, #1d6b80 0%, #000000 100%);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.8),
                0 4px 16px rgba(255, 255, 255, 0.6),
                0 0 20px rgba(29, 107, 128, 0.8);
}

.nav-separator {
    height: 0px;
    background-color: #000000;
    margin-top: 1rem;
}

/* Hamburger Menu Button */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000001;
    position: relative;
}

.nav-hamburger span {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-hamburger.active span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Home Section */
.home-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    /* Account for fixed navbar */
    background: #000000;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgb(6, 28, 34) 74%, rgb(0, 0, 0) 100%);
    position: relative;
    background: #000000;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 63%, rgba(8, 47, 59, 1) 100%);
}

.home-somke {
    width: 500px;
    height: 500px;
    position: absolute;
    top: 200px;
    left: 40%;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
}

.home-somke img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1;
}

.home-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 2rem;
    position: relative;
    min-height: 400px;
}

.home-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('./media/smoke.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

/* Removed overlay to make smoke visible */

.title-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-title {
    font-size: 6.5rem;
    font-weight: 700;
    color: #ffffff;
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInFromRight 1.2s ease-out 1.2s forwards;
    text-align: center;
    margin: 0.3em 0;
    margin-bottom: -5px;
    font-family: 'Codec Pro', sans-serif;
    text-transform: uppercase;
}

.slogan {
    font-size: 1.5rem;
    /* 35% of 4rem = 1.4rem */
    color: #cccccc;
    font-weight: 300;
    font-style: italic;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInFromBottom 1.2s ease-out 1.9s forwards;
    text-align: center;
    letter-spacing: 0.3em;
    margin: 0.3em 0;
}

.description {
    max-width: 800px;
    margin: 2rem auto 0;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInFromBottom 1.2s ease-out 2.5s forwards;
}

.description p {
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.6;
    text-align: center;
    margin: 1rem 0;
    font-family: 'Codec Pro', sans-serif;
    font-weight: 300;
}

.sword-effect {
    position: absolute;
    top: 43%;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg,
            transparent 0%,
            #1d6b80 15%,
            #ffffff 40%,
            #ffffff 60%,
            #1d6b80 85%,
            transparent 100%);
    margin: 0;
    opacity: 0;
    transform: translateX(-100%) translateY(-50%);
    animation: swordSweep 5s ease-out 1.5s infinite;
    box-shadow:
        0 0 30px #ffffff,
        0 0 60px #1d6b80,
        0 0 90px #1d6b80,
        0 0 120px #1d6b80;
    z-index: 1;
    filter: blur(2px);
    margin-top: 0.2em;
}

@keyframes swordSweep {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    20% {
        opacity: 1;
        transform: translateX(0%);
    }

    40% {
        opacity: 0;
        transform: translateX(100%);
    }

    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

.home-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: -5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInFromBottom 1.2s ease-out 2.5s forwards;
}

.home-btn {
    font-size: 23px;
    padding: 0.6em 1.5em;
    text-decoration: none;
}

/* Core Features Section */
.core-features-section {
    padding: 6rem 2rem;
    position: relative;
    background: #000000;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 53%, rgb(8, 43, 54) 100%);
}

.core-features-container {
    max-width: 1630px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.core-features-smoke {
    width: 500px;
    height: 500px;
    position: absolute;
    top: -200px;
    left: 45%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.core-features-smoke img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1;
}

.core-features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Codec Pro', sans-serif;
    text-transform: uppercase;
}

.features-upper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Codec Pro', sans-serif;
}

.feature-card p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.5;
    font-family: 'Codec Pro', sans-serif;
}

.features-lower {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-box {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid #262626;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #1D6B80;
    background: radial-gradient(circle, rgba(29, 107, 128, 1) 0%, rgba(0, 0, 0, 1) 31%, rgba(0, 0, 0, 1) 100%);
    height: 130px;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 107, 128, 0.05), transparent);
    transition: left 0.5s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    transform: translateY(-3px);
    border-color: #1d6b80;
    box-shadow: 0 8px 25px rgba(29, 107, 128, 0.15);
}

.feature-icon {
    font-size: 1.5rem;
    color: #1d6b80;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    border-color: #1d6b80;
    box-shadow: 0 0 15px rgba(29, 107, 128, 0.3);
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.feature-box h4 {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    font-family: 'Codec Pro', sans-serif;
    margin: 0;
}

.feature-box p {
    font-size: 0.8rem;
    color: #aaaaaa;
    font-family: 'Codec Pro', sans-serif;
    margin: 0;
    line-height: 1.3;
}

/* Responsive Core Features */
@media (max-width: 768px) {
    .core-features-section {
        padding: 4rem 1rem;
    }

    .core-features-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
    .core-features-smoke img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        opacity: 0.7;
    }
    .networth-section {
        display: none;
    }
    .features-upper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .features-lower {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
    }

    .feature-box {
        padding: 1.5rem 0.8rem;
    }

    .feature-icon {
        font-size: 1.3rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    .feature-box h4 {
        font-size: 0.9rem;
    }

    .feature-box p {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .features-upper {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 1rem;
    }

    .features-lower {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 1rem;
    }
}

/* Next-Gen Web3 Tokens Tracking Section */
.tokens-tracking-section {
    padding: 6rem 2rem;
    position: relative;
    background: #000000;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 0%, rgb(6, 28, 34) 74%, rgb(0, 0, 0) 100%);

}

.tokens-tracking-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tokens-tracking-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Codec Pro', sans-serif;
}

.tokens-tracking-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.tokens-tracking-left {
    flex: 0 0 65%;
}

.tokens-tracking-right {
    flex: 0 0 35%;
}

.tokens-tracking-text {
    margin-bottom: 3rem;
}

.tokens-tracking-text p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-family: 'Codec Pro', sans-serif;
}

.tokens-tracking-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-tick {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tick-icon {
    width: 1.5rem;
    height: 1.5rem;
    background: #1d6b80;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-tick span {
    font-size: 0.9rem;
    color: #aaaaaa;
    font-family: 'Codec Pro', sans-serif;
}

.tracking-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    min-height: auto;
}

.tracking-card {
    background: #000000;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1.5rem 1rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 1.5rem;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('media/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 1;
    z-index: 1;
}

.tracking-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Codec Pro', sans-serif;
    margin: 0;
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.tracking-card:hover {
    transform: translateY(-3px);
    border-color: #1d6b80;
    box-shadow: 0 8px 25px rgba(29, 107, 128, 0.15);
}

/* Single Logo Container */
.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    min-height: 350px;
    padding: 1rem;
}

.single-logo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 0px solid #1d6b80;
    padding: 12px;
    object-fit: cover;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.single-logo:hover {
    transform: scale(1.1);
    border-color: #ffffff;
    box-shadow: 0 0 20px rgba(29, 107, 128, 0.5);
}

/* Responsive Tokens Tracking */
@media (max-width: 768px) {
    .tokens-tracking-section {
        padding: 4rem 1rem;
    }

    .tokens-tracking-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .tokens-tracking-content {
        flex-direction: column;
        gap: 2rem;
    }

    .tokens-tracking-left,
    .tokens-tracking-right {
        flex: 1;
    }

    .tokens-tracking-text p {
        font-size: 1rem;
    }

    .tokens-tracking-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .tracking-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .tracking-card {
        min-height: 150px;
        padding: 1rem 0.8rem;
        padding-top: 1rem;
    }

    .tracking-card h3 {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tracking-cards {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}

/* Whale Wallets Section */
.whale-wallets-section {
    padding: 6rem 2rem;
    background-color: #000000;
    position: relative;
}

.whale-wallets-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.whale-wallets-left {
    flex: 1;
    padding-right: 2rem;
}

.whale-wallets-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.whale-wallets-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: 'Codec Pro', sans-serif;
    line-height: 1.2;
}

.whale-wallets-features {
    margin-bottom: 3rem;
}

.feature-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.bullet-point {
    color: #1d6b80;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-text {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.6;
    font-family: 'Codec Pro', sans-serif;
}

.whale-wallets-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: left;
}

.whale-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Codec Pro', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 180px;
}

.whale-btn.primary-btn {
    background-color: #1d6b80;
    color: #ffffff;
}

.whale-btn.primary-btn:hover {
    background-color: #2a8ba3;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 107, 128, 0.3);
}

.whale-btn.secondary-btn {
    background-color: transparent;
    color: #1d6b80;
    border: 2px solid #1d6b80;
}

.whale-btn.secondary-btn:hover {
    background-color: #1d6b80;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 107, 128, 0.3);
}

.radar-canvas {
    width: 100%;
    max-width: 500px;
    height: 500px;
    background-color: #ffffff00;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0);
    transform: scaleY(-1);
}

/* Responsive Design for Whale Wallets Section */
@media (max-width: 768px) {
    .whale-wallets-container {
        flex-direction: column;
        gap: 3rem;
    }

    .whale-wallets-left {
        padding-right: 0;
        text-align: center;
    }

    .whale-wallets-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .whale-wallets-features {
        margin-bottom: 2rem;
    }

    .feature-point {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .whale-wallets-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .whale-btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .whale-wallets-section {
        padding: 4rem 1rem;
    }

    .whale-wallets-title {
        font-size: 1.8rem;
    }

    .feature-text {
        font-size: 1rem;
    }

    .whale-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Access and Pricing Section */
.access-pricing-section {
    padding: 6rem 2rem;
    background-color: #000000;
    position: relative;
}

.access-pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.access-pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Codec Pro', sans-serif;
}

.pricing-table-container {
    overflow-x: auto;
    border-radius: 12px;
    border: 1px solid #333333;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    font-family: 'Codec Pro', sans-serif;
    table-layout: fixed;
}

.pricing-table thead {
    background: linear-gradient(135deg, #1d6b80 0%, #0a4a5a 100%);
}

.pricing-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid #333333;
    border-right: 1px solid #333333;
    width: 25%;
}

.pricing-table th:first-child {
    width: 25%;
}

.pricing-table th:nth-child(2) {
    width: 25%;
}

.pricing-table th:nth-child(3) {
    width: 25%;
}

.pricing-table th:nth-child(4) {
    width: 25%;
}

.pricing-table th:last-child {
    border-right: none;
}

.pricing-table td {
    padding: 1.2rem 1rem;
    text-align: center;
    color: #cccccc;
    font-size: 1rem;
    border-bottom: 1px solid #333333;
    border-right: 1px solid #333333;
    transition: background-color 0.3s ease;
    width: 25%;
}

.pricing-table td:first-child {
    width: 25%;
}

.pricing-table td:nth-child(2) {
    width: 25%;
}

.pricing-table td:nth-child(3) {
    width: 25%;
}

.pricing-table td:nth-child(4) {
    width: 25%;
}

.pricing-table td:last-child {
    border-right: none;
}

.pricing-table tbody tr:hover {
    background-color: rgba(29, 107, 128, 0.1);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: #ffffff;
}

.pricing-table td:not(:first-child) {
    font-weight: 600;
}

.pricing-table td:contains("✓") {
    color: #28a745;
}

.pricing-table td:contains("✗") {
    color: #dc3545;
}

/* Responsive Access and Pricing */
@media (max-width: 768px) {
    .access-pricing-section {
        padding: 4rem 1rem;
    }

    .access-pricing-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .pricing-table th {
        padding: 1rem 0.8rem;
        font-size: 1rem;
    }

    .pricing-table td {
        padding: 1rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pricing-table th {
        padding: 0.8rem 0.5rem;
        font-size: 0.9rem;
    }

    .pricing-table td {
        padding: 0.8rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Roadmap Section */
.roadmap-section {
    padding: 6rem 2rem;
    background-color: #000000;
    position: relative;
}

.roadmap-container {
    max-width: auto;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.roadmap-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Codec Pro', sans-serif;
    text-transform: uppercase;
}

.roadmap-timeline {
    position: relative;
    max-width: 1420px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #1d6b80 0%, #0a4a5a 100%);
    transform: translateX(-50%);
    z-index: 1;
    border-left: 2px solid #1d6b80;
    background: none;
    height: 75%;
    margin-top: 10%;
}

.timeline-item {
    position: relative;
    margin-bottom: 0rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    margin-right: 20px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    margin-left: 20px;
}

.phase-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #333333;
    border-radius: 12px;
    padding: 2rem;
    width: 680px;
    position: relative;
    transition: all 0.3s ease;
}

.phase-box:hover {
    transform: translateY(-5px);
    border-color: #1d6b80;
    box-shadow: 0 10px 30px rgba(29, 107, 128, 0.2);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #1d6b80;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.phase-box::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    transform: translateY(-50%);
    z-index: 2;
}

.timeline-item:nth-child(odd) .phase-box::after {
    right: -20px;
    border-left-color: #1d6b80;
}

.timeline-item:nth-child(even) .phase-box::after {
    left: -20px;
    border-right-color: #1d6b80;
}

.timeline-item:nth-child(odd) {
    justify-content: flex-start;
    margin-right: 0px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-end;
    margin-left: 0px;
}

.phase-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1d6b80;
    margin-bottom: 1.5rem;
    font-family: 'Codec Pro', sans-serif;
    text-align: center;
}

.phase-content {
    margin-top: 1rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.phase-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.bullet-point {
    font-size: 0.95rem;
    color: #cccccc;
    font-family: 'Codec Pro', sans-serif;
    line-height: 1.4;
}

.phase-description {
    flex: 1;
    border: 1px solid #333333;
    border-radius: 8px;
    padding: 1.5rem;
    background: rgba(26, 26, 26, 0.5);
}

.phase-description p {
    font-size: 0.6rem;
    color: #aaaaaa;
    font-family: 'Codec Pro', sans-serif;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Roadmap */
@media (max-width: 768px) {
    .roadmap-section {
        padding: 4rem 1rem;
    }

    .roadmap-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .timeline-line {
        left: 30px;
    }

    .timeline-item {
        justify-content: flex-start !important;
        margin-left: 60px;
        margin-bottom: 3rem;
    }

    .phase-box {
        max-width: 100%;
        padding: 1.5rem;
    }

    .timeline-item::before {
        left: 30px !important;
        transform: translate(-50%, -50%);
    }

    .phase-box::after {
        left: -20px !important;
        right: auto !important;
        border-right-color: #1d6b80 !important;
        border-left-color: transparent !important;
    }

    .phase-box h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .bullet-point {
        font-size: 0.9rem;
    }

    .phase-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .phase-description {
        padding: 1.2rem;
    }

    .phase-description p {
        font-size: 0.4rem;
    }
}

@media (max-width: 480px) {
    .timeline-item {
        margin-left: 50px;
    }

    .timeline-item::before {
        left: 25px !important;
        width: 16px;
        height: 16px;
    }

    .phase-box::after {
        left: -16px !important;
        border-width: 8px;
    }

    .phase-box {
        padding: 1.2rem;
    }

    .phase-box h3 {
        font-size: 1.1rem;
    }

    .bullet-point {
        font-size: 0.85rem;
    }
}

/* Token Pair Selection Section */
.token-pair-section {
    padding: 6rem 2rem;
    background-color: #000000;
    position: relative;
    border-top: 2px dashed #ffffff;
}

.token-pair-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.token-pair-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Codec Pro', sans-serif;
}

.pair-selection-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

.pair-type-selection h3,
.fee-tier-selection h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Codec Pro', sans-serif;
}

.pair-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.pair-option {
    position: relative;
}

.pair-option input[type="radio"] {
    display: none;
}

.pair-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333333;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.pair-option input[type="radio"]:checked+label {
    border-color: #1d6b80;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    box-shadow: 0 0 20px rgba(29, 107, 128, 0.3);
}

.pair-option label:hover {
    border-color: #1d6b80;
    transform: translateY(-2px);
}

.option-icon {
    width: 40px;
    height: 40px;
    background: #1d6b80;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    font-family: 'Codec Pro', sans-serif;
}

.option-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-family: 'Codec Pro', sans-serif;
}

.option-text p {
    font-size: 0.9rem;
    color: #aaaaaa;
    margin: 0;
    font-family: 'Codec Pro', sans-serif;
}

.fee-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 600px;
}

.fee-option {
    position: relative;
}

.fee-option input[type="radio"] {
    display: none;
}

.fee-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333333;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.fee-option input[type="radio"]:checked+label {
    border-color: #1d6b80;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    box-shadow: 0 0 20px rgba(29, 107, 128, 0.3);
}

.fee-option label:hover {
    border-color: #1d6b80;
    transform: translateY(-2px);
}

.fee-percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d6b80;
    margin-bottom: 0.5rem;
    font-family: 'Codec Pro', sans-serif;
}

.fee-range {
    font-size: 0.9rem;
    color: #cccccc;
    font-family: 'Codec Pro', sans-serif;
}

/* Responsive Token Pair Selection */
@media (max-width: 768px) {
    .token-pair-section {
        padding: 4rem 1rem;
    }

    .token-pair-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .pair-options {
        flex-direction: column;
        gap: 1rem;
    }

    .pair-option label {
        min-width: auto;
        width: 100%;
    }

    .fee-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .fee-option label {
        padding: 1rem 0.8rem;
    }

    .fee-percentage {
        font-size: 1rem;
    }

    .fee-range {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .fee-options {
        grid-template-columns: 1fr;
    }
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
    background-color: #000000;
    position: relative;
}

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

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Codec Pro', sans-serif;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text {
    position: relative;
    min-height: 400px;
}

.text-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.text-content.active {
    opacity: 1;
    transform: translateY(0);
}

.text-content h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Codec Pro', sans-serif;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    font-family: 'Codec Pro', sans-serif;
}

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

.feature-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1d6b80 0%, #000000 100%);
    border-radius: 0.5em;
    border: solid 2px #262626;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.feature-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #1d6b80;
}

.feature-item.active {
    background: linear-gradient(135deg, #1d6b80 0%, #1d6b80 100%);
    border-color: #ffffff;
    transform: translateY(-5px);
}

.feature-item.active::before {
    background-color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 8px #ffffff;
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Codec Pro', sans-serif;
}

.feature-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    font-family: 'Codec Pro', sans-serif;
}

/* Animation Keyframes */
@keyframes fadeInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFromRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .title-container {
        align-items: center;
    }

    .main-title {
        font-size: 3.5rem;
    }

    .slogan {
        margin-top: 5%;
        font-size: 0.75rem;
    }

    .sword-effect {
        position: absolute;
        top: 17%;
        left: 0;
        width: 100%;
        height: 8px;
        background: linear-gradient(90deg,
                transparent 0%,
                #1d6b80 15%,
                #ffffff 40%,
                #ffffff 60%,
                #1d6b80 85%,
                transparent 100%);
        margin: 0;
        opacity: 0;
        transform: translateX(-100%) translateY(-50%);
        animation: swordSweep 5s ease-out 1.5s infinite;
        box-shadow:
            0 0 30px #ffffff,
            0 0 60px #1d6b80,
            0 0 90px #1d6b80,
            0 0 120px #1d6b80;
        z-index: 1;
        filter: blur(2px);
        margin-top: 0.2em;
    }
    .home-somke {
        width: 500px;
        height: 500px;
        position: absolute;
        top: 0px;
        left: 40%;
        transform: translateX(-50%);
        z-index: 10;
        pointer-events: none;

    }
    .home-somke img{
        filter: opacity(0.7);
        
    }
    .description {
        max-width: 90%;
        margin: 1.5rem auto 0;
    }

    .description p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .navbar {
        padding: 0.75rem 0;
        width: 100%;
        max-width: 100vw;
        overflow-x: visible !important;
        overflow-y: visible !important;
    }
    
    /* Prevent horizontal overflow on all sections */
    section {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .endofsection,
    .startofsection {
        margin-left: 0;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
    }
    
    /* Fix containers with fixed max-width on mobile */
    .tokenomics-container,
    .anatomy-container,
    .core-features-container,
    .most-rich-holders-container {
        max-width: 100%;
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        box-sizing: border-box;
    }
    
    /* Ensure all containers respect viewport width */
    .nav-container,
    .home-section,
    .roadmap-flip-container {
        max-width: 100vw;
        box-sizing: border-box;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow: visible;
    }

    /* Show hamburger menu on mobile */
    .nav-hamburger {
        display: flex;
        order: 3;
        z-index: 1000001;
    }

    .nav-logo {
        order: 1;
    }

    /* Prevent scroll-out on mobile - keep logo and docs visible */
    .navbar.scrolled .nav-logo {
        transform: translateX(0);
        opacity: 1;
    }

    .navbar.scrolled .nav-right {
        transform: translateX(0);
        opacity: 1;
    }

    /* Hide nav menu by default on mobile */
    .nav-menu {
        position: fixed !important;
        top: 70px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        background-color: rgba(0, 0, 0, 0.98) !important;
        backdrop-filter: blur(20px);
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        padding: 0 !important;
        gap: 0;
        max-height: 0 !important;
        overflow: hidden;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0.3s ease;
        z-index: 1000001 !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .nav-menu.active {
        max-height: 600px !important;
        opacity: 1 !important;
        visibility: visible !important;
        padding: 2rem 1rem !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        display: flex !important;
        z-index: 1000001 !important;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: list-item;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto;
    }

    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-menu.active .nav-item {
        opacity: 1 !important;
        visibility: visible !important;
        display: list-item !important;
    }
    
    .nav-menu.active .nav-link {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }

    .nav-right {
        order: 2;
        margin-right: 1rem;
        display: none;
        text-decoration: none;
    }

    .nav-logo-img {
        height: 35px;
        width: 35px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 1rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-link.active {
        background: linear-gradient(135deg, #1d6b80 0%, #000000 100%);
    }

    .nav-link.active::after {
        display: none;
    }

    .nav-docs-btn {
        font-size: 12px;
        padding: 0.4em 1em;
    }
    
    .nav-docs-btn .text {
        font-size: 14px;
    }

    .home-buttons {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .home-btn {
        font-size: 14px;
        padding: 0.5em 1.2em;
        text-decoration: none;
    }

    .about-section {
        padding: 4rem 1rem;
    }

    .about-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .about-description {
        font-size: 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .feature-item h3 {
        font-size: 1.1rem;
    }

    .feature-item p {
        font-size: 0.9rem;
    }
}

/* Roadmap Section */
.roadmap-section {
    padding: 6rem 2rem;
    background-color: #000000;
    position: relative;
}

.roadmap-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.roadmap-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Codec Pro', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.roadmap-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: stretch;
}

.roadmap-card {
    flex: 0 0 280px;
    aspect-ratio: 1 / 2;
    background: linear-gradient(135deg, #004c63 0%, #000000 100%);
    border: 2px solid #333333;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    opacity: 0.6;
    transform: scale(0.98);
}

.roadmap-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: #1d6b80;
    box-shadow: 0 8px 25px rgba(29, 107, 128, 0.3);
}

.roadmap-card:hover {
    opacity: 1;
    transform: scale(1.02);
    border-color: #1d6b80;
    box-shadow: 0 12px 35px rgba(29, 107, 128, 0.4);
}

.roadmap-cards:hover .roadmap-card:not(:hover) {
    opacity: 0.4;
    transform: scale(0.96);
}

.card-header {
    background: linear-gradient(135deg, #1d6b80 0%, #0a4a5a 100%);
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 2px solid #333333;
    background: #1D6B80;
    background: radial-gradient(circle, rgba(29, 107, 128, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 1) 100%);
}

.card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    font-family: 'Codec Pro', sans-serif;
}

.phase-icon {
    font-size: 1.5rem;
    display: block;
}

.card-content {
    padding: 1.5rem 1rem;
    height: calc(100% - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phase-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.phase-steps li {
    font-size: 0.85rem;
    color: #cccccc;
    margin-bottom: 0.8rem;
    font-family: 'Codec Pro', sans-serif;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.phase-steps li:last-child {
    margin-bottom: 0;
}

/* Responsive Design for Roadmap */
@media (max-width: 1200px) {
    .roadmap-cards {
        gap: 1.5rem;
    }

    .roadmap-card {
        flex: 0 0 240px;
    }
}

@media (max-width: 1024px) {
    .roadmap-cards {
        gap: 1.2rem;
    }

    .roadmap-card {
        flex: 0 0 200px;
    }
}

@media (max-width: 768px) {
    .roadmap-cards {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .roadmap-card {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        aspect-ratio: 2 / 1;
    }

    .roadmap-title {
        font-size: 2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    .roadmap-section {
        padding: 4rem 1rem;
    }

    .roadmap-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .card-header {
        padding: 1rem 0.8rem;
    }

    .card-content {
        padding: 1rem 0.8rem;
    }

    .phase-steps li {
        font-size: 0.8rem;
    }
}

.tokenomics-container {
    max-width: 1630px;
    margin: 0 auto;
    position: relative;
}

.tokenomics-smoke {
    width: 500px;
    height: 500px;
    position: absolute;
    top: -200px;
    left: 45%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.tokenomics-smoke img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1;
}

.tokenomics-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Codec Pro', sans-serif;
    z-index: 100000;
    margin-top: 5%;
    text-transform: uppercase;
}

.new-worth-section {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 3rem;
    font-family: 'Codec Pro', sans-serif;
    z-index: 100000;
        position: absolute;
    top: 20px;
    left: 0%;
    right: 50%;
    width: 100%;
    text-transform: uppercase;
}

.tokenomics-content {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    width: 100%;
}

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

.tokenomics-item {
    padding: 1.5rem;
    background: linear-gradient(135deg, #1d6b80 0%, #000000 100%);
    border-radius: 0.5em;
    border: solid 2px #262626;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.tokenomics-item::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tokenomics-item:hover {
    transform: translateY(-5px);
    border-color: #1d6b80;
}

.tokenomics-item.active {
    background: linear-gradient(135deg, #1d6b80 0%, #1d6b80 100%);
    border-color: #ffffff;
    transform: translateY(-5px);
}

.tokenomics-item.active::before {
    background-color: #000000;
    border-color: #ffffff;
    box-shadow: 0 0 8px #ffffff;
}

.tokenomics-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Codec Pro', sans-serif;
}

.tokenomics-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    font-family: 'Codec Pro', sans-serif;
}

.tokenomics-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tokenomics-content-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.tokenomics-content-item.active {
    opacity: 1;
    transform: translateY(0);
}

.tokenomics-content-item h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Codec Pro', sans-serif;
}

/* Tokenomics Chart Wrapper */
.token-content-layout {
    display: flex;
    gap: 2rem;
    align-items: stretch;
}

.token-info-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    flex: 0 0 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;

}

.tokenomics-text {
    flex: 0 0 calc(50% - 1rem);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    overflow: hidden;
}

.tokenomics-chart-wrapper {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(135deg, #004c63 0%, #000000 100%);
}

.tokenomics-chart-wrapper h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-family: 'Codec Pro', sans-serif;
    text-align: left;
}

.tokenomics-chart-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 107, 128, 0.05), transparent);
    transition: left 0.8s ease;
}

.tokenomics-chart-wrapper:hover::before {
    left: 100%;
}

.tokenomics-chart-container {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 0;
    padding: 0;
    max-width: 100%;
    flex: 1;
}

.circular-chart {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.chart-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.chart-bg {
    stroke: #262626;
    stroke-width: 20;
    fill: none;
}

.chart-segment {
    fill: none;
    stroke-width: 20;
    stroke-linecap: round;
    transition: all 0.8s ease;
    opacity: 0;
    stroke-dasharray: 0 503;
}

.chart-segment.animate {
    opacity: 1;
}

.chart-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

.chart-total {
    font-size: 2rem;
    font-weight: 700;
    color: #1d6b80;
    font-family: 'Codec Pro', sans-serif;
}

.chart-label {
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 0.2rem;
    font-family: 'Codec Pro', sans-serif;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
    min-width: 700px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: linear-gradient(135deg, #1d6b80 0%, #000000 100%);
    border-radius: 0.5em;
    border: solid 2px #262626;
    transition: all 0.3s ease;
    width: 60%;
    background: #1D6B80;
    background: radial-gradient(circle, rgba(29, 107, 128, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 1) 100%);
}

.legend-item:hover {
    transform: translateY(-2px);
    border-color: #1d6b80;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-color.public-sale {
    background-color: #472a96;
}

.legend-color.team-advisors {
    background-color: #dc3545;
}

.legend-color.ecosystem {
    background-color: #28a745;
}

.legend-color.liquidity {
    background-color: #007bff;
}

.legend-text {
    flex: 1;
}

.legend-label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.2rem;
    font-family: 'Codec Pro', sans-serif;
}

.legend-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1d6b80;
    font-family: 'Codec Pro', sans-serif;
}

.stat-item {
    padding: 1rem;
    background: linear-gradient(135deg, #1d6b80 0%, #000000 100%);
    border-radius: 0.5em;
    border: solid 2px #262626;
    text-align: center;
}

.stat-label {
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 0.5rem;
    font-family: 'Codec Pro', sans-serif;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Codec Pro', sans-serif;
}

.tokenomics-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
    font-family: 'Codec Pro', sans-serif;
}

.utility-features,
.economics-model,
.governance-structure {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.utility-item,
.revenue-stream,
.burn-mechanism,
.governance-item {
    padding: 1rem;
    background: linear-gradient(135deg, #1d6b80 0%, #000000 100%);
    border-radius: 0.5em;
    border: solid 2px #262626;
}

.utility-item h4,
.revenue-stream h4,
.burn-mechanism h4,
.governance-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Codec Pro', sans-serif;
}

.utility-item p,
.burn-mechanism p,
.governance-item p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.5;
    font-family: 'Codec Pro', sans-serif;
}

.revenue-stream ul {
    list-style: none;
    padding: 0;
}

.revenue-stream li {
    font-size: 1rem;
    color: #cccccc;
    padding: 0.3rem 0;
    font-family: 'Codec Pro', sans-serif;
}

.revenue-stream li::before {
    content: '•';
    color: #1d6b80;
    margin-right: 0.5rem;
}

/* Token Info Container */
.token-info-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 2px solid #333333;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #004c63 0%, #000000 100%);
}

.token-info-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 107, 128, 0.05), transparent);
    transition: left 0.8s ease;
}

.token-info-container:hover::before {
    left: 100%;
}

/* Token Header */
.token-header {
    margin-bottom: 1.5rem;
}

.token-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-family: 'Codec Pro', sans-serif;
    text-align: left;
}

.token-header p {
    font-size: 0.85rem;
    color: #aaaaaa;
    font-family: 'Codec Pro', sans-serif;
    margin: 0;
}

/* Token Stats Grid */
.token-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-box {
    background: linear-gradient(135deg, #1d6b80 0%, #0a4a5a 100%);
    border: 2px solid #1d6b80;
    border-radius: 12px;
    padding: 1rem 0.8rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: #1D6B80;
    background: radial-gradient(circle, rgba(29, 107, 128, 1) 0%, rgba(0, 0, 0, 1) 60%, rgba(0, 0, 0, 1) 100%);
}

.stat-box::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 ease;
}

.stat-box:hover::before {
    left: 100%;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 107, 128, 0.3);
}

.stat-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-family: 'Codec Pro', sans-serif;
}

.stat-label {
    font-size: 0.75rem;
    color: #cccccc;
    font-family: 'Codec Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Networks Section */
.networks-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
}

.networks-label {
    font-size: 0.9rem;
    color: #aaaaaa;
    font-family: 'Codec Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.network-tag {
    background: #1d6b80;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Codec Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* Responsive Design for Tokenomics */
@media (max-width: 768px) {
    .tokenomics-section {
        padding: 4rem 1rem;
    }

    .tokenomics-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .tokenomics-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .token-info-container {
        flex: 1 1 100%;
        width: 100%;
    }
    
    .tokenomics-text {
        flex: 1 1 100%;
        width: 100%;
    }

    .tokenomics-stats {
        grid-template-columns: 1fr;
    }

    .tokenomics-description {
        font-size: 1rem;
    }

    .tokenomics-item {
        padding: 1rem;
    }

    .tokenomics-item h3 {
        font-size: 1.1rem;
    }

    .tokenomics-item p {
        font-size: 0.9rem;
    }

    .tokenomics-chart-container {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        max-width: 100%;
    }

    .chart-legend {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }

    .circular-chart {
        width: 150px;
        height: 150px;
    }

    .chart-total {
        font-size: 1.5rem;
    }

    .chart-label {
        font-size: 0.8rem;
    }

    .legend-item {
        padding: 0.6rem;
        gap: 0.8rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .legend-color {
        width: 16px;
        height: 16px;
    }

    .legend-label {
        font-size: 0.9rem;
    }

    .legend-value {
        font-size: 1rem;
    }

    .token-info-container {
        padding: 2rem 1.5rem;
    }

    .token-header h3 {
        font-size: 1.5rem;
    }

    .token-header p {
        font-size: 0.9rem;
    }

    .token-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-box {
        padding: 1.2rem 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .networks-section {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .network-tag {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .catokenomics {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .token-info-container {
        padding: 1.5rem 1rem;
    }

    .token-header h3 {
        font-size: 1.3rem;
    }

    .token-stats-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        gap: 0.8rem;
    }
    
    .chart-legend {
        min-width: 100%;
        width: 100%;
        max-width: 100%;
    }
    
    .legend-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .stat-box {
        padding: 1rem 0.8rem;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
    
    .catokenomics {
        font-size: 0.72rem;
    }
}

/* Card Section */
#card_section {
    position: relative;
    text-align: center;
    padding: 2rem;
    background-color: #00000000;
}

.absolute-image {
    position: absolute;
    top: 0;
    /* distance from top */
    left: 0;
    /* distance from left */
    width: 100%;
    /* make it cover the container */
    height: 100%;
    /* make it cover the container */
    object-fit: cover;
    /* scale without stretching */
    z-index: 1;
    /* lower than content if needed */

    /* Animation */
    animation: pulseBrightness 1s infinite alternate;
}

/* Keyframes for brightness animation */
@keyframes pulseBrightness {
    0% {
        filter: brightness(0.5);
        /* dim */
    }

    50% {
        filter: brightness(1.5);
        /* bright */
    }

    100% {
        filter: brightness(0.5);
        /* dim again */
    }
}

.cardup {
    z-index: 1000;
}

#card_section h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2rem;
    font-family: 'Codec Pro', sans-serif;
    z-index: 100;
}

/* Vertical Arrows */
.vertical-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    margin-top: 2rem;
}

.arrow-down {
    font-size: 10rem;
    color: #b4b4b4;
    font-weight: bold;
    animation: bounce 2s infinite, glow 1.5s ease-in-out infinite alternate;
    transition: all 0.3s ease;
}

/* Glow effect */
@keyframes glow {
    0% {
        text-shadow: 0 0 5px #b4b4b4,
                     0 0 10px #b4b4b4,
                     0 0 15px #b4b4b4;
    }
    100% {
        text-shadow: 0 0 10px #ffffff,
                     0 0 20px #ffffff,
                     0 0 30px #ffffff;
    }
}

.arrow-down:hover {
    color: #ffffff;
    transform: scale(1.2);
}

.arrow-down:nth-child(1) {
    animation-delay: 0s;
}

.arrow-down:nth-child(2) {
    animation-delay: 0.2s;
}

.arrow-down:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Networth Cards */
.networth-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8rem;
    margin-top: 2rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.networth-card {
    flex: 1;
    max-width: 30%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    object-fit: cover;
}

.networth-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Networth Description */
.networth-description {
    margin-top: 3rem;
    text-align: center;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    border-style: dashed;
    padding: 10px;
    border-width: 1px;
    border-radius: 4px;
    border-color: rgba(245, 245, 245, 0.432);
    z-index: 1000;
}

.networth-description p {
    font-size: 1.1rem;
    color: #cccccc;
    line-height: 1.8;
    font-family: 'Codec Pro', sans-serif;
    letter-spacing: 1.3px;
    margin: 0;
    text-align: left;
    z-index: 10000;
}

/* Responsive Design for Card Section */
@media (max-width: 768px) {
    #card_section {
        padding: 1.5rem;
    }

    #card_section h1 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .vertical-arrows {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .arrow-down {
        font-size: 1.5rem;
    }

    .networth-cards {
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .networth-card {
        max-width: 32%;
    }

    .networth-description {
        margin-top: 2rem;
    }

    .networth-description p {
        font-size: 0.9rem;
        letter-spacing: 0.3px;
    }
}

@media (max-width: 480px) {
    .vertical-arrows {
        gap: 1rem;
    }

    .arrow-down {
        font-size: 1.2rem;
    }

    .networth-cards {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }

    .networth-card {
        max-width: 100%;
        width: 100%;
    }
}



/* Most Rich Holders Section */
.most-rich-holders-section {
    padding: 8rem 2rem 6rem 2rem;
    background: #000000;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 58%, rgb(7, 42, 52) 100%);
    position: relative;
}

.most-rich-holders-container {

    max-width: 1650px;
    margin: 0 auto;
    position: relative;
}

.most-rich-holders-smoke {
    width: 500px;
    height: 500px;
    position: absolute;
    top: -200px;
    left: 35%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.most-rich-holders-smoke2 {
    width: 500px;
    height: 500px;
    position: absolute;
    top: -200px;
    left: 75%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
}

.most-rich-holders-smoke img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1;
}

.most-rich-holders-smoke2 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1;
}

.most-rich-holders-container p {
    margin-top: -2%;
    width: 45%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    color: rgba(255, 255, 255, 0.589);
    line-height: 20px;
    border: dashed;
    border-width: 1px;
    border-radius: 10px;
    border-color: #004c63;
    padding: 10px;
    background: linear-gradient(135deg, #004c63 0%, #000000 100%);
    position: relative;
    z-index: 10;
}

.catokenomics{
    padding: 10px;
}

.buttonstokenomics{
    margin-left: 1%;
}
.trendingimgdiv2 {
    margin-left: auto;
    margin-right: auto;
    width: 480px;
    height: 65px;
    z-index: 100000;
}
.tredningimgdiv {
    width: 350px;
    height: 60px;
    /* or a fixed height you want */
    margin-left: auto;
    margin-right: auto;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.664);
    border-radius: 10px;
    border-width: 1px;
    /* ADD THIS */
    transition: all 0.3s ease;
}

.tredningimgdiv:hover {
    width: 400px;
    height: 65px;
    /* or a fixed height you want */
    margin-left: auto;
    margin-right: auto;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.664);
    border-radius: 10px;
    border-width: 1px;
    cursor: pointer;
}

.tredningimgdiv img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* removes gap under image */
}
.most-rich-holders-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-top: -5rem;
    margin-bottom: 4rem;
    font-family: 'Codec Pro', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Gallery Container */
.gallery-container * {
    margin: 0;
    padding: 0;
}

.gallery-container {
    background: #00000000;
    padding: 2rem 0;
}

/* Picture container */
.gallery-picture {
    box-sizing: border-box;
    display: inline-block;
    margin-bottom: 100px;
    min-width: 300px;
    width: 400px;
    position: relative;
}

/* Picture size and layout */
.thumb {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    perspective: 1000px;
}

.thumb a {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    transform-style: preserve-3d;
    transition: all 0.5s;
    transform: rotateX(80deg);
    transform-origin: bottom;
    border: none;
    outline: none;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 12px;
}

.thumb a.pic1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("media/networthCards/card1_s.jpg");
}

.thumb a.pic2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("media/networthCards/card2_s.jpg");
}

.thumb a.pic3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("media/networthCards/card3_s.jpg");
}

.thumb a.pic4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("media/networthCards/card4_s.jpg");
}

.thumb:hover a,
.thumb:focus a,
.thumb:active a {
    transform: rotateX(0deg);
    transform-origin: bottom;
}

/* Bottom side */
.thumb a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0px;
    background: inherit;
    background-size: cover;
    background-position: bottom;
    transform: rotateX(90deg);
    transform-origin: bottom;
    border-radius: 0 0 12px 12px;
}

/* Picture caption style */
.thumb a span {
    color: white;
    text-transform: uppercase;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    font: bold 12px/30px 'Codec Pro', sans-serif;
    text-align: center;
    transform: rotateX(-89.99deg);
    transform-origin: top;
}

/* Picture shadow */
.thumb a:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 100px 50px rgba(0, 0, 0, 0.5);
    transition: all 0.5s;
    opacity: 0.15;
    transform: rotateX(95deg) translateZ(-80px) scale(0.75);
    transform-origin: bottom;
    opacity: 1;
    box-shadow: 0 0 25px 25px rgba(0, 0, 0, 0.5);
    transform: rotateX(0) translateZ(-60px) scale(0.85);
    border-radius: 12px;
}

/* Rank Numbers */
.rank-number {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1d6b80 0%, #000000 100%);
    border: 2px solid #ffffff5e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Codec Pro', sans-serif;
    box-shadow: 0 4px 15px rgba(29, 107, 128, 0.3);
}

/* Most Rich Holders Description */
.most-rich-holders-description {
    text-align: center;
    margin-top: 0%;
    padding: 1rem 2rem;
    z-index: 10000000;
}

.most-rich-holders-description p {
    font-size: 1rem;
    color: #ffa500;
    font-family: 'Codec Pro', sans-serif;
    font-weight: 500;
    margin: 0;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 8px;
    display: inline-block;
}

/* Responsive Design for Gallery */
@media (max-width: 1024px) {
    .gallery-picture {
        width: 48%;
        margin-bottom: 80px;
    }

    .thumb {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .gallery-picture {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 60px auto;
        display: block;
    }

    .thumb {
        height: 160px;
    }

    .most-rich-holders-title {
        margin-top: 30px;
        font-size: 1.5rem;
        margin-bottom: 3rem;
    }
    .most-rich-holders-smoke img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        opacity: 0.5;
    }
    .most-rich-holders-smoke2 img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
        opacity: 0.5;
    }
    .most-rich-holders-container p {
        margin-top: -2%;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        color: rgba(255, 255, 255, 0.589);
        line-height: 20px;
        border: dashed;
        border-width: 1px;
        border-radius: 10px;
        border-color: #004c63;
        padding: 10px;
        background: linear-gradient(135deg, #004c63 0%, #000000 100%);
        position: relative;
        z-index: 10;
    }
    .most-rich-holders-description p {
        font-size: 0.7rem;
        color: #ffa500;
        font-family: 'Codec Pro', sans-serif;
        font-weight: 500;
        margin: 0;
        padding: 0.8rem 1.5rem;
        background: rgba(255, 165, 0, 0.1);
        border: 1px solid rgba(255, 165, 0, 0.3);
        border-radius: 8px;
        display: inline-block;
    }
    .tredningimgdiv {
        width: 150px;
        height: 60px;
        /* or a fixed height you want */
        margin-left: auto;
        margin-right: auto;
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.664);
        border-radius: 10px;
        border-width: 1px;
        /* ADD THIS */
        transition: all 0.3s ease;
    }
    
    .tredningimgdiv:hover {
        width: 150px;
        height: 60px;
        /* or a fixed height you want */
        margin-left: auto;
        margin-right: auto;
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.664);
        border-radius: 10px;
        border-width: 1px;
        cursor: pointer;
    }
    .trendingimgdiv2 {
        margin-left: auto;
        margin-right: auto;
        width: auto;
        height: 65px;
        z-index: 100000;
    }
}

@media (max-width: 480px) {
    .most-rich-holders-section {
        padding: 4rem 1rem;
    }

    .most-rich-holders-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .thumb {
        height: 140px;
    }

    .rank-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        bottom: -40px;
    }
    .tredningimgdiv {
        width: 250px;
        height: 30px;
        /* or a fixed height you want */
        margin-left: auto;
        margin-right: auto;
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.664);
        border-radius: 10px;
        border-width: 1px;
        /* ADD THIS */
        transition: all 0.3s ease;
    }
    
    .tredningimgdiv:hover {
        width: 280px;
        height: 65px;
        /* or a fixed height you want */
        margin-left: auto;
        margin-right: auto;
        border-style: solid;
        border-color: rgba(255, 255, 255, 0.664);
        border-radius: 10px;
        border-width: 1px;
        cursor: pointer;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-top: 1px solid #262626;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #1d6b80;
    padding: 8px;
    object-fit: cover;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    font-family: 'Codec Pro', sans-serif;
}

.footer-brand p {
    font-size: 1rem;
    color: #cccccc;
    font-style: italic;
    font-family: 'Codec Pro', sans-serif;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Codec Pro', sans-serif;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-family: 'Codec Pro', sans-serif;
}

.footer-column a:hover {
    color: #1d6b80;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #262626;
}

.footer-copyright p {
    color: #888888;
    font-size: 0.9rem;
    font-family: 'Codec Pro', sans-serif;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: #888888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: 'Codec Pro', sans-serif;
}

.footer-legal a:hover {
    color: #1d6b80;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 1rem 1.5rem;
        margin-top: 2rem;
    }

    .footer-container {
        max-width: 100%;
        padding: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-logo {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .footer-logo-img {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }

    .footer-brand h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }

    .footer-brand p {
        font-size: 0.9rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .footer-column {
        width: 100%;
    }

    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-column ul {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .footer-column li {
        margin-bottom: 0;
        width: 100%;
    }

    .footer-column a {
        font-size: 0.9rem;
        display: block;
        padding: 0.5rem 0;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding-top: 1.5rem;
    }

    .footer-copyright {
        width: 100%;
    }

    .footer-copyright p {
        font-size: 0.85rem;
        margin: 0;
    }

    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
    }

    .footer-legal a {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-logo-img {
        width: 45px;
        height: 45px;
    }

    .footer-brand h3 {
        font-size: 1.2rem;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-column h4 {
        font-size: 0.95rem;
    }

    .footer-column a {
        font-size: 0.85rem;
    }

    .footer-copyright p {
        font-size: 0.8rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-legal a {
        font-size: 0.8rem;
    }
}

/* Anatomy of Envion AI Section */
.anatomy-envion-section {
    padding: 6rem 2rem;
    background: #000000;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 71%, rgb(11, 43, 54) 100%);
    position: relative;
    height: auto;
}

.cardcarusell-section {
    margin-top: -8%;
    background: #000000;
    background: radial-gradient(circle, rgba(0, 0, 0, 1) 63%, rgba(8, 47, 59, 1) 100%);
}

.anatomy-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.anatomy-smoke {
    width: 500px;
    height: 500px;
    position: absolute;
    top: -200px;
    left: 45%;
    transform: translateX(-50%);
    z-index: 1;
    pointer-events: none;
}

.anatomy-smoke img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    opacity: 1;
}

.anatomy-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 4rem;
    font-family: 'Codec Pro', sans-serif;
    text-transform: uppercase;
}

.flowchart-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    min-height: 600px;
}

/* Top Box */
.top-box {
    background: #1D6B80;
    background: radial-gradient(circle, rgba(29, 107, 128, 1) 0%, rgba(0, 0, 0, 1) 31%, rgba(0, 0, 0, 1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.534);
    border-radius: 12px;
    padding: 2rem 3rem;
    text-align: center;
    width: 30%;
    min-width: 300px;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(29, 107, 128, 0.3);
    transition: all 0.3s ease;
}

.top-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(29, 107, 128, 0.4);
}

.top-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Codec Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.top-box p {
    font-size: 1rem;
    color: #cccccc;
    font-family: 'Codec Pro', sans-serif;
    margin: 0;
}

/* Connection Lines */
.connection-lines {
    position: relative;
    width: 100.5%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vertical-line {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 60px;
    background: linear-gradient(180deg, #1d6b80 0%, #0a4a5a 100%);
    z-index: -100;
}


/* .horizontal-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1d6b80 0%, #0a4a5a 100%);
    position: relative;
    overflow: hidden;
} */



.vertical-linex {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 90px;
    background: linear-gradient(180deg, #1d6b80 0%, #0a4a5a 100%);
    z-index: -10;
    border-radius: 10px;
}

.vertical-linexx {
    margin-top: -1%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 150px;
    background: linear-gradient(180deg, #1d6b80 0%, #0a4a5a 100%);
    z-index: -10;
    border-radius: 10px;
}


.x1 {
    left: 0%;
}

.x3 {
    left: 100%;
}

.horizontal-lines {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.horizontal-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #1d6b80 0%, #0a4a5a 100%);
    position: relative;
    overflow: hidden;
    z-index: 100;
}

.horizontal-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: lineGlow 2s linear infinite;
    z-index: 100;
}

@keyframes lineGlow {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(300%);
    }
}

.vertical-linex::after {
    content: '';
    position: absolute;
    left: 0;
    top: -10%;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: verticalGlow 2s linear infinite;
}

.vertical-linexx::after {
    content: '';
    position: absolute;
    left: 0;
    top: -10%;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: verticalGlow2 2s linear infinite;
}

.vertical-linex.x2::after {
    content: '';
    position: absolute;
    left: 0;
    top: -10%;
    width: 100%;
    height: 30%;
    background: none;
    animation: none;
}

.vertical-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: -10%;
    width: 100%;
    height: 30%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: verticalGlow 2s linear infinite;
}

@keyframes verticalGlow {
    0% {
        top: -10%;
    }

    100% {
        top: 100%;
    }
}

@keyframes verticalGlow2 {
    0% {
        top: -30%;
    }

    100% {
        top: 100%;
    }
}



/* .vertical-linex::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 100%;
    transform: translateY(-50%) rotate(90deg);
    ;
    width: 0;
    height: 0;
    border-left: 8px solid #1d6b80;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
} */

/* Bottom Boxes */
.bottom-boxes {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 2rem;
    position: relative;
    z-index: 3;

}

.bottom-box {
    background: #1D6B80;
    background: radial-gradient(circle, rgba(29, 107, 128, 1) 0%, rgba(0, 0, 0, 1) 31%, rgba(0, 0, 0, 1) 100%);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    flex: 1;
    max-width: 300px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-style: solid;
    border-width: 1px;
    border-style: solid;
    border-color: rgba(255, 255, 255, 0.452);
}

.bottom-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(29, 107, 128, 0.1), transparent);
    transition: left 0.5s ease;
}

.bottom-box:hover::before {
    left: 100%;
}

.bottom-box:hover {
    transform: translateY(-5px);
    border-color: #1d6b80;
    box-shadow: 0 8px 25px rgba(29, 107, 128, 0.15);
}

.bottom-box.pulse {
    animation: borderPulse 0.8s ease-out;
}

@keyframes borderPulse {
    0% {
        box-shadow: 0 0 0px 0px rgba(29, 107, 128, 0.8);
        border-color: rgba(29, 107, 128, 1);
    }

    50% {
        box-shadow: 0 0 20px 10px rgba(29, 107, 128, 0.9);
        border-color: rgba(29, 107, 128, 1);
    }

    100% {
        box-shadow: 0 0 0px 0px rgba(29, 107, 128, 0);
        border-color: rgba(255, 255, 255, 0.452);
    }
}

.bottom-box h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Codec Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bottom-box p {
    font-size: 0.9rem;
    color: #aaaaaa;
    font-family: 'Codec Pro', sans-serif;
    margin: 0;
    line-height: 1.4;
}

/* Dotted Connections */
.dotted-connections {
    margin-top: -2%;
    position: relative;
    width: 105%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 15%;
}

.dotted-line {
    width: 2px;
    height: 110px;
    background: repeating-linear-gradient(to bottom,
            #1d6b80 0px,
            #1d6b80 8px,
            transparent 8px,
            transparent 16px);
    position: relative;
}

.dotted-line::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #1d6b80;
}

/* Final Output */
.final-output {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 1rem 2rem;
    border: 2px solid #1d6b80;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(29, 107, 128, 0.3);
    transition: all 0.3s ease;
    width: 80%;
    background: #1D6B80;
    background: radial-gradient(circle, rgba(29, 107, 128, 1) 0%, rgba(0, 0, 0, 1) 31%, rgba(0, 0, 0, 1) 100%);
}

.final-output:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(29, 107, 128, 0.4);
}

.final-output span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Codec Pro', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.final-output.pulse {
    animation: finalOutputPulse 0.8s ease-out;
}

@keyframes finalOutputPulse {
    0% {
        box-shadow: 0 4px 15px rgba(29, 107, 128, 0.3);
        border-color: rgba(29, 107, 128, 1);
    }

    50% {
        box-shadow: 0 0 25px 15px rgba(29, 107, 128, 0.9);
        border-color: rgba(29, 107, 128, 1);
    }

    100% {
        box-shadow: 0 4px 15px rgba(29, 107, 128, 0.3);
        border-color: rgba(29, 107, 128, 1);
    }
}

.line_image_div {
    margin-top: -5%;
    width: 80%;
    filter: brightness(90%);
}

.line_image_div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* fills div, crops if needed */
}

/* Responsive Design for Anatomy Section */
@media (max-width: 768px) {
    .anatomy-envion-section {
        padding: 4rem 1rem;
        display: none;
    }

    .anatomy-title {
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }

    .flowchart-container {
        gap: 2rem;
        min-height: 500px;
    }

    .top-box {
        width: 80%;
        min-width: 250px;
        padding: 1.5rem 2rem;
    }

    .top-box h3 {
        font-size: 1.3rem;
    }

    .top-box p {
        font-size: 0.9rem;
    }

    .bottom-boxes {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .bottom-box {
        max-width: 100%;
        width: 80%;
        padding: 1.2rem 1rem;
    }

    .bottom-box h4 {
        font-size: 1rem;
    }

    .bottom-box p {
        font-size: 0.8rem;
    }

    .horizontal-lines {
        width: 60%;
    }

    .dotted-connections {
        padding: 0 10%;
        height: 60px;
    }

    .dotted-line {
        height: 40px;
    }

    .final-output {
        padding: 0.8rem 1.5rem;
    }

    .final-output span {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .top-box {
        width: 90%;
        min-width: 200px;
        padding: 1.2rem 1.5rem;
    }

    .top-box h3 {
        font-size: 1.1rem;
    }

    .top-box p {
        font-size: 0.8rem;
    }

    .bottom-box {
        width: 90%;
        padding: 1rem 0.8rem;
    }

    .bottom-box h4 {
        font-size: 0.9rem;
    }

    .bottom-box p {
        font-size: 0.75rem;
    }

    .horizontal-lines {
        width: 50%;
    }

    .dotted-connections {
        padding: 0 5%;
    }

    .final-output {
        padding: 0.6rem 1rem;
    }

    .final-output span {
        font-size: 0.9rem;
    }
}





.infoparagraph{
    font-size: 15px;
    position: relative;
    z-index: 10;
}
.endofsection{
    position: absolute;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%);
    padding: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin-left: 0;
    z-index: 0;
    box-sizing: border-box;
}


.startofsection{
    position: absolute;
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%);
    padding: 0;
    top: 0;
    left: 0;
    right: 0;
    margin-left: 0;
    box-sizing: border-box;
}

.roadmap-card-inner p{
    margin-top: 10%;
}