

@import url('https://fonts.cdnfonts.com/css/helvetica-neue-5');

body {
 font-family: 'Helvetica Neue', sans-serif;
                                                
  font-weight: 700;
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #000;
}
.imgfrogs{
    width: 150px;height: 150px;position: relative;left: 40px;bottom: 23px;
}
.textwithtmp{
  width: 1270px;margin-top: 100px; color: gray;
}


.textwithalternative{
    color: white; 
    margin-bottom: 15px;
     text-align: center;
font-size: 30px;
}
.congrats-title2{
        font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}
.imgelement{
    width: 90px;
    position: relative;
    right: 116px;
}
.eth-icon.top {
  display: block;
}

.nft-info{
    position: relative;
    bottom: 25px;
}
.eth-icon.bottom {
  display: none;
}
.nft-name{
    position: relative;right: 80px;font-size: 1rem; color: #bea1f9;
}
@media (max-width: 480px) {
  .eth-icon.top {
    display: none;
  }
  .textwithalternative{
font-size: 29px;
margin-bottom: 19px;
  }
.imgelement{
    right: 127px !important;
}
  .eth-icon.bottom {
    display: block;
    width: 40px;
    height: auto;
    margin: 13px 0 15px 0;
  }
  
  .eth-icon-wrapper {
    display: flex;
    justify-content: center;
    position: relative;
    bottom: 17px;
  }
}

/* === Общие стили === */

.title{
    position: relative;
    left: 30px;
}

.subtitle{
        position: relative;
    left: 30px
}


html {
  overflow-x: hidden;
}

body {
 font-family: 'Helvetica Neue', sans-serif;
                                                
  font-weight: 300;
  background-color: #000;
  color: white;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
  
}


/* Добавь остальные стили при необходимости */



html {
    overflow-x: hidden;
}

* {
    max-width: 100%;
}
* {
  font-family: Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: HelveticaNeue;
}

body {
font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300;
    background-color: #000;
    overflow-x: hidden;
}

/* Бегущая строка */
.runtext {
    background-color: #F4E499;
    padding: 15px 0;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    width: 100vw;
    height: auto;
    display: flex;
    align-items: center;
}

.scroll-container {
    display: flex;
    animation: scroll 40s linear infinite;
}

.scroll-text {
    font-size: 18px;
    font-weight: 300;
    color: #000;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    padding-right: 50px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.runtext:hover .scroll-container {
    animation-play-state: paused;
}

/* Логотип */
.logo {
    padding: 40px 0;
}

.mainlogo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainlogo img {
    max-width: 600px;
    height: auto;
}

/* Карусель */
.carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Большой ряд (верхний) */
.carousel-container.large .carousel-row {
    height: 160px; /* Больше чем обычный */
    gap: 15px;
    padding: 15px 0;
}

.carousel-container.large .carousel-item {
    width: 150px; /* Больше ширина */
    height: 130px; /* Больше высота */
}

/* Маленький ряд (нижний) */
.carousel-container.small .carousel-row {
    height: 100px; /* Меньше чем большой */
    gap: 10px;
    padding: 10px 0;
}

.carousel-container.small .carousel-item {
    width: 90px; /* Меньше ширина */
    height: 80px; /* Меньше высота */
}

.carousel-row {
    display: flex;
    align-items: center;
}

.carousel-track {
    display: flex;
    gap: inherit;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    width: fit-content;
}

/* Анимации направления */
.top-row .carousel-track {
    animation: slideRight 30s linear infinite;
}

.bottom-row .carousel-track {
    animation: slideLeft 30s linear infinite;
}

.carousel-item {
    flex-shrink: 0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    overflow: hidden;
    cursor: default;
}

