/* NFTセクションのスタイル */
.nft {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #EFFF2A 0%, #F0FF4D 100%);
    position: relative;
    overflow: hidden;
}

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

.nft-heading {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 3rem;
    color: #000;
}


.nft-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    margin-bottom: 0;
}

.nft-text {
    text-align: center;
    width: 100%;
}

.nft-description {
    font-size: 1.5rem;
    line-height: 1.8;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.nft-image {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: -100px;
}

.nft-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10;
}

.nft-image img:hover {
    transform: translateY(-5px) scale(1.02);
}

.nft-app-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    align-items: center;
    background-color: #000000;
    padding: 3rem 2rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    z-index: 5;
}

.nft-app-link {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.nft-app-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

/* アプリストアバッジ共通スタイル */
.nft-app-link img {
    width: auto;
    height: 70px;
    object-fit: contain;
    vertical-align: middle;
    border: 2px solid #ffffff;
    border-radius: 8px;
}

/* 不要なカスタムバッジスタイルを削除（画像バッジに統一） */

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .nft {
        padding: 4rem 1.5rem;
    }
    
    .nft-content {
        gap: 2.5rem;
    }
    
    .nft-heading {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }
    
    .nft-description {
        font-size: 1.25rem;
    }
    
    .nft-app-links {
        padding: 2.5rem 1.5rem;
        padding-top: 130px;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .nft-image {
        margin-bottom: -80px;
    }
}

@media (max-width: 768px) {
    .nft {
        padding: 3rem 1rem;
    }
    
    .nft-content {
        gap: 2rem;
    }
    
    .nft-heading {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .nft-description {
        font-size: 1.125rem;
        line-height: 1.7;
    }
    
    .nft-description br {
        display: none;
    }
    
    .nft-app-links {
        gap: 1.5rem;
        flex-wrap: wrap;
        padding: 2rem 1rem;
        padding-top: 100px;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .nft-image {
        margin-bottom: -60px;
    }
    
    .nft-app-link img {
        width: auto;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .nft {
        padding: 2rem 0.8rem;
    }
    
    .nft-heading {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .nft-description {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .nft-app-links {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
        padding-top: 80px;
        left: 50%;
        right: 50%;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    
    .nft-image {
        margin-bottom: -50px;
    }
    
    .nft-app-link img {
        width: auto;
        height: 50px;
    }
}
