.main-title {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 80px;
    padding: 0px 10px;
}

.main-title-inner {
    display: flex;
    justify-content: center;
    max-width: 1175px;
    flex-direction: column;
    width: 100%;
}

.main-title-inner h1 {
    font-weight: 700;
    font-size: 80px;
    font-style: normal;
    font-weight: 700;
    font-size: 80px;
    line-height: 110%;
    text-align: center;
    letter-spacing: 9px;
    text-transform: uppercase;
    background: linear-gradient(180deg, #FFFFFF 0%, #BABABA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    animation: fadeInScale 1s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.benefits {
    max-width: 718px;
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: auto;
    margin-top: 32px;
}

.benefit {
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.benefit-green {
    color: #A5FF6E;
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.benefit:hover .benefit-green {
    color: #BEFF8E;
    text-shadow: 0 0 20px rgba(165, 255, 110, 0.5);
}

.benefit-gray {
    color: #AEAEAE;
    font-weight: 500;
    font-size: 18px;
    transition: color 0.3s ease;
}

.benefit:hover .benefit-gray {
    color: #CECECE;
}

/* Swiper */
.ticker {
    margin-top: 125px;
    border-top: 1px solid #A5FF6E;
    border-bottom: 1px solid #A5FF6E;
    padding: 15px 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ticker:hover {
    border-top-color: #BEFF8E;
    border-bottom-color: #BEFF8E;
    box-shadow: 0 0 20px rgba(165, 255, 110, 0.15);
}

.swiper {
    width: 100%;
    padding: 8px 6px;
}

.swiper-wrapper {
    align-items: center;
}

.ticker-slide {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    padding: 4px 54px;
    position: relative;
    border-right: 1px solid #A5FF6E;
    gap: 7px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ticker-slide:hover {
    transform: scale(1.05);
    background-color: rgba(165, 255, 110, 0.05);
}

.ticker-slide+.ticker-slide {
    border-left: 1px solid #244224;
}

.token-logo {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.ticker-slide:hover .token-logo {
    transform: rotate(10deg) scale(1.1);
    filter: brightness(1.2);
}

.token-logo svg {
    width: 22px;
    height: 22px;
    fill: #101810;
    stroke: #101810;
}

.token-name {
    font-weight: 600;
    letter-spacing: .2px;
    white-space: nowrap;
    color: #d9f7d9;
    transition: color 0.3s ease;
}

.ticker-slide:hover .token-name {
    color: #A5FF6E;
}

.token-delta {
    margin-left: 6px;
    font-weight: 600;
    white-space: nowrap;
    transition: transform 0.3s ease;
}

.ticker-slide:hover .token-delta {
    transform: scale(1.1);
}

.token-delta.positive {
    color: #75ff84;
}

.token-delta.negative {
    color: #ff8585;
}

@media (max-width:700px) {
    .ticker-slide {
        gap: 10px;
        padding: 8px 14px;
    }

    .token-name {
        font-size: 14px;
    }

    .token-delta {
        font-size: 14px;
    }

    .token-logo {
        width: 30px;
        height: 30px;
    }

    .token-logo svg {
        width: 18px;
        height: 18px;
    }
}

.swiper-button-prev,
.swiper-button-next {
    color: #9bb99b;
    transition: .2s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    color: #d9f7d9;
}

@media (max-width:900px) {

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

.featured-projects {
    margin-top: 200px;
    position: relative;
    overflow: hidden;
    padding:0px 10px;
}

.left-figure {
    position: absolute;
    left: 0;
    z-index: 1;
    top: 10%;
    transition: transform 0.6s ease, opacity 0.6s ease;
    animation: floatLeft 6s ease-in-out infinite;
}

@keyframes floatLeft {

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

    50% {
        transform: translateY(-20px) rotate(3deg);
    }
}

.right-figure {
    position: absolute;
    right: 0;
    z-index: 1;
    top: 40%;
    transition: transform 0.6s ease, opacity 0.6s ease;
    animation: floatRight 6s ease-in-out infinite;
}

@keyframes floatRight {

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

    50% {
        transform: translateY(-20px) rotate(-3deg);
    }
}

.featured-projects h2 {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 64px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 65px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.featured-projects h2:hover {
    color: #A5FF6E;
    transform: scale(1.02);
}

.ido-categories {
    margin-top: 200px;
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0px 10px;
}

.ido-categories-inner {
    max-width: 1368px;
    width: 100%;
    display: flex;
    gap: 36px;
}

.ido-category-wrap {
    display: flex;
    flex-grow: 1;
    text-decoration: none;
}

.ido-category {
    background-color: #A5FF6E;
    border-radius: 24px;
    padding: 57px 32px;
    display: flex;
    justify-content: space-between;
    flex-grow: 1;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover ефект для категорій */
.ido-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.ido-category-wrap:hover .ido-category::before {
    left: 100%;
}

.ido-category-wrap:hover .ido-category {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(165, 255, 110, 0.4);
    background-color: #BEFF8E;
}

.ido-category p {
    color: #141414;
    font-family: Montserrat;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 39.6px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: transform 0.3s ease;
}

.ido-category-wrap:hover .ido-category p {
    transform: translateX(5px);
}

.ido-category img {
    transition: transform 0.4s ease;
}

.ido-category-wrap:hover .ido-category img {
    transform: translateX(10px) scale(1.2);
}

.featured-project-grid {
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 24px;
    align-self: stretch;
    flex-wrap: wrap;
    max-width: 1368px;
    width: 100%;
    margin: auto;
    position: relative;
}

.featured-project-card {
    display: flex;
    width: 440px;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    position: relative;
    border-radius: 24px;
    z-index: 3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

/* Hover для карток проектів */
.featured-project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(165, 255, 110, 0.3);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(165, 255, 110, 0.15);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
}

.ido-card-image {
    transition: transform 0.4s ease;
    overflow: hidden;
    border-radius: 12px;
}

.featured-project-card:hover .ido-card-image {
    transform: scale(1.05);
}

.ido-card-image img {
    transition: transform 0.6s ease;
}

.featured-project-card:hover .ido-card-image img {
    transform: scale(1.1);
}

.ido-content-top p {
    color: #FFF;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 39.6px;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.featured-project-card:hover .ido-content-top p {
    color: #A5FF6E;
}

.apr-percentage,
.duration-size {
    color: #FFF;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 15px;
    letter-spacing: -1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.featured-project-card:hover .apr-percentage,
.featured-project-card:hover .duration-size {
    color: #A5FF6E;
    transform: scale(1.05);
}

.duration-title,
.apr-title {
    color: #E1E1E1;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 15px;
    letter-spacing: -1px;
    transition: color 0.3s ease;
}

.featured-project-card:hover .duration-title,
.featured-project-card:hover .apr-title {
    color: #FFFFFF;
}

/* Hover для кнопки */
.ido-card-button {
    display: flex;
    width: 360px;
    padding: 12px 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 9999px;
    background: #A5FF6E;
    color: #141414;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 39.6px;
    letter-spacing: -1px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ido-card-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.ido-card-button:hover::before {
    width: 400px;
    height: 400px;
}

.ido-card-button:hover {
    background: #BEFF8E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(165, 255, 110, 0.4);
}

.ido-card-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(165, 255, 110, 0.3);
}

.ido-card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.ido-content-top {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.ido-content-top img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.featured-project-card:hover .ido-content-top img {
    transform: rotate(5deg) scale(1.1);
    filter: brightness(1.2);
}

.ido-content-bottom {
    display: flex;
    margin-bottom: 32px;
}

.ido-content-bottom-left {
    margin-right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ido-content-bottom-right {
    margin-right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.locked-card {
    background: rgba(255, 255, 255, 0.01);
}

.locked-card a {
    visibility: hidden;
}

.card-block {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(32px);
    display: grid;
    grid-template-rows: 1fr auto;
    align-items: center;
    justify-items: center;
    padding: 32px;
    z-index: 3;
    pointer-events: auto;
    transition: backdrop-filter 0.3s ease;
}

.locked-card:hover .card-block {
    backdrop-filter: blur(25px);
}

/* Рожеве світіння */
.vip-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(180px 140px at 50% 32%, rgba(255, 0, 165, .45), rgba(255, 0, 165, 0) 60%),
        radial-gradient(280px 180px at 50% 40%, rgba(255, 0, 165, .18), rgba(255, 0, 165, 0) 70%);
    filter: blur(2px);
    z-index: -1;
    transition: filter 0.3s ease;
}

.locked-card:hover .vip-glow {
    filter: blur(4px);
    background:
        radial-gradient(200px 160px at 50% 32%, rgba(255, 0, 165, .55), rgba(255, 0, 165, 0) 60%),
        radial-gradient(300px 200px at 50% 40%, rgba(255, 0, 165, .25), rgba(255, 0, 165, 0) 70%);
}

.vip-text {
    color: #FFF;
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    text-transform: uppercase;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.locked-card:hover .vip-text {
    transform: scale(1.05);
    text-shadow: 0 0 30px rgba(255, 0, 165, 0.8);
}

/* Кнопка Unlock з іконкою */
.vip-unlock {
    align-self: end;
    display: flex;
    width: 360px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 9999px;
    background: #A5FF6E;
    color: #141414;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 39.6px;
    letter-spacing: -1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vip-unlock::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.vip-unlock:hover::before {
    width: 400px;
    height: 400px;
}

.vip-unlock:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 28px rgba(165, 255, 110, .35), inset 0 -2px 0 rgba(0, 0, 0, .12);
    background: #BEFF8E;
}

.vip-unlock:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 8px 18px rgba(165, 255, 110, .25), inset 0 -1px 0 rgba(0, 0, 0, .2);
}

.vip-unlock-ic {
    margin-right: 2px;
    transition: transform 0.3s ease;
}

.vip-unlock:hover .vip-unlock-ic {
    transform: rotate(-10deg) scale(1.1);
}



@media(max-width:768px) {
    .ido-categories-inner {
        flex-direction: column;
    }

    .main-title-inner h1 {
        font-size: 40px;
    }

    .benefits {
        flex-wrap: wrap;
        justify-content: center;
        gap:25px;
    }

    .token-logo {
        width: 33.7px;
        height: 33.7px;
    }

    .token-logo img {
        width: 33.7px;
        height: 33.7px;
    }

    .ido-category {
        padding: 24px 32px;
    }

    .ido-category p {
        font-size: 24px;
    }

    .ido-categories {
        margin-top: 55px;
    }

    .ticker {
        margin-top: 50px;
    }

    .featured-projects {
        margin-top: 55px;
    }

    .featured-projects h2 {
        font-size: 32px;
    }

    .left-figure,
    .right-figure {
        display: none;
    }

    .ido-content-top p {
        font-size: 24px;
    }

    .apr-percentage,
    .duration-size {
        font-size: 18px;
    }

    .duration-title,
    .apr-title {
        font-size: 14px;
    }

    .ido-card-image {
        height: 205px;
        width: 100%;
    }

    .ido-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

}





.featured-project-card {
    display: flex;
    width: 440px;
    padding: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    position: relative;
    border-radius: 24px;
    z-index: 3;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;

}

/* Locked Card - основний контейнер */
.locked-card {
    background: rgba(255, 255, 255, 0.01);
    overflow: hidden;
    min-height: 628px; /* Фіксована висота як у звичайних карток */
}

/* Контент під блюром */
.locked-card .ido-card-image,
.locked-card .ido-card-content {
    filter: blur(8px);
    pointer-events: none;
}

/* Приховати кнопку "Open details" */
.locked-card .ido-card-button {
    display: none;
}

/* Оверлей з VIP контентом */
.card-block {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 32px;
    z-index: 10;
    pointer-events: auto;
}

/* Рожеве світіння */
.vip-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(300px 200px at 50% 35%, rgba(255, 0, 165, .55), rgba(255, 0, 165, 0) 65%),
        radial-gradient(400px 280px at 50% 40%, rgba(255, 0, 165, .25), rgba(255, 0, 165, 0) 75%);
    filter: blur(3px);
    z-index: -1;
    transition: filter 0.3s ease;
    pointer-events: none;
}

.locked-card:hover .vip-glow {
    filter: blur(5px);
    background:
        radial-gradient(320px 220px at 50% 35%, rgba(255, 0, 165, .65), rgba(255, 0, 165, 0) 65%),
        radial-gradient(420px 300px at 50% 40%, rgba(255, 0, 165, .35), rgba(255, 0, 165, 0) 75%);
}

/* VIP текст - центрований */
.vip-text {
    color: #FFF;
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    text-transform: uppercase;
    transition: transform 0.3s ease, text-shadow 0.3s ease;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
}

.locked-card:hover .vip-text {
    transform: translate(-50%, -50%) scale(1.05);
    text-shadow: 0 0 30px rgba(255, 0, 165, 0.8);
}

/* Кнопка Unlock - внизу */
.vip-unlock {
    display: flex;
    width: 100%;
    max-width: 360px;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 9999px;
    background: #A5FF6E;
    color: #141414;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 39.6px;
    letter-spacing: -1px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top:auto;
}

.vip-unlock::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.vip-unlock:hover::before {
    width: 400px;
    height: 400px;
}

.vip-unlock:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 28px rgba(165, 255, 110, .35), inset 0 -2px 0 rgba(0, 0, 0, .12);
    background: #BEFF8E;
}

.vip-unlock:active {
    transform: translateY(-1px) scale(1);
    box-shadow: 0 8px 18px rgba(165, 255, 110, .25), inset 0 -1px 0 rgba(0, 0, 0, .2);
}

.vip-unlock-ic {
    transition: transform 0.3s ease;
}

.vip-unlock:hover .vip-unlock-ic {
    transform: rotate(-10deg) scale(1.1);
}

/* Мобільна адаптація */
@media(max-width:768px) {
    .vip-text {
        font-size: 28px;
        padding-top: 80px;
    }
    
    .vip-unlock {
        font-size: 16px;
        padding: 10px 20px;
    }
    .locked-card{
        min-height: 512px; /* Зменшена висота для мобільних пристроїв */
    }
}



.featured-project-card.locked-card {
    display: flex;
    justify-content: space-between;
}
.locked-card .ido-card-content{
    position: relative;
    top:-60px;
}