.carousel-item:hover {
    transform: scale(1.05);
    z-index: 10;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Keyframes для анимации */
@keyframes slideRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes slideLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Пауза при наведении */
.carousel-track:hover {
    animation-play-state: paused !important;
}               















.wallet-container {
    display: flex;
    align-items: center;
    max-width: 400px;
  }
  #walletInput {
    
    
    font-size: 16px;
    border: 2px solid #ccc;
    
    outline: none;
    transition: border-color 0.3s ease;
  }
  #walletInput.valid {
    border-color: #4caf50; /* зелёный */
  }
  #walletInput.invalid {
    border-color: #f44336; /* красный */
  }
  #checkButton {
    padding: 10px 50px;
    font-size: 16px;
    border-left: none;
    left: 60px;
    background-color: #eee;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  #checkButton:hover {
    background-color: #ddd;
  }
  .airdrop-container {
            
            height: 200px;
            background: #000000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
        }

        .main-text {
            font-size: 18px;
            font-weight: 400;
            color: #ffffff;
            max-width: 600px;
            line-height: 1.4;
        }

        .ethereum-logo {
            width: 60px;
            height: 60px;
            margin: 20px 0;
            position: relative;
            z-index: 10;
            animation: logoGlow 3s ease-in-out infinite alternate;
        }

        @keyframes logoGlow {
            0% { filter: drop-shadow(0 0 10px rgba(99, 102, 241, 0.5)); }
            100% { filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.8)); }
        }

        .ethereum-symbol {
            width: 100%;
            height: 100%;
            position: relative;
        }

        .eth-diamond {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .eth-top {
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-bottom: 30px solid #627eea;
            position: relative;
            z-index: 3;
        }

        .eth-middle {
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 20px solid #8fadf7;
            position: relative;
            top: -1px;
            z-index: 2;
        }

        .eth-bottom {
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-top: 12px solid #627eea;
            position: relative;
            top: -2px;
            z-index: 1;
        }

        .airdrop-details {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 60px;
            margin-top: 40px;
            font-size: 16px;
        }

        .airdrop-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            position: relative;
            right: 30px;
        }

        .airdrop-number {
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 5px;
        }

        .airdrop-description {
            color: #cccccc;
            font-size: 14px;
        }
  























        .center-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            z-index: 5;
            animation: floatUpDown 3s ease-in-out infinite;
        }

        @keyframes floatUpDown {
            0%, 100% {
                transform: translate(-50%, -50%) translateY(0px);
            }
            50% {
                transform: translate(-50%, -50%) translateY(-15px);
            }
        }

        .center-logo .ethereum-symbol {
            width: 100%;
            height: 100%;
        }

        .center-logo .eth-top {
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            border-bottom: 38px solid #627eea;
        }

        .center-logo .eth-middle {
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            border-top: 25px solid #8fadf7;
        }

        .center-logo .eth-bottom {
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            border-top: 15px solid #627eea;
        }

       
.eligibility-container {
            border: 1px solid RGB(204, 153, 255);
            border-radius: 16px;
            padding: 30px 60px;
            width: 1270px;
            text-align: left;
            transition: all 0.3s ease;
        }

      

        .title {
            font-size: 1.7rem;
            font-weight: bold;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .subtitle {
            font-size: 1.7rem;
            color: white;
            margin-bottom: 30px;
        }

        .input-container {
            position: relative;
            margin-bottom: 20px;
        }

        .wallet-input {
            width: 50rem;
            padding: 15px 20px;
            background: #1a1a1a;
            border: 2px solid #555;
            border-radius: 8px;
            color: white;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
            font-family: 'Courier New', monospace;
        }

        .wallet-input::placeholder {
            color: #777;
        }

        .wallet-input.valid {
            border-color: #22c55e;
            box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
        }

        .wallet-input.invalid {
            border-color: #ef4444;
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
        }

        .requirements {
            margin-top: 30px;
        }

        .requirement-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
            font-size: 18px;
            color: white;
        }

        .requirement-item::before {
            content: "•";
            color: RGB(210, 255, 0);
            margin-right: 8px;
            font-weight: bold;
        }

        .check-button {
            background: #84cc16;
            color: #000;
            border: none;
            padding: 15px 40px;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            min-width: 120px;
        }

        .check-button:hover:not(:disabled) {
            background: #65a30d;
            transform: translateY(-2px);
        }

        .check-button:disabled {
            background: #555;
            color: #999;
            cursor: not-allowed;
            transform: none;
        }

        .success-content {
    display: none;
    text-align: center;
}

.success-content.active {
    display: block;
}

.congrats-title {
    font-size: 28px;
    font-weight: bold;
    color: white;
    margin-bottom: 10px;
}

.success-subtitle {
    font-size: 2.5rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.success-subtitle .highlight {
    color: #84cc16;
    font-weight: bold;
}

.nft-preview {
    display: flex;
    align-items: center;
    padding: 20px;
   
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.nft-name {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.nft-details {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
}

.nft-stats {
    display: flex;
    gap: 15px;
    font-size: 12px;
}

.stat {
    color: #888;
}
.button#mainActionButton.claim-button {
  top: 40px !important;
  background-color: #84cc16 !important;
  color: black !important;
}

.claim-button {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: auto;
}

.claim-button:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.warning-text {
    font-size: 12px;
    color: #888;
    text-align: start;
    line-height: 1.4;
}

.share-button {
    background: #1d4ed8;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.share-button:hover {
    background: #1e40af;
    transform: translateY(-2px);
}

.error-message {
    color: #ef4444;
    font-size: 12px;
    margin-top: 5px;
    display: none;
}

.error-message.show {
    display: block;
}

.loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.loading::after {
    content: "";
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.eligibility-container.success {
    height: 410px;
}

/* Адаптив для планшетов и маленьких экранов */
@media (max-width: 575px) {
    .success-content {
        padding: 15px;
    }
    
    .congrats-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    .success-subtitle {
        font-size: 1.8rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .nft-preview {
        flex-direction: column;
        padding: 15px;
        gap: 15px;
    }
    
    .frog-image {
        align-self: center;
    }
    
    .frog-image img {
        width: 120px !important;
        height: 120px !important;
        bottom: 0 !important;
    }
    
    .nft-info {
        width: 100%;
        bottom: 0 !important;
        text-align: center;
    }
    
    .nft-info img {
        width: 70px !important;
        margin-bottom: 10px;
    }
    
    .nft-name {
        right: 0 !important;
        position: static !important;
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .nft-details {
        left: 0 !important;
        position: static !important;
        font-size: 13px;
        text-align: center;
        margin-bottom: 15px;
    }
    
    .nft-details span {
        right: 0 !important;
        position: static !important;
        display: block;
        margin-top: 5px;
    }
    
    .nft-info > div:last-child {
        right: 0 !important;
        position: static !important;
        text-align: center;
    }
    
    .nft-info > div:last-child p {
        right: 0 !important;
        position: static !important;
        margin-bottom: 8px;
        font-size: 13px;
    }
    
    .claim-button {
        top: 20px !important;
        margin: 0 auto;
        width: 160px;
        padding: 14px 20px;
    }
    
    .warning-text {
        top: 30px !important;
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
    }
    
    .warning-text > div:first-child {
        order: 1;
        text-align: left !important;
    }
    
    .warning-text > div:first-child > div:first-child {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .warning-text > div:first-child > div:last-child {
        font-size: 16px;
    }
    
    .share-button {
        order: 2;
        width: 140px;
        height: 45px;
        font-size: 15px;
        margin: 0 auto;
    }
    
    .eligibility-container.success {
        height: auto;
        min-height: 500px;
    }
}

/* Адаптив для мобильных телефонов */
@media (max-width: 480px) {
    .success-content {
        padding: 10px;
    }
    
    .congrats-title {
        text-align: left;
        font-size: 24px;
        margin-bottom: 5px;
        position: relative;
        left: 12px;
        
    }
    .yet{
    display: none;
}
    #Ogeth{
        display: block;
    }
    .success-subtitle {
        font-size: 1.3rem;
        margin-bottom: 15px;
        padding: 0 10px;
        text-align: left !important;
    }
    
    .nft-preview {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
        height: 370px;
    }
    
    .frog-image img {
        width: 170px !important;
        height: 170px !important;
        left: -89px;
        top: 100px;
    }
    
    .nft-info {
        width: 100%;
        bottom: 0 !important;
    }
    
    .nft-info img {
        width: 85px !important;
       bottom: 202px;
        margin-bottom: 8px;
        /* right: 116px !important; */
    }
    
    .nft-name {
        right: 74px!important;
        position: relative!important;
        font-size: 14px;
        margin-bottom: 8px;
        bottom: 210px;
    }
    
    .nft-name img {
        width: 17px !important;
        position: relative;
        top: 9px;
        left: 1px;
    }
    
    .nft-details {
        left: 0 !important;
        position: relative !important;
        font-size: 12px;
        text-align: center;
        margin-bottom: 12px;
        line-height: 1.4;
        bottom: 210px;
    }
    
    .nft-details span {
        right: 0 !important;
        position: static !important;
        display: block;
        margin-top: 3px;
    }
    .pricenftwithimg{
        position: relative;
        right: 50px;
    }
    .nft-info > div:last-child {
        right: 0 !important;
        position: relative !important;
        text-align: center;
        bottom: 150px;
        left: 180px;
        font-weight: 500;
    }
    
    
    .nft-info > div:last-child p {
        right: 0 !important;
        position: static !important;
        margin-bottom: 6px;
        font-size: 14px;
        text-align: left !important;
    }
    
    .nft-info > div:last-child p img {
        width: 12px !important;
        position: relative;
        top: 10px!important;
        margin-left: 6px!important;
        margin-right: 3px!important;
        left: 0px;
    }
    
    .claim-button {
        top: -100px !important;
        margin: 0 auto;
        width: 100%;
        padding: 12px 18px;
        font-size: 19px;
    }
    
    .warning-text {
        top: 25px !important;
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
        padding: 0 10px;
    }
    
    .warning-text > div:first-child > div:first-child {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .warning-text > div:first-child > div:last-child {
        font-size: 14px;
        line-height: 1.4;
    }
    
    .share-button {
        width: 100%;
        height: 42px;
        font-size: 19px;
        padding: 12px 20px;
        margin-bottom: 21px;
        background: #1d4ed8 !important;
      
    }
    
    #walletMismatchError {
        margin-top: 15px !important;
        font-size: 13px !important;
        padding: 0 15px;
    }
    
    #walletMismatchError span {
        font-size: 11px !important;
        word-break: break-all;
    }
    
    #shareTimer {
        margin-top: 15px !important;
        font-size: 16px !important;
        padding: 0 10px;
    }
    
    .eligibility-container.success {
        height: auto;
        min-height: 480px;
    }
}


.container {
            margin-top: 4rem;
        }

        .partners-grid {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 2.5rem;
        }

        .partner-link {
            filter: grayscale(100%);
            transition: all 0.3s ease;
            text-decoration: none;
            display: block;
            border-radius: 8px;
            overflow: hidden;
        }

        .partner-link:hover {
            filter: grayscale(0%);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }

        .partner-link img {
             width: 188px;
    height: 60px;
    object-fit: contain;
    display: block;
            transition: transform 0.3s ease;
        }

        .partner-link:hover img {
            transform: scale(1.05);
        }

        /* Responsive styles */
       

        /* Additional hover glow effect */
        .partner-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .partner-link:hover::before {
            opacity: 1;
        }

      * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     font-family: 'Helvetica Neue', sans-serif;
                                                
}

body {
 font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300;
    padding: 40px 20px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 4rem;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 80px;
    align-items: center;
    justify-items: center;
}

.partner-link {
    display: block;
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
}

.partner-link:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: translateY(-5px);
}

.partner-link img {
    max-width: 200px;
    height: auto;
    display: block;
}

/* Responsive */


@media (min-width: 768px) and (max-width: 1023px){
.nft-preview {
    position: relative;
    right: 90px;
}
.claim-button{
right: 90px!important;
}

}
@media (max-width: 768px) {
    .scroll-text {
        font-size: 16px;
        letter-spacing: 1px;
    }
    
    .mainlogo img {
        max-width: 400px;
    }
  .carousel-container.large .carousel-item {
        width: 120px;
        height: 100px;
    }
    
    .carousel-container.small .carousel-item {
        width: 80px;
        height: 70px;
    }
}


@media (max-width: 480px) {
    .scroll-text {
        font-size: 14px;
        letter-spacing: 0.5px;
    }
     
    .textwithtmp{
        width: 355px;
    }
    .footertext{
        position: relative;
        bottom: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .mainlogo img {
        max-width: 300px;
    }
    
    .carousel-container.large .carousel-item {
        width: 100px;
        height: 85px;
    }
    
    .carousel-container.small .carousel-item {
        width: 70px;
        height: 60px;
    }
}


@media (max-width: 575px) {
    body {
      font-family: 'Helvetica Neue', sans-serif;
  font-weight: 300; 
        padding: 0;
        margin: 0;
    }
    .progress-bar{
width: 355px;
    }
    .progress-item{
        margin-bottom: 20px;
    }
    .scroll-text {
        font-size: 14px;
        letter-spacing: 1px;
        padding-right: 30px;
    }
    
    .runtext {
        padding: 10px 0;
    }
    
    .logo {
        padding:0;
    }
    
    .mainlogo img {
        max-width: 350px;
        margin-top: 15px;
    }
    
    /* Карусель на мобильных */
    .carousel-container.large .carousel-row {
        height: 100px;
        gap: 8px;
        padding: 8px 0;
    }
    
    .carousel-container.large .carousel-item {
        width: 80px;
        height: 70px;
    }
    
    .carousel-container.small .carousel-row {
        height: 70px;
        gap: 6px;
        padding: 6px 0;
    }
    
    .carousel-container.small .carousel-item {
        width: 60px;
        height: 50px;
    }
    
    /* Airdrop секция на мобильных */
    .airdrop-section {
        margin: 20px 10px;
        padding: 15px;
    }
    
    .main-text {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .airdrop-details {
        flex-direction: column;
        text-align: center;
    }
    
    .airdrop-item.offset {
        margin-left: 0;
        margin-top: 15px;
    }
    
    .airdrop-number, .airdrop-description {
        font-size: 1rem;
    }
    
    /* Eligibility на мобильных */
    .eligibility-section {
        padding: 10px;
    }
    
    .eligibility-container {
        padding: 20px 15px;
        border: 2px solid RGB(204, 153, 255);
        border-width: 2px 0;
        border-radius: 0px;
    }
    
    .title {
        font-size: 2rem;
        left: 14px;
        margin-top: 15px;
    }
    .subtitle {
        font-size: 1.5rem;
        left: 14px;
    }
    
    .requirements{
        position: relative;
        right: 18px;
        margin-bottom: 15px;
    }
    .input-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .wallet-input {
        padding: 12px;
        font-size: 0.9rem;
        height: 60px;
        border-radius: 15px;
    }
    
    .check-button {
        padding: 12px 25px;
        width: 100%;
    }
    
    /* Success state на мобильных */
    .nft-preview {
        gap: 15px;
        right: 0px;
    }
    
    .frog-image img {
        width: 120px;
        height: 120px;
    }
    
    .element-logo {
        width: 70px;
    }
    
    .nft-name {
        font-size: 1.4rem;
    }
    
    .nft-details {
        font-size: 0.6rem;
        text-align: left;
    }
    
    .warning-text {
        font-size: 0.9rem;
    }
    
    /* Partners на мобильных */
    .partners-section {
        padding: 20px 10px;
    }
    
    .partners-title p {
        font-size: 1.3rem;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
    
    .partner-link img {
        width: 140px;
        height: 90px;
    }
}



@media (min-width: 576px) and (max-width: 767px) {
    .scroll-text {
        font-size: 16px;
        letter-spacing: 1.5px;
    }
    
    .mainlogo img {
        max-width: 400px;
    }
    
    /* Карусель */
    .carousel-container.large .carousel-row {
        height: 120px;
        gap: 10px;
        padding: 10px 0;
    }
    
    .carousel-container.large .carousel-item {
        width: 110px;
        height: 90px;
    }
    
    .carousel-container.small .carousel-row {
        height: 80px;
        gap: 8px;
        padding: 8px 0;
    }
    
    .carousel-container.small .carousel-item {
        width: 70px;
        height: 60px;
    }
    
    /* Airdrop секция */
    .airdrop-section {
        margin: 30px 15px;
        padding: 20px;
    }
    
    .main-text {
        font-size: 1.5rem;
    }
    
    .airdrop-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .airdrop-item.offset {
        margin-left: 0;
    }
    
    /* Eligibility */
    .eligibility-container {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 1.7rem;
    }
    
    .input-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .check-button {
        width: 100%;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
    
    .partner-link img {
        width: 160px;
        height: 100px;
    }
}

/* Десктопы (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 20px;
    }
    
    .mainlogo img {
        max-width: 500px;
    }
    
    /* Карусель */
    .carousel-container.large .carousel-row {
        height: 140px;
        gap: 12px;
        padding: 12px 0;
    }
    
    .carousel-container.large .carousel-item {
        width: 130px;
        height: 110px;
    }
    
    .carousel-container.small .carousel-row {
        height: 90px;
        gap: 8px;
        padding: 8px 0;
    }
    
    .carousel-container.small .carousel-item {
        width: 80px;
        height: 70px;
    }
    
    /* Airdrop секция */
    .main-text {
        font-size: 1.6rem;
    }
    
    .airdrop-details {
        justify-content: center;
        gap: 40px;
    }
    
    .airdrop-item.offset {
        margin-left: 20px;
    }
    
    /* Eligibility */
    .eligibility-container {
        padding: 35px;
    }
    
    .input-container {
        flex-direction: row;
    }
    
    /* Partners */
    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px 60px;
    }
    
    .partner-link img {
        width: 170px;
        height: 110px;
    }
}



@media (max-width: 320px) {
    .scroll-text {
        font-size: 12px;
        padding-right: 20px;
    }
    
    .mainlogo img {
        max-width: 250px;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .partner-link img {
        width: 120px;
        height: 80px;
    }
    
    .main-text {
        font-size: 1.1rem;
    }
    
    .title {
        font-size: 1.3rem;
    }
}#successContent {
    display: none;
}

#successContent.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}